website/sass/css/team.scss

45 lines
567 B
SCSS
Raw Permalink Normal View History

2023-03-20 18:06:57 +00:00
@import "defs";
2023-03-27 16:03:45 +00:00
.team {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 16px;
2023-03-27 16:03:45 +00:00
}
2023-03-20 18:06:57 +00:00
.team_box {
2023-03-27 16:03:45 +00:00
max-width: 434px;
margin: auto;
2023-03-27 16:03:45 +00:00
}
.team_box-top {
display: flex;
align-items: center;
gap: 16px;
2023-03-27 16:03:45 +00:00
}
.team_box-bottom {
clear: both;
2023-03-20 18:06:57 +00:00
}
.team_box-img {
// 70% ~= 1/sqrt(2)
mask-image: radial-gradient(circle, #000 69%, transparent 70%);
width: 160px;
2023-03-27 16:03:45 +00:00
}
.team_box-title {
font-family: Neucha;
font-size: 150%;
2023-03-20 18:06:57 +00:00
}
.team_box-subtitle {
font-family: Neucha;
font-size: 125%;
2023-03-27 16:03:45 +00:00
color: $violet;
2023-03-20 18:06:57 +00:00
}
.team_box-description {
margin-top: 8px;
}