-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
67 lines (49 loc) · 1.63 KB
/
style.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* CSS overrides */
@media print {
#narrationToggle, .reveal section audio { display: none }
/* Fix bug in reveal.js */
.reveal .slides { transform: none !important }
}
/* Override image margins from global stylesheet */
.reveal section img {
margin: 10px;
}
.reveal section img.noborder {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border: 0;
background: none;
}
/* Lede paragraphs */
.reveal section p {
text-align: left;
}
.reveal section p.centered {
text-align: center;
}
.reveal section.endmatter {
font-size: 61.8%
}
.reveal section .note {
padding-top: 1em; font-size: smaller
}
.reveal section table { border-collapse: collapse }
.reveal table tbody tr:last-child td { border-bottom: 1px solid }
.reveal table tbody tr:first-child td { border-top: 1px solid }
.reveal table tbody tr:last-child th { border-bottom: 1px solid }
.reveal table tbody tr:first-child th { border-top: 1px solid }
.reveal table tbody td, .reveal table thead td, .reveal table tbody th, .reveal table thead th { text-align: center }
.reveal ul.twocolumn { columns: 2; -webkit-columns: 2; -moz-columns: 2;
list-style: none; }
.reveal ul.multicol { columns: 2; -webkit-columns: 2; -moz-columns: 2; }
.reveal ul.multicol li { margin-left: 1em; }
.reveal ul { display: block; }
/* Move audio controls to navigation area. Stolen from
* https://github.com/rajgoel/reveal.js-plugins/
*/
.reveal section audio {
width: 50%; height: 75px; position: fixed; left: 25%; bottom: 4px;
z-index: 33; opacity: 0.75; display: block;
}
.reveal section audio:hover { opacity: 1; }