MediaWiki:Vector.css: Difference between revisions
Jump to navigation
Jump to search
(Created page with "→All CSS here will be loaded for users of the Vector skin: body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading { display: none; } body.page-Test_Main.action-view h1.firstHeading, body.page-Test_Main.action-submit h1.firstHeading { display: none; } #p-logo { height: 250px; width: 160px; } #p-logo a { height: 250px; width: 160px; } div#mw-panel { padding-top: 2em; } img { max-width: 100%; height: auto; } @media (ma...") |
No edit summary |
||
Line 1: | Line 1: | ||
/* All CSS here will be loaded for users of the Vector skin */ | /* 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; } | |||
#p- | #content { margin: 0 0 0 0; } | ||
#p-cactions { left: .1em; } | |||
#left-navigation { margin-left: 0; } | |||
} | } | ||
@media ( | @media (min-width: 769px) { | ||
#home-tab { | |||
display: none; | |||
} | |||
} | } |
Latest revision as of 20:36, 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; } }