MediaWiki:Common.css: Difference between revisions

From Secure Group Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:
.grid{
.grid{
display: grid;
display: grid;
column-gap: 15px;
}
}
.grid.three-columns{
.grid.three-columns{

Revision as of 13:15, 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, 1fr);
}
.grid.three-columns .full-width{
    grid-column: span 3;
}

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