1/**
2 * This file provides styles for the TOC (table of contents), the
3 * sitemap (?do=index) and backlinks (?do=backlink).
4 */
5
6/* toc
7********************************************************************/
8@font-face {
9	font-family: 'myfont';
10	src: url('font/myfont.eot');
11	src: local('?'), url('font/myfont.woff') format('woff'), url('font/myfont.ttf') format('truetype'), url('font/myfont.svg#webfontEyeFkvc7') format('svg');
12	font-weight: normal;
13	font-style: normal;
14}
15
16/* toc container */
17.dokuwiki div.toc {
18    float: right;
19    margin: 1em 0 1.4em 1.4em;
20    width: 20em;
21}
22
23/*____________ toc header ____________*/
24
25.dokuwiki div.tocheader {
26    padding: 5px 12px;
27    margin-bottom: .2em;
28    font-family: myfont;
29    font-size: 1.5em;
30    font-weight: bold;
31    color: __text__;
32}
33
34/* css arrow
35.dokuwiki .toc span.toc_open,
36.dokuwiki .toc span.toc_close {
37    border: .4em solid;
38    float: right;
39    display: block;
40    margin: 0 .2em 0 0;
41} */
42.dokuwiki .toc span.toc_open span,
43.dokuwiki .toc span.toc_close span {
44    display: none;
45}
46.dokuwiki .toc span.toc_open {
47    margin-top: .4em;
48    border-top: .4em solid __text__;
49}
50.dokuwiki .toc span.toc_close {
51    margin-top: 0;
52    border-bottom: .4em solid __text__;
53}
54
55/*____________ toc list ____________*/
56
57.dokuwiki #toc__inside {
58    padding: 5px 12px;
59    color: __text__;
60}
61.dokuwiki #toc__inside ul {
62    padding: 0;
63    margin: 0;
64}
65.dokuwiki #toc__inside ul li {
66    list-style: none;
67    padding: 0;
68    margin: 0;
69}
70.dokuwiki #toc__inside ul ul {
71    padding-left: 1em;
72}
73.dokuwiki #toc__inside ul ul li {
74}
75.dokuwiki #toc__inside ul li a {
76}
77.dokuwiki #toc__inside ul li a:hover{
78    color: #000;
79}
80
81/* in case of toc list jumping one level
82  (e.g. if heading level 3 follows directly after heading level 1) */
83.dokuwiki #toc__inside ul li.clear {
84}
85
86
87/* sitemap (and backlinkss)
88********************************************************************/
89
90.dokuwiki ul.idx {
91    padding-left: 0;
92}
93.dokuwiki ul.idx li {
94    list-style-image: url(images/bullet.png);
95}
96.dokuwiki ul.idx li.open {
97    list-style-image: url(images/open.png);
98}
99.dokuwiki ul.idx li.closed {
100    list-style-image: url(images/closed.png);
101}
102