mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-26 15:24:22 +00:00
5d3ecd9edd
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.
27 lines
455 B
Plaintext
27 lines
455 B
Plaintext
.citizen-page-footer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
grid-area: footer;
|
|
gap: var( --space-xl );
|
|
margin-top: var( --space-md );
|
|
line-height: var( --line-height-sm );
|
|
}
|
|
|
|
.page-info {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: var( --space-xl );
|
|
font-size: var( --font-size-x-small );
|
|
|
|
&__item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var( --space-xs );
|
|
}
|
|
|
|
&__label {
|
|
color: var( --color-subtle );
|
|
letter-spacing: 0.05em;
|
|
}
|
|
}
|