mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-29 00:31:09 +00:00
60999eb1d9
Codex tokens are a better implementation and this should ensure consistency across the MW ecosystem. We have to keep a copy for now as they are introduced in 1.41. Related: #735
36 lines
715 B
Plaintext
36 lines
715 B
Plaintext
/*
|
|
* Citizen
|
|
*
|
|
* SkinStyles for Extension:Capiunto
|
|
* Module: capiunto.infobox.main
|
|
* Version: REL1_39 3a6d523
|
|
*
|
|
* Date: 2023-07-14
|
|
*/
|
|
|
|
@import '../../../resources/variables.less';
|
|
|
|
.mw-capiunto-infobox {
|
|
float: none;
|
|
margin: 0 auto var( --space-md ) auto;
|
|
clear: none;
|
|
font-size: 0.875rem;
|
|
color: var( --color-base );
|
|
background-color: var( --color-surface-2 );
|
|
border-color: var( --border-color-base );
|
|
border-radius: var( --border-radius--medium );
|
|
|
|
caption,
|
|
&-top {
|
|
font-size: 1rem;
|
|
font-weight: var( --font-weight-semibold );
|
|
}
|
|
|
|
/* Sync with floatright styles */
|
|
@media ( min-width: @min-width-breakpoint-tablet ) {
|
|
float: right;
|
|
margin-left: var( --space-lg );
|
|
clear: right;
|
|
}
|
|
}
|