-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.tableOfContents.css
More file actions
89 lines (78 loc) · 1.28 KB
/
style.tableOfContents.css
File metadata and controls
89 lines (78 loc) · 1.28 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#toc-bar{
min-height: 50px;
background-color: #333;
position: fixed;
top: 0;
width: 100%;
z-index: 5;
box-shadow: 0px 10px 100px #999;
font-size: 90%;
}
.tocshell{
padding: 5px 10px;
color: CadetBlue;
}
.tocshell a, #toc-full a{
color: #93C5C7;
text-decoration: none;
border-bottom: 1px dotted CadetBlue;
}
.tocshell .tocbutton{
width: 35px;
height: 35px;
float: left;
margin-top: 5px;
margin-right: 10px;
cursor: pointer;
font-size: 130%;
line-height: 1em;
padding: 3px;
}
.tocshell .tocbutton:hover{
background-color: #444;
}
#toc-full{
height: 70%;
overflow-y: scroll;
color: white;
background-color: #222;
position: fixed;
top: 50px;
width: 100%;
z-index: 10;
box-shadow: 0px 10px 100px #999;
display: none;
}
#toc-full ul{
padding-top: 200px;
padding-bottom: 200px;
}
#toc-full li{
list-style-type: none;
}
.toc-entry{
display: block;
}
.toc-entry a{
text-decoration: none;
border-bottom: 1px dotted CadetBlue;
}
.toc-depth-1{
}
.toc-depth-2{
margin-top:30px;
}
.toc-depth-3{
margin-left: 25px;
}
.toc-depth-4{
margin-left: 50px;
}
.toc-depth-5{
margin-left: 75px;
}
.toc-depth-6{
margin-left: 100px;
}
.toc-depth-7{
}