aboutsummaryrefslogtreecommitdiff
path: root/static/styles/main.css
blob: 3523c5c50f63790c044dc6dc43a05ab6bee4508d (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
@font-face {
    font-family: "Open Sans";
    src: url("/static/fonts/OpenSans/OpenSans-VariableFont_wdth,wght.ttf") format("truetype-variations");
    font-weight: 100 1000;
}

@font-face {
    font-family: "Open Sans";
    src: url("/static/fonts/OpenSans/OpenSans-Italic-VariableFont_wdth,wght.ttf") format("truetype-variations");
    font-style: italic;
    font-weight: 100 1000;
}

:root {
    font-family: "Open Sans", sans-serif;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid black;
}

th, td {
    border: 1px solid black;
}

span.tag {
    background-color: palegoldenrod;
}

.hover-help {
    cursor: help;
    user-select: none;
    padding-left: 0.2em;
}

@media (pointer: coarse), (hover: none) {
    div.side-by-side-help-container {
        display: table-row;
    }

    div.side-by-side-help-container > * {
        display: table-cell;
    }

    div.side-by-side-help-container > .hover-help:focus::after {
        content: attr(title);
        font-size: small;
        padding-left: 0.2em;
    }
}