File size: 836 Bytes
7596470 860c32c 7596470 860c32c 7596470 d538931 7596470 d538931 7596470 860c32c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | /* Cute styles for home page */
.home-container {
background: rgba(255, 255, 255, 0.8);
border-radius: 20px;
padding: 30px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
text-align: center;
}
.daily-message, .daily-blessing, .daily-horoscope {
background: linear-gradient(to right, #FFD700, #FF69B4);
border: 2px dashed #1E90FF;
border-radius: 15px;
padding: 20px;
margin: 20px 0;
animation: fadeIn 1s ease-in;
}
.countdown {
font-size: 2rem;
color: #FF8C00;
animation: bounce 2s infinite;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
40% { transform: translateY(-10px); }
60% { transform: translateY(-5px); }
} |