Evie Litherland-Smith
d278f36264
Put personal bookmarks under L1 heading personal, make headings into flex box to allow L2+ headings to bunch up and be more space efficient without disturbing the look of the lists
19 lines
235 B
CSS
19 lines
235 B
CSS
div.outline-2,
|
|
div.outline-3,
|
|
div.outline-4 {
|
|
width: 50%;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex-direction: row;
|
|
}
|
|
|
|
div.outline-2 {
|
|
width: unset;
|
|
}
|
|
|
|
div.outline-text-2,
|
|
div.outline-text-3,
|
|
div.outline-text-4 {
|
|
width: 100%;
|
|
}
|