MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
display: grid; | display: grid; | ||
column-gap: 15px; | column-gap: 15px; | ||
row-gap: 60px; | |||
} | } | ||
.grid.three-columns{ | .grid.three-columns{ |
Revision as of 14:05, 2 January 2020
/* CSS placed here will be applied to all skins */
.grid{
display: grid;
column-gap: 15px;
row-gap: 60px;
}
.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;
}