-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
74 lines (59 loc) · 1.23 KB
/
style.css
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
body {
width: 800px;
margin: 0px auto;
color: #3E4349;
font: 36px Georgia, serif;
line-height: 140%;
}
pre {
font: 20px Courier, monospace;
color: white;
background-color: #bc1864;
padding: 24px;
}
pre code {
font-weight: normal;
}
code {
white-space: pre;
font-weight: bold;
}
p {
!line-height: 140%;
}
ul, ol { margin: 0em 0; padding: 0 0 0 0px; }
!li { padding: 4px 0 4px 0; }
h1 {
font: 96px Courier, monospace;
text-align: center;
color: #3E4349;
font-weight: bold;
}
h2 {
font: 96px Georgia, serif;
font-style: italic;
text-align: center;
color: #bc1864;
margin-top: -96px;
}
h3 {
font: 36px Georgia, serif;
font-style: italic;
text-align: center;
}
h4 {
font: 36px monospace;
text-align: center;
color: #3E4349;
}
.dashdash:before { content: "--"; }
.dashdash:after { content: "--"; color: white; }
.ellipsis:before { content: "..."; color: white; }
.ellipsis:after { content: "..."; }
.brackets:before { content: "["; }
.brackets:after { content: "]"; }
.angular:before { content: "<"; }
.angular:after { content: ">"; }
.parens:before { content: "("; }
.parens:after { content: ")"; }
.upper { text-transform: uppercase; }