]> git.ipfire.org Git - ipfire.org.git/blame - src/scss/style.scss
Remove commented line about the used locale
[ipfire.org.git] / src / scss / style.scss
CommitLineData
bc5b7100 1@import "variables";
91e44d91 2
8e1ad516 3// Use all Bootstrap modules that we want
bc5b7100
MT
4@import "../bootstrap/scss/functions";
5@import "../bootstrap/scss/variables";
6@import "../bootstrap/scss/mixins";
8e1ad516 7@import "../bootstrap/scss/root";
bc5b7100 8@import "../bootstrap/scss/reboot";
bc5b7100 9@import "../bootstrap/scss/type";
8e1ad516
MT
10@import "../bootstrap/scss/images";
11@import "../bootstrap/scss/code";
bc5b7100
MT
12@import "../bootstrap/scss/grid";
13@import "../bootstrap/scss/tables";
14@import "../bootstrap/scss/forms";
15@import "../bootstrap/scss/buttons";
bc5b7100 16@import "../bootstrap/scss/transitions";
8e1ad516 17@import "../bootstrap/scss/dropdown";
bc5b7100 18@import "../bootstrap/scss/button-group";
8e1ad516 19@import "../bootstrap/scss/input-group";
bc5b7100
MT
20@import "../bootstrap/scss/nav";
21@import "../bootstrap/scss/navbar";
8e1ad516
MT
22@import "../bootstrap/scss/card";
23@import "../bootstrap/scss/pagination";
bc5b7100 24@import "../bootstrap/scss/badge";
8e1ad516 25@import "../bootstrap/scss/alert";
bc5b7100
MT
26@import "../bootstrap/scss/progress";
27@import "../bootstrap/scss/media";
28@import "../bootstrap/scss/list-group";
8e1ad516 29@import "../bootstrap/scss/close";
bc5b7100 30@import "../bootstrap/scss/utilities";
8e1ad516 31@import "../bootstrap/scss/print";
1423222c 32
616bd6a5
MT
33// Include fonts
34@import "fonts";
35
fed291df
SH
36// Donation Box
37@import "_donation";
38
5236a99a 39// Custom stuff
7ca46dd8 40@import '_icons';
5236a99a 41
cc59f0e1 42body {
9f043320
MT
43 // For scrollspy
44 position: relative;
45
cc59f0e1
MT
46 min-height: 75rem;
47 padding-top: 6rem;
48}
49
41f3d31d
MT
50// Buttons
51.btn {
52 text-transform: uppercase;
53}
54
e434c81f
MT
55// Headings
56
57h1 {
58 line-height: 4rem;
59}
60
61h2 {
62 line-height: 3.5rem;
63}
64
65h3 {
66 line-height: 3rem;
67}
68
69h4 {
70 line-height: 2.75rem;
71}
72
73h5 {
74 line-height: 2rem;
75}
76
77h6 {
78 line-height: 1.75rem;
79}
80
cc59f0e1
MT
81.card {
82 box-shadow: $shadow-1;
83}
84
9f043320
MT
85.nav {
86 .nav-link {
87 color: $blue-grey-900;
88
89 &.active {
90 color: $link-color;
91 border-left: 2px solid $link-color;
92 }
93 }
94}
95
56fdd02c
MT
96.navbar {
97 &.scrolled {
98 background-color: white;
99 box-shadow: $shadow-2;
100
101 transition: background-color 200ms linear;
102 }
dce6f905
MT
103
104 .navbar-nav {
105 .nav-link {
106 color: $blue-grey-900;
107
108 &.active {
109 border-bottom: 2px solid $link-color;
110 }
111 }
112 }
56fdd02c
MT
113}
114
c2cbe16d
S
115footer {
116 .btn-toolbar .icon {
fdae1aac
S
117 height: 2.25rem;
118 width: 2.25rem;
c2cbe16d
S
119 fill: rgba($blue-grey-900, .6);
120 }
121 .i_heart {
fdae1aac
S
122 vertical-align: top;
123 transform: translateY(-.15rem);
124 @include media-breakpoint-down(sm) {
125 transform: translateY(-.75rem);
126 }
c2cbe16d
S
127 }
128}
129
c2cbe16d 130// Sections
319dd276 131
cc59f0e1
MT
132.main {
133 section {
134 padding: 3rem 0;
319dd276 135
cc59f0e1
MT
136 @include media-breakpoint-up(sm) {
137 padding: 72px 0;
138 }
319dd276 139
cc59f0e1
MT
140 h1 {
141 margin-bottom: 64px;
142 }
319dd276 143 }
319dd276 144
cc59f0e1 145 section.intro {
c79aaf03
MT
146 // Make it cover the navbar, too
147 margin-top: -6rem;
148 padding-top: 6rem;
149
cc59f0e1
MT
150 min-height: 100vh;
151 background-image: url('img/header-background.jpg');
152 background-size: cover;
153 background-attachment: fixed;
154 background-position: center top;
155 position: relative;
b4bff93b 156
cc59f0e1 157 .branding {
c79aaf03
MT
158 margin-top: 7.5rem;
159 margin-bottom: 4rem;
319dd276 160
c79aaf03
MT
161 @include media-breakpoint-down(xs) {
162 margin-top: 2.5rem;
cc59f0e1 163 }
319dd276 164
c79aaf03
MT
165 text-align: center;
166
cc59f0e1
MT
167 h1 {
168 margin-bottom: 0;
319dd276 169
cc59f0e1
MT
170 @include media-breakpoint-down(xs) {
171 font-size: 72px;
172 line-height: 88px;
173 }
1423222c 174 }
319dd276 175
cc59f0e1
MT
176 h1:before {
177 content: "";
178 height: 60px;
179 width: 76px;
180 background-image: url('img/ipfire-tux.png');
181 background-repeat: no-repeat;
182 background-position: center center;
183 background-size: contain;
184 display: inline-block;
185 position: relative;
186 top: 4px;
187
188 @include media-breakpoint-up(sm) {
189 height: 120px;
190 width: 93px;
191 margin-right: 32px;
192 top: 8px;
193 }
194 }
319dd276 195
cc59f0e1
MT
196 h5 {
197 color: $blue-grey-600;
319dd276 198
c79aaf03
MT
199 @include media-breakpoint-down(xs) {
200 font-size: 14px;
201 line-height: 20px;
202 }
203 }
319dd276 204 }
1423222c 205 }
f8c4f791 206
cc59f0e1
MT
207 section#news, section#support, footer {
208 background-color: rgba($blue-grey-900, .06);
209 }
319dd276 210
cc59f0e1
MT
211 section#news {
212 color: rgba($blue-grey-900, .6);
213 }
319dd276 214
cc59f0e1
MT
215 section#fireinfo {
216 border-bottom: 1px solid rgba($blue-grey-900, .2);
217 }
319dd276 218
cc59f0e1
MT
219 section#appliances {
220 padding-bottom: 48px;
221 }
319dd276
MT
222}
223
9f043320
MT
224// Sidebar navigation
225
226#sidebar .nav {
227 position: fixed;
228}
229
f8c4f791
S
230.page-scroll {
231 display: block;
232 visibility: visible;
233 position: absolute;
234 bottom: 48px;
235 left: 50%;
236 transform: translateX(-50%);
237 .btn {
238 width: 36px;
239 height: 36px;
240 fill: $red_900;
241 @include media-breakpoint-up(sm) {
242 width: 64px;
243 height: 64px;
244 }
245 &:hover .i_arrow_down {
246 fill: white;
1423222c
S
247 }
248 }
4b4334da
S
249}
250
c2cbe16d
S
251.feature_icons {
252 width: 40px;
253 height: 100%;
254 float: left;
255 margin-right: .75rem;
4b4334da
S
256}
257
61975d93
S
258.progress {
259 background-color: rgba(255, 255, 255, .2);
260}
261
c2cbe16d
S
262.circle {
263 position: relative;
f8c4f791 264 p.fireinfo_per {
c2cbe16d
S
265 color: $blue-grey-600;
266 position: absolute;
d56f505e 267 top: calc(50% - 18px);
c2cbe16d
S
268 width: 100%;
269 }
20df8773
S
270}
271
8e4a3eaa 272.fixed-top + .blog-content {
96dd6875 273 padding-top: 88px;
0955047d 274 margin-bottom: 40px;
346e30de 275 @include media-breakpoint-up(lg) {
96dd6875
SH
276 padding-top: 161px;
277 }
0955047d
S
278 .content {
279 background: white;
280 border-radius: 4px;
281 box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
282 padding: 40px 24px;
f59b40f6 283 position: relative;
0955047d
S
284 }
285}
286
8e4a3eaa
SH
287.blog-content {
288 margin-bottom: 80px;
289}
290
bf5b46d4 291.divider {
0955047d 292 width: 128px;
bf5b46d4
S
293 height: 4px;
294 border-radius: 2px;
bc5b7100 295 background-image: linear-gradient(to right, $red-900, $orange-a400);
96dd6875
SH
296 margin: 40px auto 24px auto;
297 @include media-breakpoint-up(sm) {
298 margin: 56px auto 40px auto;
299 }
0955047d
S
300}
301
20df8773
S
302footer {
303 padding: 3rem 0 0 0;
8e18ac98
S
304 @include media-breakpoint-down(md) {
305 padding-top: 31px;
306 }
6aa3b1ec
S
307 h4 {
308 margin-bottom: 1.25rem;
c2cbe16d 309 color: rgba($blue-grey-900, .6);
f8c4f791
S
310 font-size: 20px;
311 line-height: 28px;
6aa3b1ec
S
312 }
313 ul {
314 li {
f8c4f791 315 font-size: 14px;
6aa3b1ec
S
316 margin-bottom: .75rem;
317 a {
c2cbe16d 318 color: rgba($blue-grey-900, .6);
6aa3b1ec
S
319 text-decoration: none;
320 &:hover {
c2cbe16d 321 color: $blue-grey-900;
6aa3b1ec
S
322 text-decoration: underline;
323 }
324 }
325 }
326 }
327 .btn-lg {
328 margin-bottom: 2.75rem;
6aa3b1ec
S
329 }
330 .btn-sm {
331 box-shadow: none;
332 &:hover {
333 box-shadow: none;
334 }
6aa3b1ec 335 }
20df8773
S
336}
337
c2cbe16d
S
338#copyright {
339 background-color: rgba($blue-grey-900, .06);
340 padding: 1rem 0;
f8c4f791
S
341 p {
342 font-size: 12px;
343 line-height: 16px;
344 }
ac7f3ec6
S
345}
346
c2cbe16d 347// Animation
c2cbe16d 348@keyframes scroll {
61eaa9b2 349 0%, 100% { transform: translateY(30%); }
fdae1aac 350 50% { transform: translateY(50%); }
7c0605e8 351}