By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 style.css

View raw Download
text/plain • 577 B
ASCII text
        
            
1
:root {
2
--primary: #101010;
3
--secondary: #f9a911;
4
--teriary: #efee00;
5
6
--primary-text: #fff;
7
--primary-code: #1f1f1f;
8
}
9
10
body {
11
background-color: var(--primary);
12
color: var(--primary-text);
13
}
14
15
:any-link {
16
color: var(--secondary);
17
}
18
19
th,
20
td {
21
text-align: center;
22
}
23
24
#ThemeList {
25
padding: 0;
26
margin: 0;
27
}
28
29
#ThemeList li {
30
width: fit-content;
31
display: inline-block;
32
list-style: none;
33
34
}
35
36
code {
37
background-color: var(--primary-code);
38
display: inline-block;
39
}
40
41
code:has(pre) {
42
display: block;
43
padding: 5px;
44
}
45