-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (85 loc) · 1.93 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
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head>
<title>The foodsaving grassroots movement</title>
<meta charset="utf-8">
<link href='fonts.css' rel='stylesheet' type='text/css'>
<style>
body {
font-family: 'Roboto';
}
h1, h2, h3 {
font-family: 'Cabin Sketch';
font-weight: normal;
}
h1, h2, h3, h4, h5 {
color: black;
background-color: #fff;
padding-top: 0;
margin-top: 0;
line-height: 140%;
}
h1 {
color: rgb(207, 141, 42);
border-bottom: 4px solid rgb(207, 141, 42);
}
.remark-slide-content p,
.remark-slide-content ul {
font-size: 30px;
line-height: 42px;
}
.remark-code, .remark-inline-code {
font-family: 'Inconsolata';
}
.grid-container {
display: grid;
grid: 150px / auto auto auto;
grid-gap: 50px;
padding: 10px;
}
.grid-container > div {
text-align: center;
padding: 20px 0;
font-size: 30px;
}
.big ul,
.big blockquote,
.big blockquote p {
font-size: 34px;
line-height: 52px;
}
.attribution {
z-index: 100;
position: absolute;
bottom: 0;
right: 0;
background-color: rgba(255,255,255,0.8);
padding: 5px 10px;
font-size: 60%;
}
@page {
size: 1210px 681px;
margin: 0;
}
@media print {
.remark-slide-scaler {
width: 100% !important;
height: 100% !important;
transform: scale(1) !important;
top: 0 !important;
left: 0 !important;
}
}
</style>
</head>
<body>
<script src="vendor/remark-latest.min.js">
</script>
<script>
var slideshow = remark.create({
ratio: '16:9',
sourceUrl: 'index.md',
});
</script>
</body>
</html>