-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
112 lines (92 loc) · 1.6 KB
/
index.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
@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 {
background: #444;
font-family: 'Droid Serif';
}
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
}
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
.remark-slide-content {
background: #333;
color: white;
}
a {
color: #ccc;
text-decoration: none;
}
.left-column {
color: #ccc;
width: 20%;
height: 92%;
float: left;
}
.left-column strong {
color: #eee;
}
.signature {
position: absolute;
bottom: 15px;
left: 20px;
}
img {
background-size: cover;
max-width: 100%;
}
.right-column {
width: 75%;
float: right;
padding-top: 1em;
}
.caveat {
font-size: 16px;
position: absolute;
bottom: 60px;
left: 40px;
}
.image-credits {
font-size: 10px;
position: absolute;
bottom: 40px;
right: 20px;
}
.image-credits::before {
font-size: 10px;
content: 'Image Credits: ';
}
.content-credits {
font-size: 10px;
position: absolute;
bottom: 55px;
right: 20px;
}
.content-credits::before {
font-size: 10px;
content: 'Content Credits: ';
}
body.light {
background: #333;
}
body.light .remark-slide-content {
background: white;
color: #333;
}
body.light a {
color: #888;
}
body.light .left-column {
color: #888;
}
body.light .left-column strong {
color: #444;
}
code {
display: inline-block !important;
text-align: left;
}
table td, th {
border: solid 1px lightgrey;
}