Mercurial > p > roundup > code
comparison doc/_static/style.css @ 7430:bd5bebb11695
add headers; make signature list multicolum
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 29 May 2023 19:28:38 -0400 |
| parents | 639a926cbb1a |
| children | 0d9f704a7ef2 |
comparison
equal
deleted
inserted
replaced
| 7429:32bd5013bf32 | 7430:bd5bebb11695 |
|---|---|
| 440 background-repeat: no-repeat; | 440 background-repeat: no-repeat; |
| 441 background-color: #f5f4d8; | 441 background-color: #f5f4d8; |
| 442 background-size: 20px 100%, 20px 100%, 16px 100%, 16px 100%; | 442 background-size: 20px 100%, 20px 100%, 16px 100%, 16px 100%; |
| 443 background-attachment: local, local, scroll, scroll; | 443 background-attachment: local, local, scroll, scroll; |
| 444 } | 444 } |
| 445 | |
| 446 /* https://moderncss.dev/totally-custom-list-styles/ make a list | |
| 447 use multiple columns */ | |
| 448 ul.multicol { | |
| 449 display: grid; | |
| 450 /* adjust the `min` value to your context */ | |
| 451 grid-template-columns: repeat(auto-fill, minmax(25ch, 1fr)); | |
| 452 grid-gap: 0 1rem; /* no row gap */ | |
| 453 } | |
| 454 ul.multicol > * { | |
| 455 margin-block-start: 0; /* remove spacing added by * + * here */ | |
| 456 } |
