OLD | NEW |
1 // This file is part of acceptableads.org. | 1 // This file is part of acceptableads.org. |
2 // Copyright (C) 2016-present eyeo GmbH | 2 // Copyright (C) 2016-present eyeo GmbH |
3 // | 3 // |
4 // acceptableads.org is free software: you can redistribute it and/or modify | 4 // acceptableads.org 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 // acceptableads.org is distributed in the hope that it will be useful, | 9 // acceptableads.org 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 |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 ), | 115 ), |
116 xl: ( | 116 xl: ( |
117 x: $xl, | 117 x: $xl, |
118 y: $xl | 118 y: $xl |
119 ) | 119 ) |
120 ) !default; | 120 ) !default; |
121 | 121 |
122 // Sidebar ///////////////////////////////////////////////////////////////////// | 122 // Sidebar ///////////////////////////////////////////////////////////////////// |
123 | 123 |
124 $sidebar-width: 208px; | 124 $sidebar-width: 208px; |
| 125 $mobile-sidebar-height: 64px; |
| 126 |
| 127 // breadcrumbs /////////////////////////////////////////////////////////////////
//// |
| 128 |
| 129 $breadcrumbs-height: 32px; |
| 130 |
| 131 //Header |
| 132 ///////////////////////////////////////////////////////////////////// |
| 133 |
| 134 $header-height: $mobile-sidebar-height + $breadcrumbs-height; |
125 | 135 |
126 // Columns ///////////////////////////////////////////////////////////////////// | 136 // Columns ///////////////////////////////////////////////////////////////////// |
127 | 137 |
128 $max-width: 1140px; | 138 $max-width: 1140px; |
129 $gutter-width: $sm; | 139 $gutter-width: $sm; |
130 | 140 |
131 // Breakpoints ///////////////////////////////////////////////////////////////// | 141 // Breakpoints ///////////////////////////////////////////////////////////////// |
132 | 142 |
133 $desktop-breakpoint: 992px; | 143 $desktop-breakpoint: 992px; |
134 $tablet-breakpoint: 768px; | 144 $tablet-breakpoint: 768px; |
(...skipping 24 matching lines...) Expand all Loading... |
159 @extend %buttons !optional; | 169 @extend %buttons !optional; |
160 } | 170 } |
161 | 171 |
162 button, input[type="button"], input[type="reset"], input[type="submit"], .btn-pr
imary | 172 button, input[type="button"], input[type="reset"], input[type="submit"], .btn-pr
imary |
163 { | 173 { |
164 @extend %default-button !optional; | 174 @extend %default-button !optional; |
165 } | 175 } |
166 | 176 |
167 // Cards ////////////////////////////////////////////////////////////////////// | 177 // Cards ////////////////////////////////////////////////////////////////////// |
168 | 178 |
169 $card-min-width: 350px; | 179 $card-min-width: 350px; |
OLD | NEW |