aboutsummaryrefslogtreecommitdiff
path: root/dst/styles/style.css
blob: df4bbe2ca3035b895451647ea44287d75015587e (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
html {
    background-color: #181a1b;
    margin: 1em auto;
    max-width: 52em;
}
body {
    color: #ddd;
    font: 1.0em/1.5 'Open Sans', sans-serif;
    -webkit-text-size-adjust: 100%;
    scrollbar-color: #454a4d #202324;
    margin: 0em 1em;
}


h1 {
    margin-top: 0.5em;
    font-size: 2em;
}


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


pre, code {
    font: 1.1em/1.5 monospace;
}
pre {
    overflow-x: auto;
    padding: .5em 1em;
    background-color: #222;
}
code {
    white-space: pre;
    color: rgb(251, 252, 189);
}
pre code {
    color: #ddd;
}


p img, table {
    max-width: 100%;
}
img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


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


.header {
    font-size: 2em;
    margin-top: 1.5em;
    margin-bottom: 2em;
}
.footer {
    margin-top: 2em;
    margin-bottom: 4em;
}
.note {
    margin: 0;
}
.header, .footer, .note, .note a {
    color: #888;
}
.header a, .footer a {
    color: rgb(198, 90, 90);
    text-decoration-color: #555;
}


/* .button {
    display: inline-block;
    border-color: #fda;
    padding: 0.5em 1em;
    text-decoration: none;
} */