mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-25 06:47:16 +00:00
5ccfbcfdeb
This is a part of the site header refactor * Use relative units * Add title to toggle button * Remove unnessecary CSS * Rewrite HTML classes * Temporary remove drawer subsearch, it will be re-explored in a later patch
35 lines
583 B
Plaintext
35 lines
583 B
Plaintext
@import '../variables.less';
|
|
|
|
.citizen-siteStats {
|
|
display: flex;
|
|
font-size: 0.875rem; // TODO: Put this in variable
|
|
gap: 0.875rem;
|
|
|
|
&__item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.4375rem;
|
|
|
|
&:before {
|
|
width: 0.875rem;
|
|
height: 0.875rem;
|
|
background-size: contain;
|
|
content: '';
|
|
opacity: var( --opacity-icon-base );
|
|
}
|
|
}
|
|
}
|
|
|
|
.skin-citizen-dark {
|
|
.citizen-siteStats__item:before {
|
|
filter: invert( 1 );
|
|
}
|
|
}
|
|
|
|
/* Can't display all in one line so let's hide file */
|
|
@media ( max-width: 480px ) {
|
|
#citizen-siteStats__item--images {
|
|
display: none;
|
|
}
|
|
}
|