Template:Quote/styles.css: Difference between revisions

From Donate
Jump to navigation Jump to search
Content deleted Content added
Created page with ".quote-text { margin: 0; padding: 0 30px; font-size: 26px; line-height: 30px; position: relative; } .quote-text::before, .quote-text::after { color: #B2B7F2; f..."
 
hide border - phab:T267751
 
(2 intermediate revisions by the same user not shown)
Line 3: Line 3:
padding: 0 30px;
padding: 0 30px;
font-size: 26px;
font-size: 26px;
line-height: 30px;
line-height: 32px;
position: relative;
position: relative;
border: 0; /* T267751 */
}
}
.quote-text::before,
.quote-text::before,
Line 10: Line 11:
color: #B2B7F2;
color: #B2B7F2;
font-size: 40px;
font-size: 40px;
line-height: 26px;
font-family: 'Times New Roman', serif;
font-family: 'Times New Roman', serif;
font-weight: bold;
font-weight: bold;
position: absolute;
}
}
.quote-text::before {
.quote-text::before {
content: open-quote;
content: open-quote;
top: 0;
left: 0;
}
}
.quote-text::after {
.quote-text::after {
content: close-quote;
content: close-quote;
bottom: 0;
right: 0;
}
}
.quote-attribution {
.quote-attribution {

Latest revision as of 20:25, 11 November 2020

.quote-text {
	margin: 0;
	padding: 0 30px;
    font-size: 26px;
    line-height: 32px;
    position: relative;
    border: 0; /* T267751 */
}
.quote-text::before,
.quote-text::after {
	color: #B2B7F2;
	font-size: 40px;
	line-height: 26px;
	font-family: 'Times New Roman', serif;
	font-weight: bold;
	position: absolute;
}
.quote-text::before {
	content: open-quote;
	top: 0;
	left: 0;
}
.quote-text::after {
	content: close-quote;
	bottom: 0;
	right: 0;
}
.quote-attribution {
	display: block;
	margin-top: 1em;
	text-align: right;
	font-size: 18px;
	font-style: normal;
}