2024-04-09 18:39:14 -04:00
|
|
|
.club-members {
|
2024-10-14 22:26:21 -04:00
|
|
|
display: grid;
|
|
|
|
gap: 1rem;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(24rem, 1fr));
|
2024-04-09 18:39:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.club-member {
|
|
|
|
background-color: var(--background-color-2);
|
|
|
|
border: 1px solid var(--border-color);
|
2024-10-14 22:26:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.club-member-name {
|
|
|
|
font-size: 1.5em;
|
|
|
|
font-weight: bold;
|
2024-04-09 18:39:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.club-bio {
|
2024-10-14 22:46:32 -04:00
|
|
|
padding: .5rem;
|
|
|
|
min-height: 3rem;
|
2024-04-09 18:39:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
2024-10-14 22:26:21 -04:00
|
|
|
float: left;
|
2024-10-14 22:46:32 -04:00
|
|
|
width: 40%;
|
2024-10-14 22:26:21 -04:00
|
|
|
margin: .5rem;
|
2024-10-14 22:46:32 -04:00
|
|
|
margin-bottom: -.6rem;
|
|
|
|
padding-bottom: .6rem;
|
2024-04-09 18:39:14 -04:00
|
|
|
}
|
|
|
|
|
2024-10-14 22:26:21 -04:00
|
|
|
.avatar > img {
|
|
|
|
width: -moz-available;
|
|
|
|
width: -webkit-fill-available; /* we live in a society */
|
|
|
|
border-radius: 1rem;
|
2024-04-09 18:39:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.about {
|
2024-10-14 22:26:21 -04:00
|
|
|
background: var(--text-color);
|
|
|
|
color: var(--background-color);
|
|
|
|
font-weight: bold;
|
|
|
|
padding: .5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.about a, .about a:visited {
|
|
|
|
color: var(--background-color);
|
|
|
|
text-decoration: underline dotted;
|
2024-04-09 18:39:14 -04:00
|
|
|
}
|
2024-10-14 22:26:21 -04:00
|
|
|
|
|
|
|
.text-muted {
|
|
|
|
opacity: .8;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bolder {
|
|
|
|
font-weight: bolder;
|
|
|
|
}
|