a b/docs/site_libs/tocify-1.9.1/jquery.tocify.css
1
/*
2
 * jquery.tocify.css 1.9.1
3
 * Author: @gregfranko
4
 */
5
6
/* The Table of Contents container element */
7
.tocify {
8
    width: 20%;
9
    max-height: 90%;
10
    overflow: auto;
11
    margin-left: 2%;
12
    position: fixed;
13
    border: 1px solid #ccc;
14
    border-radius: 6px;
15
}
16
17
/* The Table of Contents is composed of multiple nested unordered lists.  These styles remove the default styling of an unordered list because it is ugly. */
18
.tocify ul, .tocify li {
19
    list-style: none;
20
    margin: 0;
21
    padding: 0;
22
    border: none;
23
    line-height: 30px;
24
}
25
26
/* Top level header elements */
27
.tocify-header {
28
    text-indent: 10px;
29
}
30
31
/* Top level subheader elements.  These are the first nested items underneath a header element. */
32
.tocify-subheader {
33
    text-indent: 20px;
34
    display: none;
35
}
36
37
/* Makes the font smaller for all subheader elements. */
38
.tocify-subheader li {
39
    font-size: 12px;
40
}
41
42
/* Further indents second level subheader elements. */
43
.tocify-subheader .tocify-subheader {
44
    text-indent: 30px;
45
}
46
.tocify-subheader .tocify-subheader .tocify-subheader {
47
    text-indent: 40px;
48
}
49
.tocify-subheader .tocify-subheader .tocify-subheader .tocify-subheader {
50
    text-indent: 50px;
51
}
52
.tocify-subheader .tocify-subheader .tocify-subheader .tocify-subheader .tocify-subheader {
53
    text-indent: 60px;
54
}
55
56
/* Twitter Bootstrap Override Style */
57
.tocify .tocify-item > a, .tocify .nav-list .nav-header {
58
    margin: 0px;
59
}
60
61
/* Twitter Bootstrap Override Styles */
62
.tocify .tocify-item a, .tocify .list-group-item {
63
    padding: 5px;
64
}
65
66
.tocify .nav-pills > li {
67
    float: none;
68
}
69
70
/* We don't override the bootstrap colors because this gives us the
71
   wrong selection colors when using bootstrap themes
72
73
.tocify .list-group-item:hover, .tocify .list-group-item:focus {
74
    background-color: #f5f5f5;
75
}
76
77
.tocify .list-group-item.active:hover, .tocify .list-group-item.active:focus {
78
    background-color: #428bca;
79
}
80
*/
81
82
 /* End Twitter Bootstrap Override Styles */