1html, body {
2    color: @ini_text;
3    background-color: @ini_background;
4    font-family: sans-serif;
5    font-weight: normal;
6    line-height: 1.5;
7}
8
9a {
10    color: @ini_text;
11    text-decoration: none;
12    border: none;
13
14    &:hover {
15        color: @ini_highlight;
16    }
17}
18
19img, object, embed, iframe, video, audio {
20    max-width: 100%;
21}
22
23// dokuwiki default style overrides
24.dokuwiki {
25    // no fixed fieldset width
26    fieldset {
27        width: auto;
28    }
29
30    // don't highlight current ids
31    span.curid a {
32        font-weight: inherit;
33    }
34
35    // secedit button adjusted for our margins
36    .secedit button {
37        margin-top: 1rem;
38    }
39
40    // sitemap fix
41    ul.idx {
42        padding-left: 1rem;
43    }
44
45    // namespace tree (ugly)
46    #media__tree ul.idx li img {
47        width: 12px;
48        height: 12px;
49        cursor: pointer;
50    }
51
52    // tabs
53    .tabs > ul,
54    ul.tabs {
55        a {
56            text-decoration: none !important;
57        }
58    }
59}
60
61