Template:Staff/styles.css
Template page
More actions
.staff-card {
display: block;
color: #f3f5f8;
background: rgba(200, 200, 200, 0.1);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 18px;
padding: 14px;
}
.staff-card__top {
display: flex;
align-items: center;
gap: 16px;
min-width: 0;
}
.staff-avatar {
width: 90px;
height: 90px;
border-radius: 50%;
overflow: hidden;
flex: 0 0 auto;
background: rgba(0, 0, 0, 0.18);
border: 3px solid rgba(200, 200, 200, 0.3);
}
.staff-avatar img,
.staff-avatar a,
.staff-avatar .image,
.staff-avatar .mw-file-element {
display: block;
width: 100%;
height: 100%;
}
.staff-avatar img,
.staff-avatar .mw-file-element {
object-fit: cover;
}
.staff-meta {
min-width: 0;
flex: 1;
}
.staff-name {
font-size: 20px;
font-weight: 800;
line-height: 1.2;
margin-bottom: 7px;
}
.staff-name a {
color: inherit;
text-decoration: none;
}
.staff-name a:hover,
.staff-name a:focus {
text-decoration: underline;
}
.staff-role-tags {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.staff-role-tag {
display: inline-flex;
align-items: center;
min-height: 25px;
padding: 0 9px;
border-radius: 999px;
font-size: 11px;
font-weight: 700;
text-transform: capitalize;
color: #f3f5f8;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.12);
}
.staff-role-tag--placeholder {
color: #9aa4b2;
}
.staff-bottom {
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
margin-top: 12px;
padding-top: 11px;
border-top: 1px solid rgba(255, 255, 255, 0.06);
font-size: 12px;
}
.staff-joined {
color: #9aa4b2;
}
.staff-status {
font-weight: 700;
display: inline-flex;
align-items: center;
gap: 5px;
}
.staff-status:before {
content: '';
width: 7px;
height: 7px;
border-radius: 50%;
background: currentColor;
}
.staff-status.is-loading {
color: #9aa4b2;
}
.staff-status.active {
color: #65d98b;
}
.staff-status.inactive {
color: #9aa4b2;
}