1/**
2 * This file provides styles for footnotes.
3 */
4
5/*____________ footnotes inside the text ____________*/
6
7/* link to footnote inside the text */
8.dokuwiki sup a.fn_top {
9    color: #dc3545;
10}
11/* JSpopup */
12div.insitu-footnote {
13    max-width: 40%;
14    min-width: 5em;
15
16    color: #343a40;
17    border: 1px solid transparent;
18    border-color: #6c757d;
19    border-radius: 4px;
20    -webkit-user-select: none;
21    -moz-user-select: none;
22    -ms-user-select: none;
23}
24
25/*____________ footnotes at the bottom of the page ____________*/
26
27.dokuwiki div.footnotes {
28    border-top: 1px solid #343a40;
29    padding: 0.5em 0 0 0;
30    margin: 6em 0 6em 0;
31    clear: both;
32}
33.dokuwiki div.footnotes div.fn {
34    margin: 0px 0px 1em 0px;
35}
36.dokuwiki div.footnotes div.fn div.content {
37    display: inline;
38}
39.dokuwiki div.footnotes div.fn sup a.fn_bot {
40    font-weight: bold;
41    color: #dc3545;
42}
43