OcttKB/Wiki-OcttKB/plugins/refnotes/$__plugins_kookma_refnotes_styles_footnote-counter.css

16 lines
369 B
CSS

/*automatic counter for fnote macro. The counter resets at the begining of each tiddler*/
.tc-tiddler-frame {
counter-reset: fnote-count;
}
.refnotes-footnote {
counter-increment: fnote-count;
}
.refnotes-footnote:after {
content: counter(fnote-count);
font-size:small;
/* color:#0000ee;*/
vertical-align: super;
line-height: 1.5;
margin-left: -0.1em;
}