You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tempest.dev/styles/about.module.css

64 lines
1.0 KiB
CSS

.container {
display: flex;
flex-direction: row;
max-width: var(--system-width);
width: calc(100vw - 2 * var(--text-padding));
margin: 0 auto;
margin-top: 75px;
justify-content: space-between;
}
.member {
flex: 1;
display: flex;
flex-direction: column;
max-width: 280px;
box-sizing: border-box;
margin: 0 calc(.5 * var(--text-padding));
padding: 0 var(--text-padding);
background: var(--main-background);
box-shadow: var(--card-shadow);
}
.member img {
display: block;
width: 150px;
height: 150px;
box-sizing: border-box;
border: solid 4px var(--member-color);
border-radius: 75px;
margin: 0 auto;
margin-top: -75px;
user-select: none;
}
.member h2 {
text-align: center;
color: var(--member-color);
margin: 0;
}
.member p {
margin-top: 0;
}
.member .pronouns {
text-align: center;
margin-top: 0;
}
.member p:nth-last-child(2) {
flex: 1;
}
.member p:last-child {
text-align: center;
}
.summary {
width: var(--main-width);
box-sizing: border-box;
padding: var(--text-padding);
margin: 0 auto;
}