-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSLIDES.html
65 lines (53 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
* {
margin: 0;
padding: 0;
}
@page {
size: 16cm 9cm;
margin: 0;
}
:root {
--frenchblue: #5252ea;
--frenchwhite: white;
--frenchred: #f16767;
--font: "Minion 3", serif
}
html {
scroll-snap-type: both mandatory;
-moz-user-select: none;
font-family: var(--font);
}
.page {
scroll-snap-align: start;
aspect-ratio: 16 / 9;
width: 16cm;
height: 9cm;
box-shadow: inset 0 0 0 1000px rgb(255 255 255 / 50%);
background: linear-gradient(
90deg,
var(--frenchblue) 0%,
var(--frenchblue) 33.3333%,
var(--frenchwhite) 33.3333%,
var(--frenchwhite) 66.6666%,
var(--frenchred) 66.6666%,
var(--frenchred) 100%
);
}
</style>
<script>
</script>
</head>
<body>
<div class="page">
</div>
<div class="page">
two
</div>
</body>
</html>