136 lines
2.4 KiB
CSS
136 lines
2.4 KiB
CSS
.errored {
|
|
animation: shake 300ms;
|
|
color: #eb3434 !important;
|
|
background-color: #fef2f2 !important;
|
|
border: 1px solid #eb3434 !important;
|
|
}
|
|
|
|
.modal-dialog, .modal-content {
|
|
height: 420px;
|
|
}
|
|
|
|
.timeWorkTitle {
|
|
color: #5C5C5C;
|
|
font-weight: 600;
|
|
font-size: 12px;
|
|
margin: auto 0 auto 6px;
|
|
}
|
|
|
|
.groupBox {
|
|
background-color: #F5F5F5;
|
|
border-radius: 10px;
|
|
border: 1px solid #E7E7E7;
|
|
padding: 6px;
|
|
margin: 6px 3px;
|
|
}
|
|
|
|
.groupBox .form-control {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.groupBox .form-control::placeholder {
|
|
color: #bfbfbf;
|
|
opacity: 1; /* Firefox */
|
|
}
|
|
|
|
.groupBox .form-control::-ms-input-placeholder { /* Edge 12-18 */
|
|
color: #bfbfbf;
|
|
}
|
|
|
|
.btnAddTimeWork {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: #84CC16;
|
|
border-radius: 5px;
|
|
color: #ffffff;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
.btnRemoveTimeWork {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: #F87171;
|
|
border-radius: 7px;
|
|
padding: 3px;
|
|
width: 30px;
|
|
height: 30px;
|
|
}
|
|
|
|
.ShowMessage {
|
|
position: absolute;
|
|
background: #dfdfdf;
|
|
width: 100%;
|
|
top: 0;
|
|
right: 0;
|
|
height: 100%;
|
|
border-radius: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
|
|
.btn-workTimeOption-container {
|
|
display: flex;
|
|
}
|
|
|
|
.radio-workTimeOption {
|
|
display: none;
|
|
}
|
|
|
|
.radio-label-workTimeOption {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: #0F8080;
|
|
background-color: #DDF4F4;
|
|
text-align: center;
|
|
padding: 8px 16px;
|
|
border-radius: 4px;
|
|
margin: auto 6px;
|
|
transition: all 0.3s ease-in-out;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.radio-label-workTimeOption:hover {
|
|
color: #FFFFFF;
|
|
background-color: #1c7474;
|
|
border-color: #23A8A8;
|
|
}
|
|
|
|
.radio-workTimeOption:checked + .radio-label-workTimeOption {
|
|
color: #FFFFFF;
|
|
background: linear-gradient(93.83deg, #2EBEBE 1.59%, #1E9D9D 47.86%, #0B7878 101.16%);
|
|
}
|
|
|
|
.show-disorganized {
|
|
height: 81px;
|
|
background: #F2FEFF;
|
|
border: 1px solid #B0EBF0;
|
|
border-radius: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.show-disorganized p {
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
color: #1B929C;
|
|
}
|
|
|
|
.profilePasswordModal .modal-header h5 {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.modal-title {
|
|
font-size: 16px;
|
|
color: #1F2937;
|
|
font-weight: 600;
|
|
}
|
|
|