update from RIFT as of 696b75d2fe9fb046261b08c616f1bcf6c0b54a9b third try
[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: 10px 0px;
21     display:-ms-flexbox;
22     display:flex;
23     -ms-flex-direction:column;
24         flex-direction:column;
25     .header-app-main {
26         display:-ms-flexbox;
27         display:flex;
28         -ms-flex-direction:row;
29             flex-direction:row;
30         -ms-flex-pack:justify;
31             justify-content:space-between;
32         -ms-flex-align:center;
33             align-items:center;
34     }
35     h1 {
36         /*background: url('../../style/img/header-logo.png') no-repeat;*/
37         background: url('../../style/img/svg/osm-logo_color_rgb.svg') no-repeat;
38         background-size:contain;
39         height: 51px;
40         line-height: 51px;
41         margin-left: 20px;
42         padding-left: 100px;
43         left: 0;
44         text-transform: uppercase;
45         font-size: 1.625rem;
46         font-weight: 400;
47         position:relative;
48         -ms-flex: 1 0 auto;
49             flex: 1 0 auto;
50
51     }
52     ul {
53             display:-ms-flexbox;
54             display:flex;
55         }
56         li {
57             display:-ms-flexbox;
58             display:flex;
59              -ms-flex:1 1 auto;
60                  flex:1 1 auto;
61              border-right:1px solid #e5e5e5;
62              padding: 0 1rem;
63             &:last-child {
64                 border:none;
65             }
66             a {
67                 cursor:pointer;
68                 /* padding: 0.125rem;*/
69                 /* border-bottom:1px solid black;*/
70                 text-decoration:underline;
71             }
72         }
73     .header-app-nav {
74         display:-ms-flexbox;
75         display:flex;
76         margin-left: 0.25rem;
77         a,span {
78             text-transform:uppercase;
79         }
80         a {
81             cursor: pointer;
82             margin-left: 0.5rem;
83             font-weight: normal;
84             color: black;
85         }
86
87         .spacer {
88
89         }
90         .current {
91             font-weight: bold;
92         }
93     }
94     nav {
95         display:-ms-flexbox;
96         display:flex;
97         -ms-flex:0 1 auto;
98             flex:0 1 auto;
99         -ms-flex-align:center;
100             align-items:center;
101     }
102 }