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

92 lines
1.1 KiB
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
}
.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 {
2020-06-12 18:16:45 +00:00
h1,
h2,
h3,
h4,
h5,
h6 {
padding: 0;
margin: 0;
2020-06-12 18:16:45 +00:00
}
h1,
h2 {
margin-top: @content-margin-top * 3;
}
h3,
h4,
h5,
2021-06-22 00:51:50 +00:00
h6 {
2020-06-12 18:16:45 +00:00
margin-top: @content-margin-top * 2;
}
h1 + h2,
h2 + h3,
h3 + h4,
h4 + h5,
h5 + h6,
table {
margin-top: @content-margin-top;
}
2021-06-22 00:51:50 +00:00
p {
margin-top: @content-margin-top;
margin-bottom: @content-margin-top;
2021-06-22 00:53:47 +00:00
overflow-wrap: break-word;
2021-06-22 00:51:50 +00:00
}
2020-06-12 18:16:45 +00:00
img {
vertical-align: middle;
}
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;
}
&:hover:not( .lazy ):not( .new ) {
> img {
transform: scale( 1.1 );
}
}
2020-06-12 18:16:45 +00:00
}
}
.center {
width: 100%;
text-align: center;
}
.plainlist ol,
.plainlist ul {
margin: 0;
line-height: inherit;
list-style: none none;
}