49 lines
806 B
CSS
49 lines
806 B
CSS
.club-members {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: left;
|
|
gap: 20px;
|
|
padding: 20px;
|
|
}
|
|
|
|
.club-member {
|
|
flex: 1;
|
|
background-color: var(--background-color-2);
|
|
border: 1px solid var(--border-color);
|
|
padding: 10px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
gap: 10px;
|
|
max-width: 500px;
|
|
min-width: 300px;
|
|
line-break: anywhere;
|
|
}
|
|
|
|
.club-bio {
|
|
white-space: pre-wrap;
|
|
border-top: 1px solid var(--border-color);
|
|
}
|
|
|
|
.avatar {
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.avatar div {
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
width: 120px;
|
|
height: 120px;
|
|
border-radius: 25%;
|
|
}
|
|
|
|
.about {
|
|
flex: 3;
|
|
}
|