ProleWiki:Library/book.css: Difference between revisions

From ProleWiki, the proletarian encyclopedia
m (Added blockquote CSS for books)
m (Attempt to prevent reference lists from being affected by CSS)
 
Line 2: Line 2:


p {
p {
text-indent: 50px;
text-indent: 2.5em;
width: 95%;
width: 95%;
margin: auto;
margin: auto;
Line 11: Line 11:
text-indent: 0;
text-indent: 0;
text-align: justify;
text-align: justify;
font-size: 95%;
}
}


blockquote {
blockquote {
padding: 5px 25px;
padding: 0px 2.5em;
width: 90%;
}
}


ol {
ol:not(.references) {
padding: 10px 25px;
padding: 0.5em 5em;
}
}



Latest revision as of 23:04, 10 January 2022

/* CSS options for books in Library */

p {
	text-indent: 2.5em;
	width: 95%;
	margin: auto;
	text-align: justify;
}

blockquote p {
	text-indent: 0;
	text-align: justify;
	font-size: 95%;
}

blockquote {
	padding: 0px 2.5em;
}

ol:not(.references) {
	padding: 0.5em 5em;
}

h2 {
	text-align: center;
}