Обновить static/css/custom.css

This commit is contained in:
masterpmi 2026-07-27 11:51:29 +03:00
parent 7c0f42ce80
commit 30876e1bac

View File

@ -499,3 +499,70 @@ body.dark-mode a {
font-weight: 700;
color: #003c78;
}
.employee-header {
display: flex;
align-items: flex-start;
gap: 24px;
max-width: 800px;
margin: 1.25rem 0 2.5rem;
padding: 0 0 20px;
border-bottom: 1px solid rgba(0, 60, 120, 0.35);
}
.employee-photo {
display: block;
float: none !important;
width: 200px;
height: 150px;
object-fit: cover;
border-radius: 4px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.employee-info {
flex: 1;
min-width: 0;
}
.employee-degree {
margin: 4px 0 18px;
font-size: 1.05rem;
font-weight: 700;
line-height: 1.45;
}
.employee-details {
margin: 0;
}
.employee-details > div {
display: flex;
gap: 7px;
margin: 10px 0;
line-height: 1.4;
}
.employee-details dt {
font-weight: 700;
}
.employee-details dt::after {
content: ":";
}
.employee-details dd {
margin: 0;
}
@media (max-width: 600px) {
.employee-header {
flex-direction: column;
gap: 16px;
}
.employee-photo {
width: 180px;
height: 135px;
}
}