blob: 4ee8c9236cb0dd8121cb6ee549d0be2ff2353605 (
plain)
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
|
@media (prefers-color-scheme: dark) {
#navigation-bar {
border-bottom: 1px solid #252525 !important;
background: rgba(17, 17, 17, 0.5) !important;
}
body, #selector {
background: #111 !important;
color: white !important;
}
#logo {
color: white !important;
}
#main-container {
color: white !important;
}
#video-info {
color: white !important;
}
li.list-group-item {
background: #222;
color: white;
}
li.list-group-item:hover {
background: #333 !important;
color: white !important;
}
li.list-group-item:active {
background: #252525 !important;
color: white !important;
}
#loader, #loader-box {
background: #151515 !important;
}
#search-box, #counts {
color: white !important;
}
#search {
background: #222;
border: 1px solid #222;
color: white;
}
.card {
background: #222;
color: white;
}
.modal-content {
color: black;
}
.alert-warning {
color: #fff3cd;
background-color: #8564044a;
border-color: #8564049c;
}
.alert-info {
color: #fff3cd;
background-color: rgba(4, 84, 133, 0.29);
border-color: rgba(4, 64, 133, 0.61);
}
#intermission-note {
position: fixed;
bottom: 10px;
left: 0;
right: 0;
text-align: center;
}
#close-btn {
filter: invert(1);
}
}
|