botascopia-webiste-static/assets/css/components/_team.scss

29 lines
574 B
SCSS
Raw Normal View History

2026-02-15 16:49:03 +01:00
.team{
2026-02-15 23:14:52 +01:00
display: flex;
flex-wrap: wrap;
gap: 2ch;
2026-02-15 16:49:03 +01:00
.member{
2026-02-15 23:14:52 +01:00
display: flex;
align-items: center;
gap: 2ch;
width: calc(50% - 2ch);
.name{
font-weight: bold;
}
.details{
font-size: var(--fs-normal);
margin-top: calc(var(--spacing)*0.25);
}
2026-02-15 16:49:03 +01:00
img{
2026-02-15 23:14:52 +01:00
width: 100px;
2026-02-15 16:49:03 +01:00
aspect-ratio: 1/1;
background-color: #cfcfcf;
border-radius: var(--radius-img);
2026-02-15 23:14:52 +01:00
float: left;
2026-02-15 16:49:03 +01:00
}
2026-02-15 23:14:52 +01:00
2026-02-15 16:49:03 +01:00
}
}