MediaWiki:Common.css: Difference between revisions

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

Revision as of 09:20, 6 January 2020

/* CSS placed here will be applied to all skins */
.grid{
	display: grid;
	column-gap: 15px;
	row-gap: 60px;
}
.grid.two-columns{
    grid-template-columns: repeat( 2, minmax(450px, 1fr) );
}
.grid.two-columns.slideshare{
    grid-template-columns: 800px auto;
}
.grid.three-columns{
    grid-template-columns: repeat( 3, minmax(450px, 1fr) );
}

.grid.three-columns > div, .grid.two-columns > div{
    /*height: 450px;*/
    border: 2px solid #f6f6f6;
    padding-bottom: 10px;
}

.grid.two-columns .full-width{
    grid-column: span 2;
}
.grid.three-columns .full-width{
    grid-column: span 3;
    height: auto;
}

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