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