(Created page with "→CSS placed here will be applied to all skins: {| align="right" | __TOC__ |}") |
No edit summary |
||
Line 1: | Line 1: | ||
/* | /* Make table of contents always visible to the right, if width is big enough */ | ||
{ | @media screen and (min-width: 800px) { | ||
#toc { | |||
float: right; | |||
/* Additional styling properties can be adjusted here */ | |||
} | |||
} |
Revision as of 01:06, 4 April 2024
/* Make table of contents always visible to the right, if width is big enough */ @media screen and (min-width: 800px) { #toc { float: right; /* Additional styling properties can be adjusted here */ } }