hatecomputers.club/static/css/club.css

54 lines
869 B
CSS
Raw Normal View History

.club-members {
2024-10-14 22:24:14 -04:00
display: grid;
gap: 1rem;
grid-template-columns: repeat(auto-fill, minmax(24rem, 1fr));
}
.club-member {
background-color: var(--background-color-2);
border: 1px solid var(--border-color);
2024-10-14 22:24:14 -04:00
}
.club-member-name {
font-size: 1.5em;
font-weight: bold;
}
.club-bio {
2024-10-14 22:24:14 -04:00
padding-inline: .5rem;
padding-block: .25rem;
}
.avatar {
2024-10-14 22:24:14 -04:00
float: left;
width: 30%;
margin: .5rem;
margin-bottom: -.4rem;
}
2024-10-14 22:24:14 -04:00
.avatar > img {
width: -moz-available;
width: -webkit-fill-available; /* we live in a society */
border-radius: 1rem;
}
.about {
2024-10-14 22:24:14 -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-10-14 22:24:14 -04:00
.text-muted {
opacity: .8;
font-weight: normal;
}
.bolder {
font-weight: bolder;
}