summaryrefslogtreecommitdiffstats
path: root/content/assets/styles.css
blob: 62e5edfd09868ee4f086a3a4268ed30bcbf79aac (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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
@font-face {
    font-family: Fairfax;
    src: url('./assets/fonts/Fairfax.ttf');
}

* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #282828;
    color: #ebdbb2;
    font-family: Fairfax, monospace;
    font-size: 12px;
}

.content {
    background-color: #3c3836;
    padding: 9px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8px;
    margin-bottom: 8px;
    max-width: 480px;
}

h1, h2, h3 {
    margin-top: 12px;
    weight: bold;
}

h1 {
    font-size: 24px;
}
h1::before {
    content: "* ";
}

h2 {
    font-size: 12px;
}
h2::before {
    content: "** ";
}

h3 {
    font-size: 12px;
}

h3::before {
    content: "*** ";
}

li {
    padding-left: 18px;
    list-style-type: none;
}

li::before {
    content: "• ";
}

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

p::before {
    content: "¶ ";
    font-weight: bold;
}

#thin-badges {
    display: inline-block;
    position: fixed;
    left: 8px;
    bottom: 8px;
}

#thin-badges img {
    display: block;
}

hr {
    border: 1px solid #ebdbb2;
    margin-top: 2px;
    margin-bottom: 2px;
}

.underline {
    text-decoration: underline;
}

#avatar {
    float: right;
    width: 25%;
    margin-left: 4px;
}

#ads {
    border: none;
    width: 722px;
    height: 98px;
    max-width: 100%;
}