×
Create a new article
Write your page title here:
We currently have 23 articles on Tophiachu Wiki. Type your article name above or click on one of the titles below and start writing!



Tophiachu Wiki
23Articles

MediaWiki:Common.css: Difference between revisions

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

Revision as of 02: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 */
    }
}