Difference between revisions of "MediaWiki:Common.css"

From Teopedia library
Jump to navigation Jump to search
m
Line 10: Line 10:
 
}
 
}
  
#poem p{  
+
.poem p{  
 
     text-indent: 0;
 
     text-indent: 0;
 
}
 
}

Revision as of 15:32, 24 December 2021

/* Change default font and paragraph parameters*/
.mw-body-content {
    font-family: "Droid Serif", "Leberation Serif", "Times New Roman", serif;
}

.mw-body-content p {
    margin: 0;
    text-indent: 2em;
    text-align: justify;
}

.poem p{ 
    text-indent: 0;
}

/*TODO: make text in Edittools block left aligned without indent. The following does not help*/
#editpage-specialchars p { 
    text-indent: 0;
    text-align: left;
}
.mw-charinsert-item p {
    text-indent: 0;
    text-align: left;
}

/* Hide numbers in table of content */
.tocnumber {
	display: none;
}

@media (max-width: 730px) {
	.header-nav-m {
		flex-direction: column;
	}
}

@media (max-width: 900px) {
	.header-nav-m {
		clear: both;
	}
}