-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (75 loc) · 1.91 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
<!DOCTYPE html>
<html>
<head>
<title>Brian Chirls - MIT "Virtually There" 2016</title>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE-edge"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
<style type="text/css">
@import url(//fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
@import url(//fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
@import url(//fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
body {
font-family: 'Droid Serif';
text-shadow: 0 0 20px #333;
}
.remark-slide-content {
background-color: #272822;
color: #cccccc;
}
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
color: #f3f3f3;
line-height: 0.8em;
}
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
div.remark-slide-content > ul > li {
font-size: 2em;
margin: 0.3em 0;
}
div.remark-slide-content > ul > li > ul > li {
font-size: 0.7em;
}
.smaller > ul {
font-size: 0.7em;
}
a, a:visited {
color: #d7d7d7;
}
</style>
</head>
<body>
<script src="//gnab.github.io/remark/downloads/remark-latest.min.js"></script>
<!--
<script>
if (!window.remark) {
document.write('<script ' + 'src="js/remark-latest.min.js"><' + '/script>');
}
</script>
-->
<script>
var slideshow = remark.create({
ratio: '16:9',
sourceUrl: 'prez.md'
});
var fsNames = [
'requestFullscreen',
'mozRequestFullScreen',
'msRequestFullscreen',
'webkitRequestFullscreen'
];
function fs() {
var i;
for (i = 0; i < fsNames.length; i++) {
if (document.body[fsNames[i]]) {
document.body[fsNames[i]]();
return;
}
}
}
document.body.addEventListener('dblclick', fs, false);
</script>
</body>
</html>