More languages
More actions
No edit summary |
No edit summary |
||
Line 6: | Line 6: | ||
/* just the quotation mark that appears behind the quote */ | /* just the quotation mark that appears behind the quote */ | ||
user-select:none; | user-select:none; | ||
} | } | ||
/* selectable alignment with {{{align}}} parameter */ | |||
.left{ | .left{ | ||
float:left; | float:left; |
Revision as of 22:04, 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;
}
/* selectable alignment with {{{align}}} parameter */
.left{
float:left;
}
.right{
float:right;
}
.center{
text-align: center;
margin: 0 auto;
}