org-theme/scss/partials/_footnotes.scss

47 lines
850 B
SCSS
Raw Normal View History

2020-11-26 13:40:49 +01:00
// Links to Footnotes
sup{
2020-11-26 15:59:02 +01:00
a.footref, a.footnum{
color: #2980b9;
font-size: 12px;
2020-11-27 15:16:19 +01:00
font-family: $sans-serif;
2020-11-26 13:40:49 +01:00
2020-11-26 15:59:02 +01:00
&:before{ content:"["; }
&:after{ content:"]"; }
2020-11-26 13:40:49 +01:00
2020-11-26 15:59:02 +01:00
&:visited {
color: #2980b9;
}
}
2020-11-26 13:40:49 +01:00
}
// Footer
#footnotes{
// Individual Foot Div
div.footdef {
display: flex;
// Foot Number
sup {
line-height: 1;
padding: 8px;
top: 0;
}
// Foot Text Div
div.footpara {
margin: 0;
padding: 0;
// Foot Text
p {
color: #999;
font-size: 90%;
2020-11-27 15:16:19 +01:00
font-family: $sans-serif;
2020-11-26 13:40:49 +01:00
padding: 8px;
line-height: 1.25em;
margin: 0;
}
}
}
}