-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.scss
67 lines (54 loc) · 903 Bytes
/
base.scss
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
@use "mixins" as *;
@use "colors" as *;
*,
::before,
::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--main-font: "Raleway", sans-serif;
--title-font: "Montserrat", serif;
--monospace-font: "Iosevka", "Ubuntu Mono", monospace;
--bg-color: var(--primary);
--bg-color-b: var(--bg-b);
&:not(.light):not(.dark) {
@include light-mode;
@include dark {
@include dark-mode;
}
}
&.light {
@include light-mode;
}
&.dark {
@include dark-mode;
}
}
header,
aside {
--bg-color: var(--primary);
--bg-color-b: var(--bg-b);
}
main {
--bg-color: var(--bg-b);
--bg-color-b: var(--bg);
}
footer {
--bg-color: var(--bg);
--bg-color-b: var(--bg-b);
}
html {
text-rendering: optimizeLegibility;
line-height: 1.5;
font: 400 var(--font-size, 16px) var(--main-font);
}
[title] {
cursor: help;
}
button,
input[type="submit"],
a {
touch-action: manipulation;
}