blob: 71172a58760b6ec23a8a260bb206e82f1c0051b5 (
plain) (
blame)
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
|
/**
Main
*/
body {
background-color: #181a1b;
}
.main {
color: #d0cdc6
}
button {
text-decoration-color: initial;
background-color: #3d4043;
border-top-color: #595959;
border-right-color: #595959;
border-bottom-color: #595959;
border-left-color: #595959;
color: #ffffff;
}
input {
border-color: #575757;
color: #e8e6e3;
}
/**
Other stuff
*/
tr:hover {
background-color: #121516 !important;
}
|