CoolFace
Apppublic

progarin/no-entry-zone

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
style.css24 linesDownload Raw Back to root
1@keyframes shake {2    0%, 100% { transform: translateX(0); }3    20%, 60% { transform: translateX(-5px); }4    40%, 80% { transform: translateX(5px); }5}6 7body {8    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;9}10 11/* Add subtle animation to the alert icon */12[data-feather="alert-octagon"] {13    animation: shake 0.8s cubic-bezier(.36,.07,.19,.97) both;14}15 16/* Custom hover effect for buttons */17a:hover {18    transform: translateY(-1px);19}20 21/* Transition for smooth hover effects */22a, button {23    transition: all 0.2s ease;24}