-
Notifications
You must be signed in to change notification settings - Fork 1
/
slideshow.html
64 lines (62 loc) · 1.52 KB
/
slideshow.html
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
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<meta charset="utf-8">
<style>
@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);
@import url(https://fonts.googleapis.com/css?family=Abel);
body {
font-family: 'Droid Serif';
}
h1, h2, h3, h4 {
font-family: 'Abel', sans-serif;
font-weight: normal;
}
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
/* Two-column layout */
.left-column {
color: #FF4136;
width: 25%;
height: 92%;
float: left;
}
.left-column h2:last-of-type, .left-column h3:last-child {
color: #FF4136;
}
.right-column {
width: 65%;
float: right;
padding-top: 1em;
}
.right-column-center {
width: 65%;
text-align: center;
float: right;
padding-top: 1em;
}
.title {
color: #000;
background: #FF4136;
}
.title h2 {
color: #fff;
}
</style>
</head>
<body>
<script src="js/remark/remark-2015-09.min.js">
</script>
<script>
var slideshow = remark.create({
sourceUrl: 'assets/markdown/slideshow.md',
ratio: '4:3',
navigation: {
click: true
}
});
</script>
</body>
</html>