90 lines
1.6 KiB
CSS
90 lines
1.6 KiB
CSS
#my-scrollbar {
|
|
height: auto;
|
|
max-height: 200px;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.errored {
|
|
animation: shake 300ms;
|
|
color: #eb3434 !important;
|
|
background-color: #fef2f2 !important;
|
|
border: 1px solid #eb3434 !important;
|
|
}
|
|
|
|
.goToTop {
|
|
position: fixed;
|
|
bottom: -10px;
|
|
margin-right: 100px;
|
|
z-index: 100;
|
|
color: #fff;
|
|
background-color: #25acacd6;
|
|
}
|
|
|
|
.goToTop:hover {
|
|
color: #fff;
|
|
background-color: #2ca4a4;
|
|
}
|
|
|
|
.btn-create {
|
|
background-color: #84CC16;
|
|
border-radius: 7px;
|
|
color: #ffffff;
|
|
padding: 3px 12px;
|
|
font-size: 12px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
transition: ease-in all .3s;
|
|
}
|
|
|
|
.btn-create:hover {
|
|
background-color: #72b112;
|
|
}
|
|
|
|
.bgColorMonthlySalaryPlus {
|
|
background-color: #D9EBEB;
|
|
position: absolute;
|
|
top: 0;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 110px;
|
|
}
|
|
|
|
.bgColorMonthlySalaryMinus {
|
|
background-color: #FFCECE;
|
|
position: absolute;
|
|
top: 0;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 110px;
|
|
}
|
|
|
|
@media screen and (max-width: 767px) {
|
|
.goToTop {
|
|
position: fixed;
|
|
bottom: 54px;
|
|
margin-right: 39%;
|
|
z-index: 100;
|
|
color: #fff;
|
|
background-color: #25acac70;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 992px) {
|
|
.lessThan992 {
|
|
display: none;
|
|
}
|
|
|
|
#MainModal {
|
|
visibility: visible !important;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 991px) {
|
|
.moreThan992 {
|
|
display: none;
|
|
}
|
|
} |