blob: d79b27c02647914c0d5c05396a28bcc01088712d (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
@import url('data-table.css');
:root {
--col-accent-pri: #0aa;
--col-accent-pri-hl: #0cc;
--col-bg: #222;
--col-dialog-bg: #333;
--col-navbar-bg: var(--col-accent-pri);
--col-button-pri: var(--col-accent-pri);
--col-button-pri-hl: var(--col-accent-pri-hl);
--col-button-disabled: #777;
--col-button-disabled-bg: #444;
--col-button-sec: #555;
--col-button-sec-hl: #777;
--col-button-sec-disabled: #555;
--col-button-sec-disabled-bg: #000;
--col-button-warning: #ff4848;
--col-button-warning-hl: #ff9999;
--col-scrollbar: #666666;
--col-scrollbar-hover: #aaaaaa;
}
body {
background: var(--col-bg);
color: white;
display: flex;
flex-direction: column;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode';
margin: 0;
overflow: hidden;
}
a {
color: var(--col-accent-pri);
text-decoration: none;
}
a:hover {
filter: brightness(1.5);
}
button, input[type=submit] {
color: white;
background: var(--col-button-pri);
border-radius: 10px;
border: none;
box-sizing: border-box;
height: 30px;
margin: 10px 5px 0 5px;
padding: 0 9px 0 9px;
user-select: none;
}
button:disabled {
color: var(--col-button-disabled) !important;
background: var(--col-button-disabled-bg) !important;
}
button.warning {
background: var(--col-button-warning);
}
button.warning:hover {
background: var(--col-button-warning-hl);
}
button.warning:active {
color: var(--col-button-warning);
background: white;
}
button.secondary {
background: var(--col-button-sec);
}
button.secondary:hover {
background: var(--col-button-sec-hl);
}
button.secondary:active {
background: white;
color: var(--col-button-sec);
}
button.secondary:disabled {
color: var(--col-button-sec-disabled) !important;
background: var(--col-button-sec-disabled-bg) !important;
}
button:hover, input[type=submit]:hover {
background: var(--col-button-pri-hl);
}
button:active, input[type=submit]:active {
background: white;
color: var(--col-button-pri);
}
input {
background: rgba(0, 0, 0, 0);
border-radius: 5px;
border: 1px solid #aaa;
box-sizing: border-box;
color: white;
height: 25px !important;
margin-bottom: 10px;
}
/* necessary for use inside flex containers */
hr {
width: 100%;
}
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-thumb {
background: var(--col-scrollbar);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--col-scrollbar-hover);
}
::-webkit-scrollbar-corner {
opacity: 0;
}
|