mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-29 00:31:09 +00:00
5ebd7ad025
It should not be a part of the skin as it belongs to a template
40 lines
651 B
Plaintext
40 lines
651 B
Plaintext
.firstHeading {
|
|
margin: 0;
|
|
overflow-wrap: break-word;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.firstHeading-parenthesis {
|
|
color: var( --color-base--subtle );
|
|
}
|
|
|
|
.mw-page-title {
|
|
&-namespace {
|
|
color: var( --color-base );
|
|
}
|
|
|
|
&-separator {
|
|
margin-right: var( --space-xxs );
|
|
color: var( --color-base--subtle );
|
|
}
|
|
}
|
|
|
|
.citizen-body {
|
|
a.image {
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
vertical-align: top; // get rid of that weird bottom gap from inline block
|
|
|
|
> img {
|
|
transition: @transition-transform;
|
|
}
|
|
|
|
// Add affordance to replace magnify icon
|
|
&:hover:not( .lazy ):not( .new ) {
|
|
> img {
|
|
transform: scale( 1.1 );
|
|
}
|
|
}
|
|
}
|
|
}
|