-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslides.html
97 lines (95 loc) · 3.38 KB
/
slides.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
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Ubuntu:300,400,700" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.6.0/css/reveal.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.6.0/css/theme/white.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/github.min.css">
<style>
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
font-family: "Ubuntu";
font-weight: 300;
line-height: 1.2;
letter-spacing: normal;
text-transform: none;
}
.pdf-page:after,
.reveal:after {
background-image: url(./Amazon_Web_Services_Logo.svg);
background-size: 100px;
display: inline-block;
background-repeat: no-repeat;
width: 100px;
height: 100px;
content:"";
position: absolute;
bottom: 0.5em;
left: 50px;
box-shadow: 5px 5px 10px #000;
border: 0px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
z-index: 9999999;
}
.reveal code {
background: #efefef;
}
.reveal .progress {
background: rgba(0, 0, 0, 0.2);
color: #CB4A3E;
}
.reveal .controls {
color: #CB4A3E;
}
.whiter, .whiter > h1, .whiter > h2, .whiter > h3 {
color: #fff;
}
#confidential {
font-size: 14px;
background-size: 100px;
display: inline-block;
width: 200px;
height: 100px;
content:"";
position: absolute;
bottom: -0.7em;
left:200px;
}
</style>
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown="slides.md">
</section>
</div>
<div id="confidential">
Amazon Confidential
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.6.0/js/reveal.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.6.0/plugin/highlight/highlight.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/dockerfile.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/yaml.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.6.0/plugin/markdown/marked.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.6.0/plugin/markdown/markdown.min.js"></script>
<script>
Reveal.initialize({
progress: true,
slideNumber: true
});
</script>
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.6.0/css/print/pdf.min.css' : '';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</body>
</html>