File size: 1,340 Bytes
8fb4cca | 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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | @tailwind base;
@tailwind components;
@tailwind utilities;
/* Custom Global Styles */
body {
background-color: #fdfdfd;
-webkit-tap-highlight-color: transparent;
overscroll-behavior-y: none;
}
.custom-scrollbar::-webkit-scrollbar {
width: 6px;
height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background-color: rgba(244, 63, 94, 0.3);
border-radius: 20px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background-color: rgba(244, 63, 94, 0.6);
}
.animate-scan { animation: scan 2s linear infinite; }
.animate-swing { animation: swing 3s ease-in-out infinite; }
/* Live Effects Utility Classes */
.effect-breath { animation: breathing 5s ease-in-out infinite; }
.effect-glitch { animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite; }
.effect-particles::before {
content: '';
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
background-image: radial-gradient(white 1px, transparent 1px);
background-size: 20px 20px;
opacity: 0.3;
animation: float 3s linear infinite;
pointer-events: none;
}
/* Low Power Mode Disables */
body.low-power .effect-breath,
body.low-power .effect-glitch,
body.low-power .animate-scan {
animation: none !important;
} |