-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtoc.css
70 lines (59 loc) · 1.21 KB
/
toc.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
68
69
70
.deck-container .slide_toc {
position: fixed;
bottom: 4px;
left: 4px;
height: 80%;
color: #888;
z-index: 3;
margin: 0;
}
.deck-container .slide_toc .toggle {
position: absolute;
bottom: 0px;
cursor: pointer;
font-size: 80%;
}
.deck-container .slide_toc .table {
font-size: 60%;
display: none;
position: absolute;
width: 20em;
bottom: 1em;
border: 1px solid black;
padding: 4px;
margin: 4px 0 2em;
background: white;
overflow-y: auto;
color: black;
height: 100%;
}
.deck-container .slide_toc .table > h2 {
font-weight: bold;
}
.deck-container .slide_toc .table ul {
padding: 4px 4px 4px 8px;
margin: 4px 0 2em;
overflow-y: auto;
}
.deck-container .slide_toc .table ul > li {
margin-bottom: .25em;
}
.deck-container .slide_toc .table {
margin: 4px 0 2em;
}
.deck-container .slide_toc a {
display: block; /* fill the entire containing li */
padding: .25em;
}
.deck-container .slide_toc a, .deck-container .slide_toc a:visited {
color: black;
text-decoration: none;
}
.deck-container .slide_toc a:hover {
background: #efe0ef;
}
@media print {
.slide_toc {
display: none;
}
}