Bug 65 resolved.
[osm/UI.git] / skyquake / framework / widgets / header / header.scss
1 /*
2  * 
3  *   Copyright 2016 RIFT.IO Inc
4  *
5  *   Licensed under the Apache License, Version 2.0 (the "License");
6  *   you may not use this file except in compliance with the License.
7  *   You may obtain a copy of the License at
8  *
9  *       http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *   Unless required by applicable law or agreed to in writing, software
12  *   distributed under the License is distributed on an "AS IS" BASIS,
13  *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *   See the License for the specific language governing permissions and
15  *   limitations under the License.
16  *
17  */
18
19 header.header-app-component {
20     padding: 20px 0px;
21     display:flex;
22     flex-direction:column;
23     .header-app-main {
24         display:flex;
25         flex-direction:row;
26         justify-content:space-between;
27         align-items:center;
28     }
29     h1 {
30         /*background: url('../../style/img/header-logo.png') no-repeat;*/
31         background: url('../../style/img/svg/osm-logo_color_rgb.svg') no-repeat;
32         background-size:contain;
33         height: 51px;
34         line-height: 51px;
35         margin-left: 20px;
36         padding-left: 100px;
37         left: 0;
38         text-transform: uppercase;
39         font-size: 1.625rem;
40         font-weight: 400;
41         position:relative;
42         flex: 1 0 auto;
43
44     }
45     ul {
46             display:flex;
47         }
48         li {
49             display:flex;
50              flex:1 1 auto;
51              border-right:1px solid #e5e5e5;
52              padding: 0 1rem;
53             &:last-child {
54                 border:none;
55             }
56             a {
57                 cursor:pointer;
58                 // padding: 0.125rem;
59                 // border-bottom:1px solid black;
60                 text-decoration:underline;
61             }
62         }
63     .header-app-nav {
64         display:flex;
65         margin-left: 0.25rem;
66         a,span {
67             text-transform:uppercase;
68         }
69         a {
70             cursor: pointer;
71             margin-left: 0.5rem;
72             font-weight: normal;
73             color: black;
74         }
75
76         .spacer {
77
78         }
79         .current {
80             font-weight: bold;
81         }
82     }
83     nav {
84         display:flex;
85         flex:0 1 auto;
86         align-items:center;
87     }
88 }