custom.css
... ...
@@ -1,6 +1,33 @@
1
+@font-face {
2
+ font-family: 'goudy_bookletter_1911regular';
3
+ src: url('fonts/goudy_bookletter_1911-webfont.eot');
4
+ src: url('fonts/goudy_bookletter_1911-webfont.eot?#iefix') format('embedded-opentype'),
5
+ url('fonts/goudy_bookletter_1911-webfont.woff') format('woff'),
6
+ url('fonts/goudy_bookletter_1911-webfont.ttf') format('truetype'),
7
+ url('fonts/goudy_bookletter_1911-webfont.svg#goudy_bookletter_1911regular') format('svg');
8
+ font-weight: normal;
9
+ font-style: normal;
10
+}
11
+@font-face {
12
+ font-family: 'envy';
13
+ src: url('fonts/envy_code_r.eot');
14
+ src: url('fonts/envy_code_r.eot?#iefix') format('embedded-opentype'),
15
+ url('fonts/envy_code_r.woff2') format('woff2'),
16
+ url('fonts/envy_code_r.woff') format('woff'),
17
+ url('fonts/envy_code_r.ttf') format('truetype'),
18
+ url('fonts/envy_code_r.svg') format('svg');
19
+ font-weight: normal;
20
+ font-style: normal;
21
+}
1 22
body {
2 23
background: #111111;
3 24
color: #abc0c5;
25
+ font-family: 'goudy_bookletter_1911regular';
26
+ font-size: 16px;
27
+ letter-spacing: .3px;
28
+}
29
+#head {
30
+ border-bottom: none;
4 31
}
5 32
h1,
6 33
h2,
... ...
@@ -8,25 +35,62 @@ h3,
8 35
h4 {
9 36
color: #5a7588;
10 37
}
11
-a {
38
+.markdown-body h2 {
39
+ color: #5a7588;
40
+ border-bottom: none;
41
+}
42
+a,
43
+a:link,
44
+a:visited {
12 45
color: #776e89;
13 46
}
47
+a:active,
14 48
a:hover,
15 49
a:focus {
16 50
color: #a29076;
17 51
text-decoration: none;
18 52
}
19
-code {
53
+.markdown-body code {
20 54
background-color: #222222;
21 55
color: #5c8676;
56
+ font-family: 'envy';
57
+ font-size: 14px;
22 58
padding: 5px 4px 2px 4px;
59
+ border-radius: 0px;
60
+ border-color: #222222;
23 61
}
24
-pre {
62
+.markdown-body pre {
25 63
background: #111111;
26 64
color: #4f8396;
65
+ font-family: 'envy';
27 66
border-radius: 0px;
28 67
border-color: #444444;
29 68
border-width: 1px;
30 69
border-style: none;
31 70
border-left-style: solid;
32 71
}
72
+.markdown-body pre code {
73
+ color: #4f8396;
74
+ font-family: 'envy';
75
+}
76
+.highlight .nt {
77
+ color: #4f8396;
78
+}
79
+.minibutton a {
80
+ background: #111111;
81
+ color: #abc0c5;
82
+ border: none;
83
+ text-shadow: none;
84
+ text-transform: lowercase;
85
+}
86
+.minibutton a:active,
87
+.minibutton a:hover,
88
+.minibutton a:focus {
89
+ background: #111111;
90
+ color: #a29076;
91
+ border: none;
92
+ text-shadow: none;
93
+}
94
+.page #footer {
95
+ border-top: none;
96
+}