-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathmain.css
More file actions
88 lines (77 loc) · 1.79 KB
/
main.css
File metadata and controls
88 lines (77 loc) · 1.79 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
@font-face {
font-family: "NotoSans";
src: url("./include/NotoSans-Regular.ttf") format("truetype");
}
@font-face {
font-family: "RobotoCondensed";
src: url("./include/RobotoCondensed.ttf") format("truetype");
}
/* Class used for transcriptions, example: Kana -> Romaji (Japanese to Roman alphabet) */
.tsh_transcript {
font-size: 60%;
text-transform: uppercase;
align-self: end;
}
.tsh_character_container {
display: flex;
width: 100%;
height: 100%;
}
.tsh_character,
.tsh_character > div {
position: relative;
width: 100%;
height: 100%;
}
.text {
white-space: nowrap;
display: flex;
min-width: 100%;
width: fit-content;
place-items: center;
place-content: center;
height: 100%;
gap: inherit;
transform-origin: left;
}
/* Main theme -- Dark Gradient */
:root {
--font: "RobotoCondensed";
--border-radius: 16px;
--text-color: white;
--bg-color: #121212;
/* see DEFAULT_TEAM1_COLOR and DEFAULT_TEAM2_COLOR in src/TSHScoreboardWidget.py */
/* --p1-score-bg-color: linear-gradient(
135deg,
rgba(189, 63, 50, 1) 0%,
rgba(203, 53, 107, 1) 100%
);
--p2-score-bg-color: linear-gradient(
225deg,
rgba(47, 128, 237, 1) 0%,
rgba(60, 139, 166, 1) 100%
); */
--p1-sponsor-color: #ff7a6d;
--p2-sponsor-color: #29b6f6;
--p1-score-bg-color: rgb(254, 54, 54);
--p2-score-bg-color: rgb(46, 137, 255);
--p1-score-color: white;
--p2-score-color: white;
}
/* Uncomment for themes */
/* Dark Solid Theme */
/* :root {
--text-color: white;
--bg-color: #18181b;
--p1-score-bg-color: #ff3837ff;
--p2-score-bg-color: #1255a3ff;
--p1-score-color: white;
--p2-score-color: white;
} */
/* Light Gradient Theme */
/* :root {
--text-color: black;
--bg-color: #e2ebf0ff;
--p1-sponsor-color: #a31212;
--p2-sponsor-color: #1255a3ff;
} */