summaryrefslogtreecommitdiffstats
path: root/siite/style.css
blob: b1718c859e821f9a589bf4760beae650604ac534 (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
* {
    --aluminium-light: #eeeeec;
    --aluminium-medium: #d3d7cf;
    --aluminium-dark: #babdb6;

    --slate-light: #888a85;
    --slate-medium: #555753;
    --slate-off-dark: #343a3d;
    --slate-dark: #2e3436;
    --slate-extra-dark: #202426;

    --butter-light: #fce94f;
    --butter-medium: #edd400;
    --butter-dark: #c4a000;

    --chameleon-light: #8ae234;
    --chameleon-medium: #73d216;
    --chameleon-dark: #4e9a06;

    --orange-light: #fcaf3e;
    --orange-medium: #f57900;
    --orange-dark: #ce5c00;

    --chocolate-light: #e9b96e;
    --chocolate-medium: #c17d11;
    --chocolate-dark: #8f5902;

    --sky-blue-light: #729fcf;
    --sky-blue-medium: #3465a4;
    --sky-blue-dark: #204a87;

    --plum-light: #ad7fa8;
    --plum-medium: #75507b;
    --plum-dark: #5c3566;

    --scarlet-red-light: #ef2929;
    --scarlet-red-medium: #cc0000;
    --scarlet-red-dark: #a40000;
    
    --unset: #ffff00;
    
    --background: var(--aluminium-light);
    
    --header-text: var(--slate-dark);
    --primary-text: var(--slate-dark);
    --secondary-text: var(--slate-medium);
    --inverse-text: var(--aluminium-medium);
    
    --accent-dark: var(--sky-blue-dark);
    --accent-light: var(--sky-blue-medium);
    
    --table-header: var(--accent-dark);
    --table-row-dark: var(--aluminium-medium);
    --table-row-light: var(--aluminium-light);
    --table-row-hover: var(--aluminium-dark);
}

body {
    background: var(--background);
    color: var(--primary-text);
    font-family: sans-serif;
}

section {
    margin-left: 30px;
}

h1, h2 {
    color: var(--header);
}

table {
    border: 0;
}

table td, table th {
    vertical-align: top;
    padding: 2px 12px 2px;
    text-align: left;
}

table th {
    background-color: var(--table-header);
    color: var(--inverse-text);
}

table tr:nth-child(odd) td {
    background-color: var(--table-row-light);
}

table tr:nth-child(even) td {
    background-color: var(--table-row-dark);
}

table tr:hover td {
    background-color: var(--table-row-hover);
}

.article {
    color: var(--accent-light);
    font-weight: bold;
}

.pronoun {
    color: var(--accent-light);
    font-weight: bold;
}

.ending {
    color: var(--accent-light);
    font-weight: bold;
}

.noun {
}