-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
123 lines (122 loc) · 2.82 KB
/
index.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
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
<!DOCTYPE html>
<html>
<head>
<title>Alien Technology</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<style type="text/css">
body { font-family: Georgia; color: #000; }
h1, h2, h3 {
font-family: 'Helvetica Neue', sans-serif;
font-weight: bold;
text-transform: uppercase;
}
h1 {
margin-bottom: 70px;
}
.remark-code, .remark-inline-code { font-family: Monaco, monospace; }
.remark-slide-content {
font-size: 40px;
padding: 1em 2em;
}
li {
margin: 20px 0;
}
#alien-technology-ideas-from-the-clojureverse {
font-family: Georgia, serif;
font-weight: normal;
text-transform: none;
font-size: 70px;
margin-bottom: 35px;
}
#a-breakneck-journey-through-functional-programming-lisp-clojure-script-om-and-react {
font-size: 40px;
text-transform: none;
margin-bottom: 70px;
}
.medium {
font-size: 30px;
}
.with-margin-bottom {
margin-bottom: 20px;
}
.as-sans {
font-family: 'Helvetica Neue', sans-serif;
}
.as-georgia h1, .as-georgia h3 {
font-family: Georgia;
text-transform: none;
}
.short ul {
margin: 0;
font-size: 35px;
}
.short h3 {
margin-bottom: 0;
}
.extra-short ul {
margin: 0;
font-size: 30px;
}
.extra-short h3 {
margin-bottom: 0;
}
.extra-short li {
margin: 10px 0;
}
.with-msmall-margins h1 {
margin-bottom: 30px;
margin-top: 0;
}
.with-small-margins h3 {
margin-top: 0;
margin-bottom: 10px;
}
.with-small-margin-bottom h3 {
margin-bottom: 0;
}
blockquote {
font-size: 33px;
margin-bottom: 100px;
}
.dark {
background-color: #111;
}
.large code {
font-size: 50px;
}
.width-100 img {
width: 100%;
}
.remark-notes {
font-size: 25px;
}
.background-cover.remark-slide-content {
background-size: cover;
}
.background-fit.remark-slide-content {
background-size: auto 100%;
}
.small {
font-size: 25px;
}
.extra-small {
font-size: 16px;
}
.small-image img {
height: 120px;
}
.small-quote {
line-height: 38px;
font-size: 28px;
}
</style>
</head>
<body> <!-- class='remark-presenter-mode'> -->
<script src="remark-latest.min.js" type="text/javascript">
</script>
<script type="text/javascript">
var slideshow = remark.create({
sourceUrl: '9e-presentation.mdown'});
</script>
</body>
</html>