Old high school files. Lessson notes/codes/projects etc.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
539 B

3 years ago
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.persons-container {
display: flex;
flex-wrap: wrap;
}
3 years ago
.person {
3 years ago
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;
3 years ago
}