Template:Essay quote/style.css: Difference between revisions

Template page
No edit summary
No edit summary
Line 1: Line 1:
.essay-quotation{
.essay-quotation{
/* container for whole quote thing */
/* container for whole quote thing */
}
.essay-quotation-mark{
/* just the quotation mark that appears behind the quote */
user-select:none;
}
}


Line 27: Line 22:
     text-align: center;
     text-align: center;
     margin: 0 auto;
     margin: 0 auto;
    width:100%;
}
}

Revision as of 22:13, 19 September 2023

.essay-quotation{
	/* container for whole quote thing */
}

.essay-quotation-mark{
	/* just the quotation mark that appears behind the quote */
	user-select:none;
	font-size:1rem;
}


/* selectable alignment with {{{align}}} parameter */
.left{
	float:left;
}

.right{
	float:right;
}

.center{
    text-align: center;
    margin: 0 auto;
    width:100%;
}