-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlayout.scss
More file actions
52 lines (48 loc) · 895 Bytes
/
layout.scss
File metadata and controls
52 lines (48 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
@use '$lib/stylesheets/variables/color' as *;
@use '$lib/stylesheets/variables/dimension' as *;
#nprogress {
.bar {
background: $old-primary-color;
height: 3px;
}
.peg,
.spinner {
display: none;
}
}
.global-noscript {
display: block;
position: relative;
font-family: initial;
font-weight: 900;
font-size: 16px;
padding: 26px;
color: $primary-color-pale-lighter;
background-color: $secondary-color;
border-bottom: 1px solid $primary-color-pale-lighter;
z-index: 2048;
}
main::before {
content: '';
$dark: rgba($secondary-color, 0.75);
background:
linear-gradient($dark, $dark),
linear-gradient(
165deg,
#4e8091 13%,
#154c84 22%,
#0f5372 44%,
#326e86 50%,
#132f6b 62%,
#132f6b 73%,
#050946 90%
);
background-size: 100% 100%;
display: block;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: calc($vh001 * 100);
z-index: -1;
}