1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
|
div.content div.markdown > ol.footnotes > li > .footnote-backrefs {
margin-right: 0.5em;
font-weight: bold;
}
div.markdown > ol.footnotes > li > .footnote-backrefs > a:target {
background: gold;
}
div.markdown a.noteref:target > sup {
background: gold;
}
div.markdown span.notescope:target {
border-bottom: 2px solid gold;
}
div.markdown span.notescope:target > a.noteref > sup {
background: gold;
}
/* Objects in the "desktoponly" class are invisible on mobile */
@media screen and (max-width: 600px) {
.desktoponly {
display: none;
|
|
>
>
|
|
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
|
div.content div.markdown > ol.footnotes > li > .footnote-backrefs {
margin-right: 0.5em;
font-weight: bold;
}
div.markdown > ol.footnotes > li > .footnote-backrefs > a:target {
background: gold;
}
div.markdown sup > a.noteref:target {
background: gold;
}
div.markdown span.notescope:hover,
div.markdown span.notescope:target {
border-bottom: 2px solid gold;
}
div.markdown span.notescope:hover > sup > a.noteref,
div.markdown span.notescope:target > sup > a.noteref {
background: gold;
}
/* Objects in the "desktoponly" class are invisible on mobile */
@media screen and (max-width: 600px) {
.desktoponly {
display: none;
|