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
}
42
43
th,
44
td {
45
text-align: center;
46
}
47
48
#ThemeList {
49
padding: 0;
50
margin: 0;
51
}
52
53
#ThemeList li {
54
width: fit-content;
55
display: inline-block;
56
list-style: none;
57
58
}
59