MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 5: | Line 5: | ||
flex-direction: column; | flex-direction: column; | ||
flex-basis: auto; | flex-basis: auto; | ||
flex-grow: | flex-grow: 0; | ||
} | } | ||
| Line 26: | Line 26: | ||
min-width: 240px; | min-width: 240px; | ||
border: 1px solid #CCC; | border: 1px solid #CCC; | ||
border-radius: 5px; | |||
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); | ||
} | } | ||
Revision as of 16:18, 2 December 2025
/* CSS placed here will be applied to all skins */
.frontpage_column {
display: flex;
flex-direction: column;
flex-basis: auto;
flex-grow: 0;
}
.frontpage_nav_column {
display: flex;
flex-direction: column;
flex-basis: auto;
flex-grow: 0;
}
.frontpage_row {
display: flex;
flex-direction: row;
flex-basis: auto;
}
.frontpage_box {
flex: 1;
margin: 5px;
min-width: 240px;
border: 1px solid #CCC;
border-radius: 5px;
padding: 0 10px 10px 10px;
box-shadow: 0 2px 2px rgba(0,0,0,0.1);
}