Difference between revisions of "MediaWiki:Common.css"

From Teopedia library
Jump to navigation Jump to search
m
m
Line 11: Line 11:
  
 
/* TODO: remove indent for some classes. The following does not work yet */
 
/* TODO: remove indent for some classes. The following does not work yet */
.poem, .gallerytext p {  
+
.poem, p {  
 
     text-indent: 0;
 
     text-indent: 0;
 
}
 
}
 +
 +
.gallerytext p {
 +
    text-indent: 0;
 +
}
 +
  
 
/*TODO: make text in Edittools block left aligned without indent. The following does not help */
 
/*TODO: make text in Edittools block left aligned without indent. The following does not help */

Revision as of 05:29, 25 July 2023

/* 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;
}

/* TODO: remove indent for some classes. The following does not work yet */
.poem, p { 
    text-indent: 0;
}

.gallerytext 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;
	}
}