MediaWiki:Citizen.css: Difference between revisions
MediaWiki interface page
More actions
No edit summary |
No edit summary |
||
| Line 128: | Line 128: | ||
.skin-citizen .citizen-footer a:hover { | .skin-citizen .citizen-footer a:hover { | ||
color: #ffd37a; | color: #ffd37a; | ||
} | |||
/* Main Page banner swap for Citizen/tablet/mobile. | |||
The no-background banner is used through the tablet range, then the desktop | |||
parchment banner returns at the 900px layout breakpoint. */ | |||
.skin-citizen .page-banner-desktop { | |||
display: block !important; | |||
} | |||
.skin-citizen .page-banner-mobile { | |||
display: none !important; | |||
} | |||
@media (max-width: 899px) { | |||
.skin-citizen .page-banner-desktop { | |||
display: none !important; | |||
} | |||
.skin-citizen .page-banner-mobile { | |||
display: block !important; | |||
} | |||
} | |||
@media (min-width: 900px) { | |||
.skin-citizen .page-banner-desktop { | |||
display: block !important; | |||
} | |||
.skin-citizen .page-banner-mobile { | |||
display: none !important; | |||
} | |||
} | } | ||