blob: a1c97921f6674d7ec6bb1644e2a8b6712e57235a (
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
|
:root {
--text: #FCFFFD;
--page-background: var(--text);
--background: #5D737E;
--text-alt: var(--background);
--background-alt: #81949E;
--disk-a: #E16D82;
--disk-a-text: #FDC0C4;
--disk-b: #73D0C5;
--disk-b-text: #C0FDEB;
}
/* default margin */
html, body {
margin: 0;
padding: 0;
}
/* navbar fix */
body { padding-left: 48px; }
/* font */
html {
font-size: 14px;
font-family: "Inter";
}
/* background color */
html { background-color: var(--page-background); }
/* link color fix */
a { color: var(--text); }
/* centering misschien */
.CenteredPageInner { text-align: center; }
.CenteredPageInner > * { text-align: left; }
/* line height reset */
h1, h2, p, span, td, th {
margin: 0;
line-height: 1.2;
}
/* table groottes met percentages werkt nu */
table { table-layout: fixed; }
/* table styles */
td, th {
padding: 4px;
font-size: 15px;
}
input::placeholder {
font-style: italic;
opacity: .8;
}
/* remove chrome's ugly :focus outline */
:focus { outline: none; }
/* icon size fix */
.navbar svg,
.gameBar svg { font-size: 24px; }
/* scroll balken */
::-webkit-scrollbar { width: 0 !important; }
/* material-ui default state */
svg.MuiSvgIcon-root { transition: none !important; }
|