blob: e1969ec91549d2ca3fe5bf710adde8d288690ffd (
plain)
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
|
.markdown-body.slides {
position: relative;
z-index: 1;
color: #222;
}
.markdown-body.slides::before {
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
background-color: currentColor;
box-shadow: 0 0 0 50vw;
}
.markdown-body.slides section[data-markdown] {
position: relative;
margin-bottom: 1.5em;
background-color: #fff;
text-align: center;
}
.markdown-body.slides section[data-markdown]::before {
content: '';
display: block;
padding-bottom: 56.23%;
}
.markdown-body.slides section[data-markdown] div:first-child {
position: absolute;
top: 50%;
left: 1em;
right: 1em;
transform: translateY(-50%);
max-height: 100%;
overflow: hidden;
}
.markdown-body.slides section[data-markdown] ul {
display: inline-block;
}
.markdown-body.slides > section > section + section::after {
content: '';
position: absolute;
top: -1.5em;
right: 1em;
height: 1.5em;
border: 3px solid #777;
}
|