1/**
2 * This file provides the design styles for the footnotes.
3 */
4
5/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
6/* footnotes section  */
7.dokuwiki div.footnotes {
8  div.fn {
9    margin-bottom: .2rem;
10    display: table;
11    vertical-align: top;
12
13    > sup,
14    .content {
15      display: table-cell;
16    }
17
18    > sup {
19      vertical-align: top;
20
21      // footnote anchor
22      a.fn_bot {
23        font-size: .86em;
24        padding-right: .2em;
25      }
26    }
27
28    .content {
29      vertical-align: top;
30      line-height: 135%;
31    }
32
33    // footnote text
34    div.content {
35      line-height: 135%;
36    }
37  }
38}
39
40/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
41/* footnotes in content  */
42.main-content sup,
43.main-content > div > p sup,
44.main-content > div > ul > li .li sup {
45  a.fn_top {
46    font-size: .7rem;
47    font-weight: bold;
48    padding-right: .2em;
49  }
50}
51
52.insitu-footnote {
53  line-height: 130%;
54  z-index: 100;
55}
56