MediaWiki:Common.css: Difference between revisions

From Secure Group Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 14: Line 14:
.box-header{
.box-header{
background-color: #f6f6f6;
background-color: #f6f6f6;
padding: 1px;
}
}
.text-center{
.text-center{

Revision as of 13:20, 2 January 2020

/* CSS placed here will be applied to all skins */
.grid{
	display: grid;
	column-gap: 15px;
}
.grid.three-columns{
    grid-template-columns: repeat( 3, minmax(450px, 1fr) );
}
.grid.three-columns .full-width{
    grid-column: span 3;
}

/* Common */
.box-header{
	background-color: #f6f6f6;
	padding: 1px;
}
.text-center{
    text-align: center;
}
pre{
	background-color: transparent;
    border: none;
    padding: 0;
    white-space: pre-wrap;
}