Auto commit: 2026-02-16T20:51:01.264Z

This commit is contained in:
Flatlogic Bot 2026-02-16 20:51:01 +00:00
parent b09099736e
commit 6b9979b33d

View File

@ -633,6 +633,35 @@ $facebook_link = "https://www.facebook.com/profile.php?id=61587890927489";
position: relative;
transform: scale(0.7);
transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
overflow: hidden;
box-shadow: 0 0 40px rgba(0, 230, 118, 0.4), 0 0 80px rgba(255, 255, 255, 0.1);
}
.qr-modal-content::after {
content: "";
position: absolute;
top: -50%;
left: -150%;
width: 200%;
height: 200%;
background: linear-gradient(
120deg,
transparent,
rgba(255, 255, 255, 0.8),
transparent
);
transform: rotate(10deg);
pointer-events: none;
}
.qr-modal.show .qr-modal-content::after {
animation: modal-shine 4s infinite;
}
@keyframes modal-shine {
0% { left: -150%; }
20% { left: 150%; }
100% { left: 150%; }
}
.qr-modal.show .qr-modal-content {