156 lines
2.8 KiB
CSS
156 lines
2.8 KiB
CSS
.errored {
|
|
animation: shake 300ms;
|
|
color: #eb3434 !important;
|
|
background-color: #fef2f2 !important;
|
|
border: 1px solid #eb3434 !important;
|
|
}
|
|
|
|
.pdBoxGrid {
|
|
user-select: none;
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
grid-template-rows: repeat(4, minmax(0, 1fr));
|
|
grid-auto-flow: column;
|
|
gap: 9px;
|
|
}
|
|
|
|
.width-btn {
|
|
width: 550px;
|
|
margin: auto;
|
|
}
|
|
|
|
.btn-register {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
background-color: #84CC16;
|
|
color: #FFFFFF;
|
|
border-radius: 8px;
|
|
padding: 10px 70px;
|
|
}
|
|
|
|
.btn-cancel2 {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
background-color: #454D5C;
|
|
color: #FFFFFF;
|
|
border-radius: 8px;
|
|
padding: 10px 70px;
|
|
}
|
|
|
|
.btn-register:hover, btn-cancel2:hover {
|
|
opacity: .7;
|
|
}
|
|
|
|
.pdBox {
|
|
background-color: #F8F8F8;
|
|
border-radius: 15px;
|
|
border: 1px solid #E7E7E7;
|
|
width: 100%;
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 12px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.preview-image {
|
|
object-fit: cover;
|
|
object-position: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.pdImageBox {
|
|
background-color: #E6E6E6;
|
|
border-radius: 6px;
|
|
border: 1px solid #D3D3D3;
|
|
width: 100px;
|
|
height: 60px;
|
|
text-align: center;
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.selectable-document {
|
|
border-radius: 8px;
|
|
padding: 10px;
|
|
cursor: pointer;
|
|
position: relative;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.selectable-document.selected {
|
|
border-color: #2BBABA;
|
|
background-color: #D0FFF7;
|
|
}
|
|
|
|
.hidden-checkbox {
|
|
display: none;
|
|
}
|
|
|
|
.custom-checkmark {
|
|
width: 20px;
|
|
height: 20px;
|
|
border: 2px solid #ccc;
|
|
border-radius: 50%;
|
|
background-color: white;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.selectable-document.selected .custom-checkmark {
|
|
background-color: #4CAF50;
|
|
border-color: #4CAF50;
|
|
}
|
|
|
|
.selectable-document.selected .custom-checkmark::after {
|
|
content: "";
|
|
display: flex;
|
|
width: 5px;
|
|
height: 10px;
|
|
border: solid white;
|
|
border-top-width: medium;
|
|
border-right-width: medium;
|
|
border-bottom-width: medium;
|
|
border-left-width: medium;
|
|
border-width: 0 2px 2px 0;
|
|
transform: rotate(45deg);
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 2px 5px 0 0;
|
|
}
|
|
|
|
@media (max-width: 992px) {
|
|
.width-btn {
|
|
width: auto;
|
|
}
|
|
|
|
.pdBoxGrid {
|
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
grid-template-rows: none;
|
|
grid-auto-flow: unset;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.modal-body {
|
|
height: 75vh;
|
|
}
|
|
|
|
.pdBox {
|
|
padding: 9px;
|
|
}
|
|
|
|
.pdImageBox {
|
|
width: 70px;
|
|
height: 40px;
|
|
}
|
|
|
|
.pdImageBox img {
|
|
width: 70px;
|
|
height: 40px;
|
|
}
|
|
} |