MediaWiki:Common.css: Difference between revisions
Scooted desktop wordmark to the left 3px. |
Header is left-aligned in desktop |
||
| (4 intermediate revisions by the same user not shown) | |||
| Line 14: | Line 14: | ||
/* Logo tweaks */ | /* Logo tweaks */ | ||
body.skin-vector-2022 .mw-logo-icon { | body.skin-vector-2022 .mw-logo-icon { | ||
margin-right: | margin-right: 6px; | ||
} | } | ||
| Line 233: | Line 233: | ||
.mw-parser-output figure[typeof='mw:File'] img { | .mw-parser-output figure[typeof='mw:File'] img { | ||
background-color: transparent; | background-color: transparent; | ||
} | |||
/* Turn the brightness to 10 for pictures in dark mode */ | |||
html.skin-theme-clientpref-night .mw-parser-output > figure[typeof='mw:File/Thumb'] img { | |||
filter: brightness(1); | |||
} | |||
/* Remove filter on bottom logo in mobile dark mode */ | |||
html.skin-theme-clientpref-night .minerva-footer-logo > img { | |||
filter: unset; | |||
} | } | ||
| Line 515: | Line 525: | ||
} | } | ||
/* Lastest Big Ideas Tweaks */ | |||
@media (max-width: 639px) { | |||
/* Center and bold Latest Big Ideas text */ | |||
.gallery .gallerybox { | |||
text-align: center; | |||
font-weight: bold; | |||
} | |||
} | |||
@media (min-width: 640px) { | |||
/* Header is left-aligned in desktop */ | |||
li.gallerycaption { | |||
text-align: unset; | |||
} | |||
} | |||
/* Light/dark mode | /* Light/dark mode | ||