aboutsummaryrefslogtreecommitdiff
path: root/dst/styles/style.css
blob: b20fd70629dde8d2ba7c7a4188b344b34491f3aa (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
body {
    background-color: #181a1b;
    color: #ddd;
    font: 1em/1.8 'Open Sans', sans-serif;
    margin: 0 auto;
    max-width: 50em;
    padding: 0em 1em;
}

header {
    margin-top: 1em;
    font-size: 2em;
    color: #888;
}

footer {
    margin-top: 3em;
    margin-bottom: 1.5em;
    text-align: center;
    font-size: 0.95em;
    color: #888;
}

a {
    color: #fda;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    text-decoration-color: #ca8;
}

pre > code {
    display: block;
    padding: 10px 15px;
    white-space: pre-wrap;
    line-height: 1.4em;
}

pre, code {
    font-family: 'Fira Code', monospace;
    font-size: 0.98em;
    color: #ddd;
    background-color: #222;
    border-radius: 5px;
}

code {
    padding: 3px 5px;
    white-space: nowrap;
}

p img, table {
    max-width: 100%;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

blockquote {
    background-color: #222;
    border-left: 5px solid #e6c79a;
    border-radius: 5px;
    margin: 0em 1em;
    padding-left: 1em;
}

.homepage-link { 
    color: rgb(198, 90, 90);
    text-decoration-color: #555;
}