mirror of
https://github.com/Lapikud/lapikud.github.io.git
synced 2026-03-24 05:34:22 +00:00
62 lines
1.2 KiB
SCSS
62 lines
1.2 KiB
SCSS
.contact .team {
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
.row {
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
align-content: center;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.member {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: wrap;
|
|
width: auto;
|
|
flex-grow: 0;
|
|
padding: 0;
|
|
|
|
.profile-img {
|
|
display: block;
|
|
margin-right: 1rem;
|
|
width: 150px;
|
|
height: 150px;
|
|
}
|
|
|
|
.lap-img {
|
|
display: block;
|
|
margin-right: 1rem;
|
|
width: 200px;
|
|
height: 100px;
|
|
}
|
|
ul {
|
|
display: inline-block;
|
|
list-style-type: none;
|
|
margin-left: 0;
|
|
min-width: 20rem;
|
|
|
|
li {
|
|
margin: 0;
|
|
|
|
h4 {
|
|
margin: 0;
|
|
}
|
|
|
|
a {
|
|
padding: 0.3rem 0;
|
|
display: inline-block;
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@media (min-width: 30.0rem) {
|
|
.member {
|
|
flex-direction: row;
|
|
min-height: 176px;
|
|
}
|
|
}
|
|
}
|