summaryrefslogtreecommitdiffstats
path: root/www/style.css
blob: d0b19b8f630d6787589026fb4bb4e1c193fb080d (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
body
{
    font-family: Arial, sans-serif;
    font-size: 14pt;
    color: #ccc;
    background-color: #000;
    max-width: 80ch;
    margin: 0 auto;
    padding: 25px;
}

.heading
{
    text-align: center;
    font-family: Monaco, monospace;
    font-size: 18pt;
}

.literal
{
    font-family: Monaco, monospace;
    font-size: 12pt;
    background-color: #222;
    border-style: solid;
    border-width: 2px;
    border-radius: 7px;
    padding: 1em;
}

.note
{
    color: #efce28;
    font-style: italic;
}

a
{
    color: #777;
}

a:hover
{
    color: #999;
}