Put user list into 4 unordered columns

This commit is contained in:
Travis Briggs 2020-05-05 22:16:03 -07:00
parent e380614a2c
commit e7f092ac05
1 changed files with 14 additions and 3 deletions

View File

@ -12,10 +12,21 @@
border: 6px double #fb5; border: 6px double #fb5;
padding: 1em; padding: 1em;
} }
ol {
margin-left: 1em; .user-list {
column-count: 4; display: flex;
flex-flow: row wrap;
justify-content: space-evenly;
} }
.user-list li {
margin-left: 5%;
width: 20%;
}
.user-list::after {
content: "";
flex: auto;
}
body { body {
margin: auto; margin: auto;
padding: 1em; padding: 1em;