-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomized.css
248 lines (215 loc) · 4.29 KB
/
customized.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
/*Quicksand?*/
@import url(https://fonts.googleapis.com/css?family=Merriweather:400,700,400italic,700italic);
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
font-family: "Merriweather", Impact, sans-serif;
text-transform: none;
}
.reveal .has-shadow {
text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15);
}
table.authors-contact td {
text-align: center;
}
table.authors-contact tr.smaller td {
font-size: 75%;
}
table.authors-contact td img {
margin: 0;
width: 3em;
height: 3em;
max-width: none;
max-height: none;
}
span.ok,
span.nope {
font-weight: bold;
display: inline-block;
position: absolute;
right: 0;
text-shadow: 0 0 7px #ccc;
}
span.ok {
color: darkgreen;
}
span.nope {
font-weight: bold;
color: darkred;
}
.reveal section .force-natural-case {
text-transform: none;
}
.reveal section img.plain {
background: none;
border-width: 0;
box-shadow: none;
}
.reveal section h1 img.plain,
.reveal section h2 img.plain,
.reveal section h3 img.plain,
.reveal section h4 img.plain,
.reveal section h5 img.plain,
.reveal section h6 img.plain {
margin: 0;
}
@media all {
.print-only {
display: none;
}
.no-print {
display: inherit;
}
}
@media print {
.print-only {
display: inherit !important;
}
.no-print {
display: none;
}
}
.reveal section img.contrast {
background-color: #fff;
border: 10px solid #fff;
box-shadow: 0 0 10px 10px #fff;
border-radius: 5px;
}
.reveal section img.contrast-black {
background-color: #000;
border: 10px solid #000;
box-shadow: 0 0 10px 10px #000;
border-radius: 5px;
}
.reveal section p.subtle {
margin-top: 5em;
}
.reveal section p.subtle a {
font-size: smaller;
}
.reveal section div.split-info {
margin: 5px;
clear: both;
}
.reveal section div.part {
margin: 5px;
float: left;
width: 48.9%;
}
.reveal section div.part .enumeration {
text-align: left;
}
.reveal section a.twitter,
.reveal section a.github,
.reveal section a.email {
display: inline;
padding-left: 1.2em;
background-repeat: no-repeat;
background-position: left bottom;
background-size: 1.0em;
}
.reveal section a.github {
background-image: url("img/github-logo.png");
}
.reveal section a.twitter {
background-image: url("img/twitter-logo.png");
}
.reveal section a.email {
background-image: url("img/mail-logo.png");
}
.reveal section .highlight {
text-shadow: 0 0 20px red;
}
.reveal section .unhighlight {
opacity: 0.7;
}
.reveal section .force-lowercase {
text-transform:lowercase;
}
.reveal code.small {
font-size: 0.8em;
line-height: 1.2em;
}
.reveal section #books div {
float: left;
width: 33%
}
.reveal section .sidecontent {
float: left;
width: 65%
}
.reveal section .sideadditional {
float: right;
width: 25%
}
.reveal section div.meta {
font-style: italic;
font-size: 0.4em;
padding-top: 2em;
clear: both;
text-align: right;
}
.reveal section.author ul {
/*max-width: 70%;*/
}
.reveal section blockquote footer {
font-size: 0.7em;
text-align: right;
}
.reveal section blockquote:before {
display: block;
content: "\201C";
font-size: 80px;
position: absolute;
left: -5px;
top: -25px;
color: #7a7a7a;
}
.reveal section blockquote {
box-shadow: none;
padding: 0.5em 1em;
}
.hype {
animation: roll 5s infinite, super-rainbow 4s infinite;
}
@keyframes roll {
0% {
transform: rotate(0) rotateY(0);
}
100% {
transform: rotate(360deg) rotateY(-360deg);
}
}
@keyframes super-rainbow {
0% { color: red; }
20% { color: orange; }
40% { color: green; }
60% { color: blue ; }
80% { color: indigo; }
100% { color: violet; }
}
.reveal section .detail {
font-size: 0.7em;
}
.reveal section h1 code,
.reveal section h2 code,
.reveal section h3 code,
.reveal section h4 code,
.reveal section h5 code,
.reveal section h6 code {
font-family: "Inconsolata", monospace;
font-weight: bold;
}
.reveal section li code,
.reveal section p code {
font-family: "Inconsolata", monospace;
font-weight: bold;
color: #333;
margin: inherit 0.2em;
}
.reveal section pre code {
font-weight: normal;
}