1/* Wiki-Syntax Styles
2   Author: Florian Purchess
3   ----------------------------------------------------*/
4
5
6/* =HEADLINES
7   ----------------------------------------------------*/
8
9h1, h2, h3, h4, h5 {
10    font-style: normal;
11    font-weight: normal;
12    vertical-align: baseline;
13    text-align: left;
14    text-decoration: none;
15    text-transform: none;
16}
17
18#icke__page .content h1 {
19    font-size: 2em;
20}
21#icke__page .content h2 {
22    font-size: 1.5em;
23}
24#icke__page .content h3 {
25    font-size: 1.45em;
26}
27#icke__page .content h4 {
28    font-size: 1.3em;
29}
30#icke__page .content h5 {
31    font-size: 1.2em;
32    font-style: italic;
33}
34
35#icke__page .content h1,
36#icke__page .content h2,
37#icke__page .content h3,
38#icke__page .content h4,
39#icke__page .content h5 {
40    clear: left;
41    font-weight: bold;
42    margin-bottom: 0.6em;
43    padding: 0.5em 0 0.2em;
44}
45
46#icke__page .content h2 {
47    border-bottom: 1px solid __dark__;
48}
49
50h1 a, h2 a, h3 a, h4 a, h5 a {
51    font-size: 1em;
52    text-decoration: none;
53}
54h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover {
55    text-decoration: none;
56}
57
58#icke__page .content .section_highlight {
59    background-color: __nav_hover__;
60}
61
62#icke__page .content .page > .section_highlight {
63    margin-left: -30px;
64    margin-right: -70px;
65    padding-left: 30px;
66    padding-right: 70px;
67}
68
69#icke__page .content .page > h1.section_highlight,
70#icke__page .content .page > h2.section_highlight,
71#icke__page .content .page > h3.section_highlight,
72#icke__page .content .page > h4.section_highlight,
73#icke__page .content .page > h5.section_highlight,
74#icke__page .content .page > h6.section_highlight {
75    margin-top: 0;
76    margin-bottom: 0;
77    padding-top: 0.5em;
78    padding-bottom: 0.8em;
79}
80
81#icke__page .content .page > h2.section_highlight {
82    border-bottom: 1px solid __nav_hover__;
83}
84
85/* =PARAGRAPHS
86   ----------------------------------------------------*/
87
88/* reset */
89p, b, strong, i, em, strong, b, code, samp, dnf, abbr, acronym, ins, del, big, small, sup, sub {
90    /*line-height: 1em; /* fixes a line-height bug in firefox */
91    font-size: 1em;
92    font-weight: normal;
93    font-style: normal;
94    vertical-align: baseline;
95    text-align: left;
96    text-decoration: none;
97    text-transform: none;
98}
99
100#icke__page .content div.level1,
101#icke__page .content div.level2,
102#icke__page .content div.level3,
103#icke__page .content div.level4,
104#icke__page .content div.level5 {
105    padding-bottom: 1em; /* Leave space for the edit button since it floats into the content */
106}
107
108/* =TEXTLOGIC
109   ----------------------------------------------------*/
110
111b, strong {font-weight: bold;}
112i, em {font-style: italic;}
113code, samp {font-size: 0.9em; }
114dfn {font-size: 1.125em; font-style: italic;}
115abbr {font-size: 0.9em;}
116acronym {border-bottom:1px dotted;}
117ins {text-decoration: underline;}
118del {text-decoration: line-through;}
119big {font-size: 1.2em;}
120small {font-size: 0.7em;}
121sup, sub {font-size: 0.8em;}
122sup {vertical-align: super;}
123sub {vertical-align: sub;}
124
125/* =LISTS
126   ----------------------------------------------------*/
127
128.content ol {list-style-type: decimal;}
129
130.content ul,
131.content ol {
132    line-height: 1.5em;
133    font-size: 1.2em;
134    list-style-image: none;
135    color: __text_alt__;
136
137    margin: 0 0 1.5em 1.5em;
138    padding: 0;
139}
140
141.content li ul,
142.content li ol {
143    font-size: 1em;
144    margin: 0 0 0 1.5em;
145    padding: 0;
146}
147
148div.dokuwiki .li {
149    color: __text__;
150}
151
152
153.content ul{
154    list-style-type: square;
155}
156
157.content ol {
158    list-style-type: decimal;
159}
160
161.content ol ol {
162    list-style-type: upper-roman;
163}
164
165
166dl.file dt a.mediafile {
167        margin-left:2em;
168        background-color:__background__;
169        border-left:1px dashed __border__;
170        border-right:1px dashed __border__;
171        border-top:1px dashed __border__;
172        padding: 3px 5px 3px 23px;
173        background-position:3px 1px;
174        line-height: 14px;
175}
176