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

82 lines
1.9 KiB
Plaintext
Raw Normal View History

2025-08-21 10:06:49 +00:00
.welcomeCon{
2025-08-22 10:59:43 +00:00
width: 100%;
height: 100%;
2025-08-21 10:06:49 +00:00
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
.showTextCon{
display: flex;
flex-direction: column;
justify-self: center;
align-items: center;
.name{
height: 80px;
margin-bottom: 20px;
font-size: 36px;
color: #e5e5e5;
display: flex;
.welcomeIcon{
height: 66px;
width: 70px;
margin-right: 20px;
}
.textCon{
height: 120px;
display: flex;
flex-direction: column;
justify-content: space-between;
.text{
display: flex;
flex-direction: column;
.nameText{
font-size: 28px;
}
}
.loadingCon{
width: 96px;
height: 12px;
display: flex;
justify-content: space-between;
align-items: center;
.dot {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.3);
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-color: rgba(255, 255, 255, 0.3);
transform: scale(0.6);
}
25% {
background-color: rgba(255, 255, 255, 0.6);
transform: scale(0.8);
}
50% {
background-color: rgba(255, 255, 255, 1);
transform: scale(1);
}
75% {
background-color: rgba(255, 255, 255, 0.6);
transform: scale(0.8);
}
}
}
}
}
}
}