-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathslides.css
51 lines (44 loc) · 861 Bytes
/
slides.css
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
.slides {
max-width: unset;
padding: 0;
/* overflow: hidden; */
font-size: clamp(1rem, 2vw, 3.5rem);
}
.slides > main {
display: flex;
overflow: auto;
height: 100vh;
align-items: center;
scroll-snap-type: x mandatory;
}
.slides > main > * {
min-width: 100vw;
text-align: center;
scroll-snap-align: start;
box-sizing: border-box;
padding: var(--spacer-sm) calc((100vw - var(--container-width)) / 2);
overflow: auto;
}
.slides ul:not([role=list]),
.slides ol:not([role=list]) {
max-width: max-content;
margin: auto;
}
.slides ul:not([role=list]),
.slides ol:not([role=list]),
.slides table,
.slides pre {
text-align: left;
}
.slides iframe {
height: min(50vh, 45rem);
}
body:not(.slides) section + section {
margin-top: var(--spacer-md);
}
body:not(.slides) .presentation-only {
display: none;
}
.slides .site-only {
display: none;
}