mirror of
https://github.com/tlsnotary/website.git
synced 2026-01-09 14:58:09 -05:00
60 lines
1009 B
CSS
60 lines
1009 B
CSS
.members-card {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-direction: column;
|
|
margin-top: 1rem;
|
|
border: 1px solid var(--gray-transparent);
|
|
border-radius: var(--border-radius);
|
|
background-color: var(--white);
|
|
box-shadow: var(--box-shadow);
|
|
padding: 2rem;
|
|
}
|
|
|
|
.members-card-title {
|
|
font-weight: 600;
|
|
font-size: 1.5rem;
|
|
padding-bottom: 1rem;
|
|
}
|
|
|
|
.card-text {
|
|
line-height: 150%;
|
|
padding-bottom: 1.5rem;
|
|
}
|
|
|
|
.members-card-footer {
|
|
border-top: 2px solid var(--black);
|
|
}
|
|
|
|
.members-card-footer a {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 1rem 0px;
|
|
font-weight: 700;
|
|
text-decoration: none;
|
|
color: var(--black);
|
|
}
|
|
|
|
.members-card-footer > *:not(:first-child) {
|
|
border-top: 2px solid var(--black);
|
|
}
|
|
|
|
.team-link {
|
|
padding: 0.125rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.team-link a {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.team-icon {
|
|
height: 1.5rem;
|
|
}
|
|
|
|
.team-link-title {
|
|
text-transform: capitalize;
|
|
}
|