style.css
ASCII text
1
/* Colors */
2
3
:root {
4
--secondary: #f9a911;
5
--teriary: #efee00;
6
}
7
8
/* Styles */
9
10
:root {
11
font-family: "Gully", sans-serif;
12
}
13
14
html {
15
background-image: linear-gradient(to left, #f7f, #f77, #fc7, #ff7, #7f7, #7cf, #77f, #c7f, #f7f);
16
background-size: 50%;
17
}
18
19
:is(h1, h2, h3, h4, h5, h6) {
20
font-family: "Willow", sans-serif;
21
font-weight: lighter;
22
}
23
24
:any-link {
25
background: linear-gradient(
26
90deg,
27
rgb(255, 150, 150) 0%,
28
rgb(255, 194, 102) 10%,
29
rgb(244, 255, 107) 20%,
30
rgb(176, 253, 173) 30%,
31
rgb(155, 255, 254) 40%,
32
rgb(192, 246, 255) 50%,
33
rgb(96, 172, 255) 60%,
34
rgb(138, 79, 255) 70%,
35
rgb(217, 110, 255) 80%,
36
rgb(255, 126, 237) 90%,
37
rgb(255, 145, 145) 100%
38
);
39
background-clip: text;
40
-webkit-text-fill-color: transparent;
41
text-shadow: 0 0 2px var(--primary-text);
42
}
43
44
th,
45
td {
46
text-align: center;
47
}
48
49
#ThemeList {
50
padding: 0;
51
margin: 0;
52
}
53
54
#ThemeList li {
55
width: fit-content;
56
display: inline-block;
57
list-style: none;
58
59
}
60