mediawiki-skins-Citizen/resources/skins.citizen.styles/common/content.less

41 lines
678 B
Plaintext
Raw Normal View History

2020-06-12 18:16:45 +00:00
.firstHeading {
margin: 0;
2021-03-06 01:44:46 +00:00
overflow-wrap: break-word;
word-break: break-word;
2020-06-12 18:16:45 +00:00
}
.mw-page-title {
&-namespace {
color: var( --color-base );
}
&-separator {
margin-right: var( --space-xxs );
color: var( --color-base--subtle );
}
&-parenthesis {
color: var( --color-base--subtle );
font-size: var( --font-size-h3 );
}
}
.citizen-body {
2020-06-12 18:16:45 +00:00
a.image {
display: inline-block;
2020-06-12 18:16:45 +00:00
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 );
}
}
2020-06-12 18:16:45 +00:00
}
}