summaryrefslogtreecommitdiff
path: root/themes/plaintext/static/style.css
blob: e4bdb0898ef7919e115dbb752ab86ba9ad6a9a7e (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
* {
    box-sizing: border-box;
}

body {
    /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
    font-family: courier, monospace;
}

header {
    max-width: 600px;
    margin: 0 auto;
}

hr {
    border-style: dashed;
    margin: 40px 0;
}

pre {
    background: #f5f5f5;
    overflow-x: auto;
    padding: 10px;
    font-size: 14px;
}

p>code,
li>code {
    font-size: 14px;
    font-weight: bold;
}

table,
table tr th,
table tr td {
    border-collapse: collapse;
}

table tr th {
    padding: .2rem .5rem;
    background-color: #f5f5f5;
    border: 1px solid black;
}

table tr td {
    padding: .2rem .5rem;
    border: 1px solid black;
}

.content {
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.post-title a {
    color: inherit;
    text-decoration: none;
}


.article--body {
    line-height: 1.5;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.pagination .page-item {
    display: inline-block;
}

@media (prefers-color-scheme: dark) {
    body {
        background: #212121;
        color: white;
    }

    a {
        color: #69f;
    }

    a:visited {
        color: #96f;
    }
}