index.php dosyasının içinde header alanındaki <style> tagının altına şunları ekleyiniz
Tam kod şu şekilde olacak
<style>
.exx {
box-shadow: 0 4px 10px 0 rgba(33, 33, 33, 0.15);
border-radius: 4px;
position: relative;
overflow: hidden;
opacity: 0.4;
cursor: not-allowed !important;
pointer-events: none;
}
.exx::before {
content: "";
display: block;
position: absolute;
left: -300px;
top: 0;
height: 100%;
width: 300px;
background: linear-gradient(to right, transparent 0%, black 50%, transparent 100%);
animation: load 0.7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
z-index: 99;
cursor: wait;
}
@keyframes load {
from {
left: -300px;
}
to {
left: 100%;
}
}
@media only screen and (max-width: 600px) {
.none-992 {
display: none;
}
.login-21 .bg-img,
.login-21 .bg-color-10 {
min-height: 50vh;
}
.none-992 {
display: block !important;
}
}
</style>