MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 11: | Line 11: | ||
/* Common */ | /* Common */ | ||
.box-header{ | |||
background-color: #f6f6f6; | |||
} | |||
.text-center{ | .text-center{ | ||
text-align: center; | text-align: center; |
Revision as of 13:13, 2 January 2020
/* CSS placed here will be applied to all skins */
.grid{
display: grid;
}
.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;
}