MediaWiki:Common.less/quotes.less

From Old School Near-Reality Wiki
< MediaWiki:Common.less
Revision as of 22:23, 4 October 2022 by Jacmob (talk | contribs) (Created page with "// <pre> :root { --blockquote-color: @river-bed; } .quote-source { text-align: right; &::before { content: '— '; } } →‎======================== [[Template:Quote]] ========================: blockquote { color: var(--blockquote-color); .mw-body-content & { border-color: var(--body-mid); } }")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

//

:root {
    --blockquote-color: @river-bed;
}

.quote-source {
	text-align: right;

	&::before {
		content: '— ';
	}

}

/* ========================
      Template:Quote
   ======================== */

blockquote {
	color: var(--blockquote-color);

	.mw-body-content & {
		border-color: var(--body-mid);
	}
}