Ver Fonte

no message

student há 4 horas atrás
pai
commit
ce210f5a9b
1 ficheiros alterados com 15 adições e 2 exclusões
  1. 15 2
      website/wwwroot/Millions/css/site.css

+ 15 - 2
website/wwwroot/Millions/css/site.css

@@ -195,18 +195,31 @@ body::-webkit-scrollbar,
 
 /* Animation for Play Now button pulse */
 .animate-pulse-play {
-    animation: pulsePlayInward 1.5s ease-in-out infinite;
+    animation: pulsePlayInward 1.2s ease-in-out infinite;
+    will-change: transform, filter, opacity;
 }
 
 @keyframes pulsePlayInward {
     0% {
+        scale: 1;
+        opacity: 1;
         box-shadow: 0 1.8px 8.1px rgba(0, 0, 0, 0.55), inset 0 0 0 0 rgba(255, 255, 255, 0.6);
+        filter: brightness(1) saturate(1);
     }
     50% {
-        box-shadow: 0 1.8px 15px rgba(255, 255, 255, 0.4), inset 0 0 20px 2px rgba(255, 255, 255, 0.5);
+        scale: 1.18;
+        opacity: 0.88;
+        box-shadow:
+            0 3px 28px rgba(255, 255, 255, 0.65),
+            0 0 34px rgba(0, 98, 255, 0.45),
+            inset 0 0 30px 5px rgba(255, 255, 255, 0.6);
+        filter: brightness(1.28) saturate(1.15);
     }
     100% {
+        scale: 1;
+        opacity: 1;
         box-shadow: 0 1.8px 8.1px rgba(0, 0, 0, 0.55), inset 0 0 0 0 rgba(255, 255, 255, 0.6);
+        filter: brightness(1) saturate(1);
     }
 }