summaryrefslogtreecommitdiffstats
path: root/css/styles.css
blob: 9a6edc6cc4887ed90ff2f252a416461e8026773e (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
33
34
35
36
37
38
39
40
41
42
43
44
45
:root {
    --color-primary: rgba(0, 128, 83, 1);
    --color-secondary: rgba(0, 77, 50, 1);
    --color-accent: rgba(0, 156, 101, 1);
}

.title-primary {
    color: var(--color-primary) !important;
}

.title-secondary {
    color: var(--color-secondary) !important;
}

.btn {
    background-color: var(--color-secondary);
}

.btn:hover {
    background-color: var(--color-primary);
}

nav {
    background: var(--color-primary);
    border-bottom: 10px solid var(--color-accent);
}

.hidden {
    display: none !important;
}

.collapsible-header-right {
    float: right;
    position: absolute;
    right: 10px;
    font-style: italic;
}

.collapsible-header-root {
    position: relative;
}

.secondary-content {
    font-weight: bold;
}