Harmony/orders/static/thx.css

42 lines
1.0 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

.thank-you-page {
text-align: center;
padding: 50px 20px;
background-color: rgba(0, 0, 0, 0.8);
color: #FFF;
border-radius: 15px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
margin: 20px auto;
width: 80%;
max-width: 600px;
}
.thank-you-title {
color: #FFD700; /* Золотой цвет */
font-size: 2.5rem;
margin-bottom: 30px;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}
.thank-you-text {
font-size: 1.2rem;
line-height: 1.6;
margin-bottom: 25px;
}
.mystical-decor {
margin-top: 30px;
}
.mystical-icon {
width: 100px; /* Измените размер в соответствии с вашим дизайном */
height: 100px; /* Установите высоту равной ширине для круглой формы */
border-radius: 50%; /* Делает элемент круглым */
animation: spin 20s linear infinite;
}
@keyframes spin {
from {transform: rotate(0deg);}
to {transform: rotate(360deg);}
}