154 lines
2.4 KiB
CSS
154 lines
2.4 KiB
CSS
.dropify-message p {
|
|
font-size: 15px;
|
|
}
|
|
|
|
fieldset,
|
|
legend {
|
|
all: revert;
|
|
}
|
|
|
|
.upload__box {
|
|
padding: 5px;
|
|
}
|
|
|
|
.upload__btn-box {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.upload__img-wrap {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.upload__img-box {
|
|
width: 125px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.upload__img-close {
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 50%;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 10px;
|
|
text-align: center;
|
|
line-height: 24px;
|
|
z-index: 1;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.upload__img-close:after {
|
|
content: "\2716";
|
|
font-size: 14px;
|
|
color: white;
|
|
}
|
|
|
|
.img-bg {
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: cover;
|
|
position: relative;
|
|
padding-bottom: 100%;
|
|
}
|
|
|
|
.dark-login {
|
|
height: 50px;
|
|
}
|
|
|
|
.light-login {
|
|
height: 50px;
|
|
}
|
|
|
|
.fl-wrapper {
|
|
z-index: 99999;
|
|
}
|
|
|
|
.dashboard-switch {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 90px;
|
|
height: 34px;
|
|
}
|
|
|
|
.dashboard-switch input {
|
|
display: none;
|
|
}
|
|
|
|
.dashboard-switch .slider {
|
|
position: absolute;
|
|
cursor: pointer;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: #ca2222;
|
|
-webkit-transition: 0.4s;
|
|
transition: 0.4s;
|
|
}
|
|
|
|
.dashboard-switch .slider:before {
|
|
position: absolute;
|
|
content: "";
|
|
height: 26px;
|
|
width: 26px;
|
|
left: 4px;
|
|
bottom: 4px;
|
|
background-color: white;
|
|
-webkit-transition: 0.4s;
|
|
transition: 0.4s;
|
|
}
|
|
|
|
.dashboard-switch input:checked + .slider {
|
|
background-color: #2ab934;
|
|
}
|
|
|
|
.dashboard-switch input:focus + .slider {
|
|
box-shadow: 0 0 1px #2196f3;
|
|
}
|
|
|
|
.dashboard-switch input:checked + .slider:before {
|
|
-webkit-transform: translateX(55px);
|
|
-ms-transform: translateX(55px);
|
|
transform: translateX(55px);
|
|
}
|
|
|
|
.dashboard-switch .on {
|
|
display: none;
|
|
}
|
|
|
|
.dashboard-switch .on,
|
|
.dashboard-switch .off {
|
|
color: white;
|
|
position: absolute;
|
|
transform: translate(-50%, -50%);
|
|
top: 50%;
|
|
font-size: 12px;
|
|
user-select: none;
|
|
}
|
|
|
|
.dashboard-switch .on{
|
|
left: 40%;
|
|
}
|
|
|
|
.dashboard-switch .off{
|
|
right: 10% !important;
|
|
}
|
|
|
|
.dashboard-switch input:checked + .slider .on {
|
|
display: block;
|
|
}
|
|
|
|
.dashboard-switch input:checked + .slider .off {
|
|
display: none;
|
|
}
|
|
|
|
.dashboard-switch .slider.round {
|
|
border-radius: 34px;
|
|
}
|
|
|
|
.dashboard-switch .slider.round:before {
|
|
border-radius: 50%;
|
|
}
|