MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| (9 intermediate revisions by the same user not shown) | |||
| Line 4: | Line 4: | ||
display: flex; | display: flex; | ||
flex-direction: column; | flex-direction: column; | ||
flex-basis: auto; | flex-basis: auto; | ||
flex-grow: 1; | flex-grow: 1; | ||
| Line 15: | Line 11: | ||
display: flex; | display: flex; | ||
flex-direction: column; | flex-direction: column; | ||
flex-basis: auto; | flex-basis: auto; | ||
flex-grow: 0; | |||
} | } | ||
| Line 26: | Line 18: | ||
display: flex; | display: flex; | ||
flex-direction: row; | flex-direction: row; | ||
flex- | flex-basis: auto; | ||
} | } | ||
| Line 37: | Line 26: | ||
min-width: 240px; | min-width: 240px; | ||
border: 1px solid #CCC; | border: 1px solid #CCC; | ||
border-radius: 15px; | |||
padding: 0 10px 10px 10px; | padding: 0 10px 10px 10px; | ||
box-shadow: 0 | box-shadow: 0 5px 5px rgba(0,0,0,0.2); | ||
} | } | ||
Latest revision as of 16:20, 2 December 2025
/* CSS placed here will be applied to all skins */
.frontpage_column {
display: flex;
flex-direction: column;
flex-basis: auto;
flex-grow: 1;
}
.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: 15px;
padding: 0 10px 10px 10px;
box-shadow: 0 5px 5px rgba(0,0,0,0.2);
}