mediawiki-skins-Citizen/resources/skins.citizen.styles/components/Wordmark.less
alistair3149 5d3ecd9edd
feat(core): convert some CSS variables into Codex equivalent
This is an on-going work to adapt Codex into Citizen.
Some of the CSS variables are soft depreciated, see tokens.less for updated info.
2024-06-30 01:04:30 -04:00

26 lines
449 B
Plaintext

.mw-logo-wordmark {
font-size: 1.25rem;
font-weight: var( --font-weight-semibold );
line-height: 1;
color: var( --color-emphasized );
img& {
width: 100%;
height: 1rem;
margin: 0.125rem 0;
object-fit: contain;
object-position: left center;
filter: var( --filter-invert );
}
@media ( min-width: @min-width-breakpoint-tablet ) {
font-size: 2rem;
white-space: nowrap;
img& {
height: 1.5rem;
margin: 0.25rem 0;
}
}
}