-
Notifications
You must be signed in to change notification settings - Fork 10
/
theme.css
127 lines (107 loc) · 2.08 KB
/
theme.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
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
122
123
124
125
126
127
@import url('https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz');
@import url('https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic');
@import url('https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic');
body {
font-family: 'Droid Serif';
}
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
color: #00838F;
}
h1 {
margin-bottom: 0.5em;
}
h2 {
margin-top: 0.5em;
margin-bottom: 0.25em;
}
h3 {
font-style: italic;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
a {
color: #f44336;
text-decoration: none;
}
.inverse {
background-color: #006064;
color: #ECEFF1;
text-shadow: 0 0 8px black;
}
.inverse h1, .inverse h2, .inverse h3 {
color: #ECEFF1;
line-height: 0.8em;
}
.inverse a {
color: #ECEFF1;
text-decoration: none;
font-family: monospace;
}
.bgimg h1, .bgimg h2 {
/* 5 shadows for extra contrast on top of background image */
text-shadow: 0px 0px 2px #111, -2px -2px 4px #111, -2px 2px 4px #111, 2px 2px 4px #111, 2px -2px 4px #111;
}
.bottom-right {
position: absolute;
right: 0px;
bottom: 0px;
}
blockquote {
background: #fdf6e3;
border-left: 0.3em solid #cb4b16;
margin: 0.5em 0.5em;
padding: 0.5em 1.5em;
quotes: "\201C""\201D""\2018""\2019";
font-style: italic;
}
blockquote:before {
color: #cb4b16;
content: open-quote;
font-size: 5em;
line-height: 0.1em;
margin-left: -0.25em;
vertical-align: -0.5em;
}
ol {
counter-reset: li;
padding-left: 18px
}
ol > li {
list-style: none;
}
ol > li:before {
content: counter(li) ".";
counter-increment: li;
display: inline-block;
width: 1.25em;
color: #EF6C00;
font-size: 32px;
font-style: italic;
}
img {
max-width: 100%;
}
.small {
font-size: 0.75em;
}
.small .remark-code {
font-size: 1em;
}
.credit {
font-size: 0.75em;
opacity: 0.75;
position: absolute;
left: 20px;
bottom: 12px;
}
.credit a {
font-family: inherit;
}
.remark-inline-code {
font-family: 'Ubuntu Mono';
font-size: 1.2em;
}