-
Notifications
You must be signed in to change notification settings - Fork 0
/
root.css
150 lines (128 loc) · 2.48 KB
/
root.css
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
html {
font-family:
system-ui,
/* macOS 10.11-10.12 */
-apple-system,
/* Windows 6+ */
"Segoe UI",
/* Android 4+ */
"Roboto",
/* Ubuntu 10.10+ */
"Ubuntu",
/* Gnome 3+ */
"Cantarell",
/* KDE Plasma 5+ */
"Noto Sans",
/* fallback */
sans-serif,
/* macOS emoji */
"Apple Color Emoji",
/* Windows emoji */
"Segoe UI Emoji",
/* Windows emoji */
"Segoe UI Symbol",
/* Linux emoji */
"Noto Color Emoji";
scrollbar-face-color: #646464;
scrollbar-base-color: #646464;
scrollbar-3dlight-color: #646464;
scrollbar-highlight-color: #646464;
scrollbar-track-color: #000;
scrollbar-arrow-color: #000;
scrollbar-shadow-color: #646464;
scrollbar-dark-shadow-color: #866a6a;
}
::-webkit-scrollbar {
width: 14px;
height: 3px;
}
::-webkit-scrollbar-button {
background-color: #000;
height: 3px;
}
::-webkit-scrollbar-track {
background-color: #646464;
}
::-webkit-scrollbar-track-piece {
background-color: #000;
}
::-webkit-scrollbar-thumb {
height: 50px;
background-color: #666;
border-radius: 7px;
}
::-webkit-scrollbar-corner {
background-color: #646464;
}
::-webkit-resizer {
background-color: #666;
}
:root {
--highlight-color: #978141;
}
.flex {
display: flex !important;
}
body {
color: #fff;
background-color: #0f0f0f;
font-family: "Montserrat", sans-serif;
background: #0f0f0f;
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
h1 {
font-family: 'Roboto', sans-serif;
font-size: 100px;
}
h2 {
font-family: 'Roboto', sans-serif;
font-size: 80px;
text-shadow: -2px -2px #313233;
}
h3 {
font-family: 'Roboto', sans-serif;
font-size: 65px;
}
h4 {
font-family: 'Roboto', sans-serif;
font-size: 40px;
}
p.subtitle {
font-family: 'Roboto', sans-serif;
font-size: 30px;
}
a {
color: inherit;
}
footer {
font-family: 'Open Sans', sans-serif;
position: fixed;
left: 10px;
bottom: 10px;
width: 100%;
}
@media (max-width: 1680px) {
html {
font-size: 13pt;
}
}
@media (max-width: 1280px) {
html {
font-size: 13pt;
}
}
@media (max-width: 980px) {
html {
font-size: 11pt;
}
}
@media (max-width: 736px) {
html {
font-size: 11pt;
}
}