84 lines
1.3 KiB
CSS
84 lines
1.3 KiB
CSS
.section {
|
|
background: linear-gradient(104deg, #171C30 1.96%, #172241 94.63%);
|
|
border-radius: 20px;
|
|
backdrop-filter: blur(25px);
|
|
padding: 24px 10px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.headerWrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
gap: 20px;
|
|
width: 320px;
|
|
margin: 0 auto;
|
|
padding-left: 4px;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.floorName {
|
|
font-family: 'Pretendard', sans-serif;
|
|
font-weight: 600;
|
|
font-size: 28px;
|
|
color: #FFFFFF;
|
|
letter-spacing: -0.56px;
|
|
}
|
|
|
|
.workerInfo {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.personIcon {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
.workerCount {
|
|
font-family: 'Pretendard', sans-serif;
|
|
font-weight: 600;
|
|
font-size: 24px;
|
|
color: #D3D3D3;
|
|
letter-spacing: -0.48px;
|
|
padding: 0 8px;
|
|
}
|
|
|
|
.floorLogButton {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 50px;
|
|
padding: 16px;
|
|
background: #000000;
|
|
border-radius: 6px;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.floorLogButton:hover {
|
|
background: #1a1a1a;
|
|
}
|
|
|
|
.floorLogButtonText {
|
|
font-family: 'Pretendard', sans-serif;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.entryList {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
width: 320px;
|
|
margin: 20px auto 0;
|
|
}
|