vdi/pc-fe/src/pages/welcome/index.less

67 lines
1.4 KiB
Plaintext

.welcomeCon{
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
.showTextCon{
display: flex;
flex-direction: column;
// justify-self: center;
align-items: center;
height: 155px;
justify-content: space-between;
.imgIcon{
display: flex;
flex-direction: column;
.welcomeIcon{
height: 90px;
width: 350px;
}
}
.loadingCon{
width: 96px;
height: 12px;
display: flex;
justify-content: space-between;
align-items: center;
.dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(1, 90, 255, 0.2);
display: flex;
justify-content: space-between;
animation: loading 1.5s infinite ease-in-out;
}
.dot:nth-child(1) {
animation-delay: -0.32s;
}
.dot:nth-child(2) {
animation-delay: -0.16s;
}
@keyframes loading {
0%, 100% {
background: rgba(1, 90, 255, 0.2);
// transform: scale(0.6);
}
25% {
background: rgba(1, 90, 255, 0.5);
// transform: scale(0.8);
}
50% {
background: rgba(1, 90, 255, 1);
// transform: scale(1);
}
75% {
background: rgba(1, 90, 255, 0.5);
// transform: scale(0.8);
}
}
}
}
}