-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
78 lines (64 loc) · 1.63 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
<!DOCTYPE html>
<html>
<head>
<title>The Apache Way</title>
<meta charset="utf-8">
<style>
@import url(http://github.com/'https://fonts.googleapis.com/css?family=Open+Sans|Overpass');
body {
font-family: 'Overpass';
color: snow;
background: black;
}
a, a:visited {
color: #666666;
text-decoration: none;
}
/* these get shuffled by css, so the background has to be opaque
or they will all show through each other */
.remark-slides-area, .remark-slide-content {
background: #1a1a18;
}
/* force the border to be invisible since the monitor is the frame */
.remark-slide-scaler {
box-shadow: none;
}
h1, h2, h3 {
font-family: 'Overpass';
font-weight: bold;
font-size: '200%';
}
p {
font-size: 140%;
}
small {
font-size: 50%;
}
/* Ensure certain elements are never larger than the slide itself */
img, video, iframe {
max-width: 100%;
max-height: 100%;
}
/* yellow-on-black terminal code */
pre, code {
padding: 5px;
overflow: auto;
max-height: 900px;
width: 125%;
word-wrap: normal;
background: black;
color: yellow;
}
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
</style>
</head>
<body>
<script src="js/remark-latest.min.js">
</script>
<script>
var slideshow = remark.create({
sourceUrl: 'slides.md'
});
</script>
</body>
</html>