-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
49 lines (41 loc) · 867 Bytes
/
styles.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
@import url('https://fonts.googleapis.com/css?family=Fira+Sans');
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');
body {
font-family: 'Fira Sans';
}
.remark-code, .remark-inline-code {
font-family: 'Source Code Pro';
}
blockquote {
background: #f9f9f9;
border-left: 10px solid #ccc;
margin: 1.5em 10px;
padding: 0.5em 10px;
}
blockquote:before {
color: #ccc;
font-size: 4em;
line-height: 0.1em;
margin-right: 0.25em;
vertical-align: -0.4em;
}
blockquote p {
display: inline;
}
table {
border: solid 1px #333;
border-spacing: 0;
border-collapse: collapse;
text-align: center;
}
table thead th {
background-color: #ccc;
border: solid 1px #ccc;
color: #333;
padding: 10px;
}
table tbody td {
border: solid 1px #ccc;
color: #333;
padding: 10px;
}