1/* content format */
2
3div.dokuwiki .content {
4    background-color: @ini_content_bg;
5    padding: 10px 70px 20px 30px;
6    font-size: 1.1em; /* Check cryptsign and do inline icons with line height */
7    min-height: 500px;
8    overflow: hidden;
9
10    .page {
11        color: __mediumgray__;
12    }
13
14    p,
15    blockquote,
16    table,
17    pre {
18        font-size: 1.2em;
19        line-height: 1.4em;
20        margin: 0 0 1em;
21    }
22
23    p p,
24    blockquote blockquote,
25    table blockquote,
26    table table,
27    pre pre {
28        font-size: 1em;
29        line-height: 1em;
30    }
31
32    h1 a,
33    h2 a,
34    h3 a,
35    h4 a,
36    h5 a,
37    h6 a {
38        color: __mediumgray__;
39    }
40
41    pre {
42        border: 1px dashed __border__;
43        color: __text__;
44        font-size: 150%;
45        overflow: auto;
46        padding: 0.5em;
47
48        &.file {
49            background-color: __background_alt__;
50        }
51    }
52
53    code,
54    samp {
55        font-size: 1.2em;
56    }
57
58    pre.code {
59        background-color: __background_other__;
60        width: 95%;
61    }
62
63    img.mediaright {
64        padding: 0 0 0.5em 0.3em;
65    }
66
67    img.medialeft {
68        padding: 0.5em 0.3em 0 0;
69    }
70
71    table.inline {
72        width: 100%;
73        margin-bottom: 0;
74    }
75
76    div.table {
77        overflow: auto;
78        margin-bottom: 1em;
79    }
80
81    a {
82        color: __link__;
83    }
84
85    a:visited {
86        color: __link_visited__;
87    }
88
89    blockquote {
90        border-left: 2px solid __border__;
91        padding-left: 3px;
92    }
93
94    sup a {
95        font-size: 9px;
96        padding-left: 2px;
97        text-decoration: none;
98
99        p {
100            font-size: 9px;
101            padding-left: 2px;
102        }
103    }
104
105    div.footnotes {
106        border-top: 1px solid __border__;
107        clear: both;
108        margin-top: 2em;
109        padding-top: 0.5em;
110        padding-left: 1em;
111        font-style: italic;
112        line-height: 1.4em;
113
114        .fn {
115            font-size: 1.32rem;
116            font-style: normal;
117
118            sup a {
119                font-weight: bold;
120                font-size: 1.06rem;
121            }
122
123            .content {
124                display: inline;
125                padding: 0;
126
127            }
128        }
129    }
130}
131