blob: 5e3000f62d64fdecf3bdca21898c7f7994584357 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
.list {
list-style-position: inside;
margin: 0;
padding: 0;
}
#two-up {
display: flex;
flex-direction: row;
flex-wrap: wrap;
column-gap: 1rem;
}
#two-up :nth-child(n) {
flex: 1 0 calc(var(--page-width) / 2 - 1rem);
max-width: 20rem;
}
|