OLD | NEW |
1 // This file is part of help.eyeo.com. | 1 // This file is part of help.eyeo.com. |
2 // Copyright (C) 2017 Eyeo GmbH | 2 // Copyright (C) 2017 Eyeo GmbH |
3 // | 3 // |
4 // help.eyeo.com is free software: you can redistribute it and/or modify | 4 // help.eyeo.com is free software: you can redistribute it and/or modify |
5 // it under the terms of the GNU General Public License as published by | 5 // it under the terms of the GNU General Public License as published by |
6 // the Free Software Foundation, either version 3 of the License, or | 6 // the Free Software Foundation, either version 3 of the License, or |
7 // (at your option) any later version. | 7 // (at your option) any later version. |
8 // | 8 // |
9 // help.eyeo.com is distributed in the hope that it will be useful, | 9 // help.eyeo.com is distributed in the hope that it will be useful, |
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 // GNU General Public License for more details. | 12 // GNU General Public License for more details. |
13 // | 13 // |
14 // You should have received a copy of the GNU General Public License | 14 // You should have received a copy of the GNU General Public License |
15 // along with help.eyeo.com. If not, see <http://www.gnu.org/licenses/>. | 15 // along with help.eyeo.com. If not, see <http://www.gnu.org/licenses/>. |
16 | 16 |
| 17 /******************************************************************************* |
| 18 * Site Header |
| 19 ******************************************************************************/ |
| 20 |
17 #site-header | 21 #site-header |
18 { | 22 { |
19 min-height: $site-header-height; | 23 min-height: $site-header-height; |
20 font-size: $small-font; | 24 font-size: $small-font; |
21 line-height: $site-header-content-line-height; | 25 line-height: $site-header-content-line-height; |
22 } | 26 } |
23 | 27 |
24 #site-title | 28 #site-title |
25 { | 29 { |
26 float: left; | 30 float: left; |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 html[dir="rtl"] .toggle-navbar-collapse | 62 html[dir="rtl"] .toggle-navbar-collapse |
59 { | 63 { |
60 float: left; | 64 float: left; |
61 } | 65 } |
62 | 66 |
63 .no-js .toggle-navbar-collapse | 67 .no-js .toggle-navbar-collapse |
64 { | 68 { |
65 display: none; | 69 display: none; |
66 } | 70 } |
67 | 71 |
68 // Minimal header for non-product pages | 72 /* Minimal header for non-product pages |
| 73 ******************************************************************************/ |
69 | 74 |
70 @media (min-width: $tablet-breakpoint) | 75 @media (min-width: $tablet-breakpoint) |
71 { | 76 { |
72 .site-header-minimal .navbar-collapse | 77 .site-header-minimal .navbar-collapse |
73 { | 78 { |
74 text-align: right; | 79 text-align: right; |
75 } | 80 } |
76 | 81 |
77 [dir="rtl"] .site-header-minimal .navbar-collapse | 82 [dir="rtl"] .site-header-minimal .navbar-collapse |
78 { | 83 { |
79 text-align: left; | 84 text-align: left; |
80 } | 85 } |
81 } | 86 } |
OLD | NEW |