blob: b4d331b1f6394933aaeb1beca04e525aaf7b63ee (
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
|
body {
font-family: monospace;
background: #263238;
color: #D0D0D0;
font-size: 16px;
padding: 10px;
}
h1, h2, h3, h4, h5, h6 {
color: #00AFFF;
font-weight: bold;
font-size: 16px;
}
span {
background: #5F5FFF;
color: #FFFF87;
padding: 5px 10px 5px 10px;
border-radius: 5px;
font-weight: bold;
line-height: 30px;
}
h1::before {
content: "# ";
}
h2::before {
content: "## ";
}
h3::before {
content: "### ";
}
h4::before {
content: "#### ";
}
h5::before {
content: "##### ";
}
h6::before {
content: "###### ";
}
strong {
font-weight: bold;
}
a {
color: #00AF5F;
font-weight: bold;
text-decoration: none;
}
a::after {
content: " " attr(href) " ";
color: #008787;
text-decoration: underline;
}
blockquote {
border-left: 2px solid #D0D0D0;
padding-left: 15px;
}
img {
width: 100%;
height: auto;
}
|