Template:Main page/sandbox style.css: Difference between revisions
Jump to navigation
Jump to search
(Wider scope for list styling, list styling normalization) |
(Nested list font weights and header tweaks) |
||
Line 3: | Line 3: | ||
column-fill: balance; | column-fill: balance; | ||
} | } | ||
.main-page-content-box ul | .main-page-content-box ul li { | ||
break-inside: avoid-column; | break-inside: avoid-column; | ||
list-style: none; | list-style: none; | ||
font-weight: bold; | |||
} | |||
.main-page-content-box ul li li { | |||
font-weight: normal; | |||
} | } | ||
.main-page-content-box { | .main-page-content-box { | ||
Line 21: | Line 25: | ||
} | } | ||
.main-page-content-box > h2 { | .main-page-content-box > h2 { | ||
border: | border-bottom: 2px solid #DFD3C3; | ||
margin:0; | margin:0; | ||
padding: | padding:2px 1em; | ||
background-color: #FCA; | background-color: #FCA; | ||
} | } |
Revision as of 00:35, 18 July 2024
#main-page-elin > ul {
column-count: 2;
column-fill: balance;
}
.main-page-content-box ul li {
break-inside: avoid-column;
list-style: none;
font-weight: bold;
}
.main-page-content-box ul li li {
font-weight: normal;
}
.main-page-content-box {
background: #F8EDE3;
margin: 0 1em 1em 0;
padding-bottom: 1em;
border: 2px solid #DFD3C3;
border-radius: 5px;
}
#main-page-nav {
display:flex;
justify-content:flex-start;
align-items:stretch;
flex-wrap:wrap
}
.main-page-content-box > h2 {
border-bottom: 2px solid #DFD3C3;
margin:0;
padding:2px 1em;
background-color: #FCA;
}
.main-page-content-box > h3 {
padding-left: 1em;
}