MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 20: | Line 20: | ||
padding: 0 10px 10px 10px; | padding: 0 10px 10px 10px; | ||
box-shadow: 0 2px 2px rgba(0,0,0,0.1); | box-shadow: 0 2px 2px rgba(0,0,0,0.1); | ||
} | |||
.no-border{ | |||
border: none; | |||
box-shadow: none; | |||
} | } | ||
Revision as of 09:57, 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: 1px solid #CCC;
padding: 0 10px 10px 10px;
box-shadow: 0 2px 2px rgba(0,0,0,0.1);
}
.no-border{
border: none;
box-shadow: none;
}
.grid.two-columns .full-width{
grid-column: span 2;
}
.grid.three-columns .full-width{
grid-column: span 3;
height: auto;
}
/* Common */
.box-header{
padding: 1px;
font-weight: bold;
font-size: 1.2em;
border-bottom: 1px solid #CCC;
}
.box-content{
padding: 10px;
}
.text-center{
text-align: center;
}
pre{
background-color: transparent;
border: none;
padding: 0;
white-space: pre-wrap;
}