-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (51 loc) · 929 Bytes
/
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
<!DOCTYPE html>
<html data-theme="light">
<head>
<title>Write delightful PRs</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: 50%;
}
.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;
}
}
</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>