MediaWiki:Minerva.css: Difference between revisions
(Columns don't work so well on mobile, pray for good specificity to the benevolent God of CSS.) |
(We're so back.) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* Forked Extension:MobileFrontend so MediaWiki:<skinname>.css works again and because we don't care about WMF's feelings */ | |||
/* Title and branding */ | |||
.minerva-header .branding-box a { | |||
font-family: "GenEi Antique v5"; | |||
font-weight: lighter; | |||
font-size: x-large; | |||
color: #5B1000; | |||
} | |||
/* Columns and mobile don't mix */ | /* Columns and mobile don't mix */ | ||
#main-page-elin>ul { | @media all and (max-width:480px) { | ||
#main-page-elin>ul { | |||
column-count: 1 !important; | |||
} | |||
} | } |
Latest revision as of 20:52, 25 December 2024
/* Forked Extension:MobileFrontend so MediaWiki:<skinname>.css works again and because we don't care about WMF's feelings */
/* Title and branding */
.minerva-header .branding-box a {
font-family: "GenEi Antique v5";
font-weight: lighter;
font-size: x-large;
color: #5B1000;
}
/* Columns and mobile don't mix */
@media all and (max-width:480px) {
#main-page-elin>ul {
column-count: 1 !important;
}
}