mirror of https://github.com/E-Almqvist/hsf
parent
ab0c45e430
commit
e44a04eb68
@ -1,3 +1,42 @@ |
||||
body { |
||||
display: flex; |
||||
justify-content: center; |
||||
align-items: center; |
||||
flex-direction: column; |
||||
} |
||||
|
||||
.persons-container { |
||||
display: flex; |
||||
flex-wrap: wrap; |
||||
} |
||||
|
||||
.person { |
||||
background-color: #f00; |
||||
display: grid; |
||||
grid-template-columns: 1fr 1fr 1fr; |
||||
grid-template-rows: 1fr 1fr; |
||||
grid-template-areas: |
||||
"av in in" |
||||
"av in in" |
||||
; |
||||
width: 400px; |
||||
margin: 1rem; |
||||
background-color: #aaaaaaaa; |
||||
border: 1px solid #dccf; |
||||
} |
||||
|
||||
.avatar { |
||||
grid-area: av; |
||||
} |
||||
|
||||
.info { |
||||
grid-area: in; |
||||
} |
||||
|
||||
.person ul { |
||||
list-style-type: none; |
||||
} |
||||
|
||||
.person label { |
||||
font-weight: bold; |
||||
color: #000; |
||||
} |
||||
|
Loading…
Reference in new issue