blob: 4a76f871f050528bef0717c05be09e0d5e0a4b51 (
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
|
:root {
--col-bg: #222;
--col-navbar-bg: magenta;
}
body {
margin: 0;
background: var(--col-bg);
color: white;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode';
}
a {
color: white;
text-decoration: none;
}
input {
color: white;
box-sizing: border-box;
border: 1px solid #aaa;
background: rgba(0, 0, 0, 0.3);
border-radius: 5px;
}
button {
background: #f0f;
border-radius: 10px;
border: none;
box-sizing: border-box;
height: 30px;
padding: 0 7px 0 7px;
}
button:hover {
background: #f8f;
}
button:active {
background: #fff;
}
table.data-table {
border-collapse: collapse;
width: 100%;
}
table.data-table > tbody > tr > th {
border-bottom: 1px solid white;
padding: 4px;
}
table.data-table > tbody > tr > td {
padding: 4px;
}
table.data-table > tbody > tr:nth-child(2n):not(:last-child) {
background: rgba(255, 255, 255, 0.2);
}
table.data-table > tbody > tr > td:not(:last-child) {
border-right: 1px solid white;
}
|