Rift.IO OSM R1 Initial Submission
[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-size:contain;
32         height: 51px;
33         line-height: 51px;
34         margin-left: 20px;
35         padding-left: 100px;
36         left: 0;
37         text-transform: uppercase;
38         font-size: 1.625rem;
39         font-weight: 400;
40         position:relative;
41         flex: 1 0 auto;
42
43     }
44     ul {
45             display:flex;
46         }
47         li {
48             display:flex;
49              flex:1 1 auto;
50              border-right:1px solid #e5e5e5;
51              padding: 0 1rem;
52             &:last-child {
53                 border:none;
54             }
55             a {
56                 cursor:pointer;
57                 // padding: 0.125rem;
58                 // border-bottom:1px solid black;
59                 text-decoration:underline;
60             }
61         }
62     .header-app-nav {
63         display:flex;
64         margin-left: 0.25rem;
65         a,span {
66             text-transform:uppercase;
67         }
68         a {
69             cursor: pointer;
70             margin-left: 0.5rem;
71             font-weight: normal;
72             color: black;
73         }
74
75         .spacer {
76
77         }
78         .current {
79             font-weight: bold;
80         }
81     }
82     nav {
83         display:flex;
84         flex:0 1 auto;
85         align-items:center;
86     }
87 }