generated from LBognanni/markdown-presentation-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (69 loc) · 1.43 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
<!DOCTYPE html>
<html data-theme="light">
<head>
<title>I wrote dockerfiles for a week. This is what I learned</title>
<meta charset="utf-8">
<link
rel="stylesheet"
href="pico.min.css"
>
<style>
.bottom-notes {
position: absolute;
bottom: 2em;
right: 1em;
display: flex;
align-items: center;
}
img {
float: right;
max-width: 40%;
}
.bottom-notes img {
float: none;
}
.title {
background-color: white;
position: absolute;
bottom: 0;
left: 0;
right: 0;
& p{
font-size: 80%;
color: gray;
padding: 0.5ex;
margin: 0;
}
}
.remark-slide-content p,
.remark-slide-content li,
.remark-slide-content h4 {
font-size: 20pt;
}
.remark-slide-content .title p{
font-size: 90%;
}
.remark-slide-content.middle {
background-color: rgba(255, 255, 255, 0.5);
}
.remark-slide:has(.middle) {
background-color: white;
background-image: url(Docker_logo.png);
background-size: 50%;
background-position: 103% 140%;
background-repeat: no-repeat;
}
</style>
</head>
<body>
<script src="remark-latest.min.js">
</script>
<script>
var slideshow = remark.create({
sourceUrl: './text.md',
highlightStyle: 'monokai',
highlightLines: true
});
</script>
</body>
</html>