blob: 53e66c7e8ea6a18142d17e320323909bec0f0dee (
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
@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: "* ";
color: #d79921;
}
h2 {
font-size: 12px;
}
h2::before {
content: "** ";
color: #d79921;
}
h3 {
font-size: 12px;
}
h3::before {
content: "*** ";
color: #d79921;
}
li {
padding-left: 18px;
list-style-type: none;
}
li::before {
content: "• ";
}
a {
color: #d65d0e;
text-decoration: none;
}
a:hover {
color: #fe8019;
}
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%;
}
.tag {
color: #689d6a;
}
.tag span::before {
content: "#"
}
|