MediaWiki:Vector.css: Difference between revisions

From Galactic Civilizations - Official Wiki
Jump to navigation Jump to search
(Created page with "→‎All CSS here will be loaded for users of the Vector skin: @media (max-width: 768px) { →‎Adjust 768px to whatever your threshold is: #mw-panel { display: none; } }")
 
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 2: Line 2:
@media (max-width: 768px) { /* Adjust 768px to whatever your threshold is */
@media (max-width: 768px) { /* Adjust 768px to whatever your threshold is */
     #mw-panel {
     #mw-panel {
        display: none;
    }
    #column-content { margin: 0 0 1em 0; }
    #content { margin: 0 0 0 0; }
    #p-cactions { left: .1em; }
    #left-navigation { margin-left: 0; }
}
@media (min-width: 769px) {
    #home-tab {
         display: none;
         display: none;
     }
     }
}
}

Latest revision as of 20:00, 4 January 2024

/* All CSS here will be loaded for users of the Vector skin */
@media (max-width: 768px) { /* Adjust 768px to whatever your threshold is */
    #mw-panel {
        display: none;
    }
    #column-content { margin: 0 0 1em 0; }
    #content { margin: 0 0 0 0; }
    #p-cactions { left: .1em; }
    #left-navigation { margin-left: 0; }
}

@media (min-width: 769px) {
    #home-tab {
        display: none;
    }
}