You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
955 B
Plaintext

3 weeks ago
.container {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: #fff;
border-radius: 4px;
padding: 20px;
.developingBox {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 60px 80px;
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
border-radius: 12px;
box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
.developingText {
font-size: 32px;
font-weight: 600;
color: #ffffff;
letter-spacing: 4px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
animation: pulse 2s ease-in-out infinite;
}
}
}
@keyframes pulse {
0%, 100% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: 0.8;
transform: scale(1.05);
}
}