Style changes for the Use cases.
[yaffs-website] / web / libraries / jquery.tocify.js-master / src / stylesheets / jquery.tocify.css
1 /*
2  * jquery.tocify.css 1.9.0
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     webkit-border-radius: 6px;
15     moz-border-radius: 6px;
16     border-radius: 6px;
17 }
18
19 /* 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. */
20 .tocify ul, .tocify li {
21     list-style: none;
22     margin: 0;
23     padding: 0;
24     border: none;
25     line-height: 30px;
26 }
27
28 /* Top level header elements */
29 .tocify-header {
30     text-indent: 10px;
31 }
32
33 /* Top level subheader elements.  These are the first nested items underneath a header element. */
34 .tocify-subheader {
35     text-indent: 20px;
36     display: none;
37 }
38
39 /* Makes the font smaller for all subheader elements. */
40 .tocify-subheader li {
41     font-size: 12px;
42 }
43
44 /* Further indents second level subheader elements. */
45 .tocify-subheader .tocify-subheader {
46     text-indent: 30px;
47 }
48
49 /* Further indents third level subheader elements. You can continue this pattern if you have more nested elements. */
50 .tocify-subheader .tocify-subheader .tocify-subheader {
51     text-indent: 40px;
52 }
53
54 /* Twitter Bootstrap Override Style */
55 .nav-list > li > a, .nav-list .nav-header {
56     margin: 0px;
57 }
58
59 /* Twitter Bootstrap Override Style */
60 .nav-list > li > a {
61     padding: 5px;
62 }