mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 18:58:45 +00:00
c323c6858a
We no longer need to keep this as a separate entry point now we do not feature flag our print styles Please enter the commit message for your changes. Lines starting Change-Id: I6bf12980aa929e84f239931beb0a505809231830
117 lines
1.6 KiB
Plaintext
117 lines
1.6 KiB
Plaintext
@import 'minerva.variables';
|
|
@import 'minerva.mixins';
|
|
|
|
@dividerHeight: 2px;
|
|
@dividerSpacing: 28px;
|
|
|
|
.hatnote {
|
|
display: none;
|
|
}
|
|
|
|
.pre-content {
|
|
display: block;
|
|
padding: 51px 0 35px;
|
|
|
|
h1 {
|
|
font-size: 70px;
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
font-stretch: normal;
|
|
line-height: normal;
|
|
letter-spacing: normal;
|
|
text-align: left;
|
|
color: @colorGray1;
|
|
}
|
|
|
|
.tagline {
|
|
font-size: 36px;
|
|
}
|
|
|
|
#page-actions {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
#bodyContent {
|
|
padding-top: 55px;
|
|
position: relative;
|
|
&:before {
|
|
top: 0;
|
|
}
|
|
}
|
|
|
|
.thumbinner {
|
|
width: auto !important;
|
|
// Force image link to take up maximum available space so that
|
|
// the thumbnail inside can be aligned left rather than centered
|
|
> a {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.thumb {
|
|
position: relative;
|
|
padding: (@dividerSpacing*2) + @dividerHeight 0 !important;
|
|
text-align: left;
|
|
margin: 0 !important;
|
|
|
|
&:after {
|
|
bottom: @dividerHeight + @dividerSpacing;
|
|
}
|
|
}
|
|
|
|
.thumb:after,
|
|
#bodyContent:before {
|
|
position: absolute;
|
|
left: 0;
|
|
content: '';
|
|
display: block;
|
|
width: 55px;
|
|
height: @dividerHeight;
|
|
background: @printBorderColor;
|
|
}
|
|
|
|
.thumbcaption {
|
|
margin-top: 23px !important;
|
|
width: 100%;
|
|
font-style: italic;
|
|
font-size: 28px;
|
|
}
|
|
|
|
#mw-content-text {
|
|
font-size: 36px;
|
|
|
|
a {
|
|
text-decoration: underline;
|
|
color: @colorGray2;
|
|
}
|
|
|
|
.section-heading {
|
|
border-bottom: 0;
|
|
padding-bottom: 0;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 48px;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 40px;
|
|
margin-bottom: 13px;
|
|
}
|
|
|
|
h4, h5, h6 {
|
|
font-size: 36px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.wikitable {
|
|
font-size: 16px;
|
|
}
|
|
|
|
table.infobox {
|
|
font-size: 30px;
|
|
}
|
|
}
|