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} 10/* JSpopup */ 11div.insitu-footnote { 12 max-width: 40%; 13 min-width: 5em; 14} 15 16/*____________ footnotes at the bottom of the page ____________*/ 17 18.dokuwiki div.footnotes { 19 border-top: 1px solid @ini_border; 20 padding: .5em 0 0 0; 21 margin: 1em 0 0 0; 22 clear: both; 23} 24.dokuwiki div.footnotes div.fn { 25} 26.dokuwiki div.footnotes div.fn div.content { 27 display: inline; 28 font-style: italic; 29 color: var(--color-dark-2); 30} 31.dokuwiki div.footnotes div.fn sup a.fn_bot { 32 font-weight: bold; 33} 34