forked from linux-kernel-labs/linux-kernel-labs.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconsole.css
More file actions
64 lines (53 loc) · 1.1 KB
/
Copy pathconsole.css
File metadata and controls
64 lines (53 loc) · 1.1 KB
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
#controls {
text-align: center;
width: 100%;
margin: 10px;
font-size: 1.5em;
font-family: sans-serif;
}
.slides.table > article {
display: inline-block;
}
article.placeholder {
background: #ddd;
}
.slides.table > article {
position: absolute;
left: 50%;
margin-left: -225px;
}
.slides.table > article.past {
transform: translate(-325px);
-o-transform: translate(-325px);
-moz-transform: translate(-325px);
-webkit-transform: translate3d(-325px, 0, 0);
}
.slides.table > article.next {
transform: translate(475px);
-o-transform: translate(475px);
-moz-transform: translate(475px);
-webkit-transform: translate3d(475px, 0, 0);
}
.slides > article.past,
.slides > article.next {
height: 230px;
width: 300px;
margin-top: 60px;
}
div.presenter_notes {
position: absolute;
top: 420px;
left: 10%;
background-color: white;
color: black;
padding: 1em;
width: 80%;
font-size: 130%;
border-radius: 10px;
-o-border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}
div.presenter_notes p.admonition-title {
display: none;
}