This commit is contained in:
Taric Xin
2022-03-24 08:57:33 +08:00
parent 7d740ae559
commit 9ae46c9957
10 changed files with 456 additions and 6 deletions

View File

@ -11,7 +11,49 @@
box-shadow: 0px 5px 5px #d1d1d1;
}
nz-content {
background : url('../../../assets/images/login/login-bg.jpg') 100% 100% no-repeat;
background-size: cover
}
passport-login {
background: transparent;
}
.earth {
animation : eatthAnimation 60s linear infinite;
-webkit-animation: eatthAnimation 60s linear infinite;
max-width : 100%;
margin-top : -50px;
max-height : calc(100% - 64px);
border-radius : 40%;
}
.earth:hover {
animation-play-state : paused;
-webkit-animation-play-state: paused;
}
@keyframes eatthAnimation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@-webkit-keyframes eatthAnimation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
}
}