mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-12 08:58:25 +00:00
64134bd8a6
Use local imports instead given all relevant files are within the same repository, and don't vary by configuraion. Bug: T140807 Depends-On: If3edac9a35b346af0320c12f70c0d978a6346201 Change-Id: Ife3cc345a63aff452e93accbe0a593fbaa358732
21 lines
549 B
Plaintext
21 lines
549 B
Plaintext
// Blockquotes
|
|
//
|
|
// Use the blockquote tag for quoted text.
|
|
//
|
|
// Markup:
|
|
// <blockquote>In the end, it's not the years in your life that count. It's the life in your years.</blockquote>
|
|
//
|
|
// Styleguide 1.8.
|
|
@import 'mediawiki.mixins.less';
|
|
@import '../../minerva.less/minerva.variables';
|
|
@import '../../minerva.less/minerva.mixins';
|
|
|
|
blockquote {
|
|
border-left: 3px solid @colorGray12;
|
|
font-family: @fontFamilyHeading;
|
|
font-size: 1.1em;
|
|
padding: 1em @blockquotePaddingRight 1em @blockquotePaddingLeft;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|