|
|
|
@ -1,5 +1,15 @@ |
|
|
|
|
@import "/src/_styles/mixin"; |
|
|
|
|
|
|
|
|
|
:root { |
|
|
|
|
--height-avatar: 88px; |
|
|
|
|
--width-avatar: 88px; |
|
|
|
|
|
|
|
|
|
@include screen_pc_sm { |
|
|
|
|
--height-avatar: 70px; |
|
|
|
|
--width-avatar: 70px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.headmaster-home-container { |
|
|
|
|
display: flex; |
|
|
|
|
gap: 32px; |
|
|
|
@ -160,12 +170,10 @@ |
|
|
|
|
gap: 16px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.headmaster-home-item-teacher { |
|
|
|
|
padding: 8px; |
|
|
|
|
border: 1.25px solid #e5e5e5; |
|
|
|
|
.headmaster-home-item-teacher-container { |
|
|
|
|
padding: 8px 8px 32px; |
|
|
|
|
border: 1.25px solid var(--primary-color); |
|
|
|
|
border-radius: 4px; |
|
|
|
|
display: flex; |
|
|
|
|
gap: 16px; |
|
|
|
|
background-color: #fff; |
|
|
|
|
transition: all 0.5s linear; |
|
|
|
|
|
|
|
|
@ -174,83 +182,94 @@ |
|
|
|
|
cursor: pointer; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.headmaster-home-avatar-teacher { |
|
|
|
|
width: 88px; |
|
|
|
|
height: 88px; |
|
|
|
|
border-radius: 5px; |
|
|
|
|
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, |
|
|
|
|
rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; |
|
|
|
|
|
|
|
|
|
@include screen_pc_sm { |
|
|
|
|
height: 70px; |
|
|
|
|
width: 70px; |
|
|
|
|
} |
|
|
|
|
.headmaster-home-item-teacher { |
|
|
|
|
display: flex; |
|
|
|
|
gap: 16px; |
|
|
|
|
border-bottom: 1px solid #939393; |
|
|
|
|
padding-bottom: 12px; |
|
|
|
|
|
|
|
|
|
img { |
|
|
|
|
width: 100%; |
|
|
|
|
height: 100%; |
|
|
|
|
object-fit: cover; |
|
|
|
|
.headmaster-home-avatar-teacher { |
|
|
|
|
width: var(--width-avatar); |
|
|
|
|
height: var(--height-avatar); |
|
|
|
|
border-radius: 5px; |
|
|
|
|
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, |
|
|
|
|
rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; |
|
|
|
|
|
|
|
|
|
// @include screen_pc_sm { |
|
|
|
|
// height: 70px; |
|
|
|
|
// width: 70px; |
|
|
|
|
// } |
|
|
|
|
|
|
|
|
|
img { |
|
|
|
|
width: 100%; |
|
|
|
|
height: 100%; |
|
|
|
|
object-fit: cover; |
|
|
|
|
border-radius: 5px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.headmaster-home-detail-teacher { |
|
|
|
|
display: flex; |
|
|
|
|
flex: 1; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
gap: 24px; |
|
|
|
|
|
|
|
|
|
.headmaster-home-info-teacher { |
|
|
|
|
.headmaster-home-detail-teacher { |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column; |
|
|
|
|
|
|
|
|
|
.headmaster-info-teacher-name { |
|
|
|
|
font-size: 2rem; |
|
|
|
|
font-weight: 700; |
|
|
|
|
color: var(--primary-color); |
|
|
|
|
} |
|
|
|
|
flex: 1; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
gap: 24px; |
|
|
|
|
|
|
|
|
|
.headmaster-info-teacher-text { |
|
|
|
|
font-size: 1.8rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.headmaster-home-info-teacher { |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column; |
|
|
|
|
position: relative; |
|
|
|
|
flex: 1; |
|
|
|
|
height: 100%; |
|
|
|
|
|
|
|
|
|
.headmaster-home-criteria-teacher { |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column; |
|
|
|
|
.headmaster-info-teacher-name { |
|
|
|
|
font-size: 2rem; |
|
|
|
|
font-weight: 700; |
|
|
|
|
color: var(--primary-color); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.headmaster-criteria-teacher-title { |
|
|
|
|
font-size: 2rem; |
|
|
|
|
font-weight: 700; |
|
|
|
|
color: var(--primary-color); |
|
|
|
|
.headmaster-info-teacher-text { |
|
|
|
|
font-size: 1.8rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.headmaster-criteria-teacher-row { |
|
|
|
|
.headmaster-home-criteria-teacher { |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
gap: 8px; |
|
|
|
|
flex-direction: column; |
|
|
|
|
position: relative; |
|
|
|
|
|
|
|
|
|
.criteria-teacher-title { |
|
|
|
|
.headmaster-criteria-teacher-title { |
|
|
|
|
font-size: 2rem; |
|
|
|
|
font-weight: 700; |
|
|
|
|
color: var(--primary-color); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.headmaster-criteria-teacher-criteria { |
|
|
|
|
font-size: 1.8rem; |
|
|
|
|
font-weight: 400; |
|
|
|
|
position: relative; |
|
|
|
|
padding-left: 12px; |
|
|
|
|
|
|
|
|
|
&::before { |
|
|
|
|
content: ""; |
|
|
|
|
display: block; |
|
|
|
|
position: absolute; |
|
|
|
|
left: 0; |
|
|
|
|
top: 12px; |
|
|
|
|
width: 5px; |
|
|
|
|
height: 5px; |
|
|
|
|
background-color: var(--primary-color); |
|
|
|
|
border-radius: 50%; |
|
|
|
|
.headmaster-criteria-teacher-row { |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
gap: 8px; |
|
|
|
|
|
|
|
|
|
.criteria-teacher-title { |
|
|
|
|
font-size: 2rem; |
|
|
|
|
font-weight: 700; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.headmaster-criteria-teacher-criteria { |
|
|
|
|
font-size: 1.8rem; |
|
|
|
|
font-weight: 400; |
|
|
|
|
position: relative; |
|
|
|
|
padding-left: 12px; |
|
|
|
|
|
|
|
|
|
&::before { |
|
|
|
|
content: ""; |
|
|
|
|
display: block; |
|
|
|
|
position: absolute; |
|
|
|
|
left: 0; |
|
|
|
|
top: 12px; |
|
|
|
|
width: 5px; |
|
|
|
|
height: 5px; |
|
|
|
|
background-color: var(--primary-color); |
|
|
|
|
border-radius: 50%; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -259,4 +278,15 @@ |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.headmaster-home-teacher-assign-text { |
|
|
|
|
position: absolute; |
|
|
|
|
bottom: -4rem; |
|
|
|
|
left: 0; |
|
|
|
|
font-weight: 700; |
|
|
|
|
|
|
|
|
|
@include screen_pc_sm { |
|
|
|
|
bottom: -4.6rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |