-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (104 loc) · 2.18 KB
/
style.css
File metadata and controls
107 lines (104 loc) · 2.18 KB
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
:root {
--black: rgba(0, 0, 0, 0.856);
--white: #efeef5;
}
.track-category-gym-text {
font-family: "Englebert";
font-size: 52px;
color: rgb(97, 64, 155);
margin-bottom: 10px;
}
#ch-tooltip {
background-color: var(--white);
border: solid var(--black);
border-radius: 10px;
font-family: "Comfortaa";
font-size: 18px;
color: var(--black);
}
#gym-legend text {
font-family: "Comfortaa";
font-size: 15px;
color: var(--black);
}
body {
margin-top: 5%;
margin-left: 12%;
margin-right: 20%;
}
.track-category-spoiler-text {
font-family: "Englebert";
font-size: 52px;
color: #525252;
margin-bottom: 10px;
}
.track-category-korean-text {
font-family: "Englebert";
font-size: 52px;
color: rgb(216, 40, 69);
margin-bottom: 10px;
}
#korean-legend span {
font-family: "Comfortaa";
font-size: 15px;
color: var(--black);
padding-bottom: 5px;
}
.track-category-study-text {
font-family: "Englebert";
font-size: 52px;
color: #228B22;
margin-bottom: 10px;
}
#study-legend span {
font-family: "Comfortaa";
font-size: 15px;
color: var(--black);
padding-bottom: 5px;
}
button {
background-color: var(--black);
color: var(--white);
border: solid var(--black);
border-radius: 10px;
font-family: "Comfortaa";
font-size: 15px;
}
.dark-mode {
background-color: var(--black);
color: var(--white);
.track-category-gym-text {
color: rgb(163, 113, 249);
}
#ch-tooltip {
background-color: var(--black);
border: solid var(--white);
color: var(--white);
}
#gym-legend text {
color: var(--white);
}
.track-category-spoiler-text {
color: #d3d2d2;
}
.track-category-korean-text {
color: rgb(237, 9, 47);
}
#korean-legend span {
color: var(--white);
}
.track-category-study-text {
color: #32CD32;
}
#study-legend span {
color: var(--white);
}
button {
background-color: var(--white);
color: var(--black);
border: solid var(--white);
border-radius: 10px;
font-family: "Comfortaa";
font-size: 15px;
}
}