Вернуть прежний логотип стартового экрана

This commit is contained in:
AidarKC
2026-07-20 21:34:44 +04:00
parent 4e674af4ed
commit 65703f0fc4
4 changed files with 25 additions and 26 deletions
+22 -12
View File
@@ -473,7 +473,10 @@
width: 100%;
height: 100%;
object-fit: contain;
filter: none;
filter:
drop-shadow(0 0 8px rgba(255, 211, 121, 0.72))
drop-shadow(0 8px 22px rgba(225, 158, 48, 0.38));
animation: shine-logo-breathe 4.8s ease-in-out infinite;
}
.auth-logo-wrap {
@@ -488,16 +491,9 @@
inset: 16%;
z-index: -1;
border-radius: 50%;
background:
radial-gradient(circle, rgba(255, 216, 120, 0.32) 0%, rgba(214, 155, 56, 0.18) 42%, transparent 72%);
filter: blur(24px);
opacity: 0;
background: rgba(214, 155, 56, 0.2);
filter: blur(30px);
animation: shine-halo-breathe 4.8s ease-in-out infinite;
transition: opacity 420ms ease;
}
.auth-logo-wrap--loaded::before {
opacity: 0.66;
}
.auth-brand {
@@ -676,9 +672,22 @@
color: rgba(216, 226, 247, 0.9);
}
@keyframes shine-logo-breathe {
0%, 100% {
filter:
drop-shadow(0 0 8px rgba(255, 211, 121, 0.62))
drop-shadow(0 8px 22px rgba(225, 158, 48, 0.34));
}
50% {
filter:
drop-shadow(0 0 14px rgba(255, 220, 147, 0.88))
drop-shadow(0 10px 28px rgba(225, 158, 48, 0.5));
}
}
@keyframes shine-halo-breathe {
0%, 100% { transform: scale(0.96); }
50% { transform: scale(1.05); }
0%, 100% { opacity: 0.66; transform: scale(0.96); }
50% { opacity: 1; transform: scale(1.05); }
}
@media (min-width: 768px) {
@@ -712,6 +721,7 @@
}
@media (prefers-reduced-motion: reduce) {
.auth-logo,
.auth-logo-wrap::before,
.shine-btn {
animation: none;