mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2025-02-10 16:30:37 +01:00
16 lines
369 B
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;
|
|
}
|