Spaces:
Running
Running
| /* Base Styles */ | |
| body { | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } | |
| /* Custom Scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 10px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: #0f172a; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #334155; | |
| border-radius: 5px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: #4f46e5; | |
| } | |
| /* Utility animations */ | |
| @keyframes fade-in-up { | |
| from { | |
| opacity: 0; | |
| transform: translateY(20px); | |
| } | |
| to { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| } | |
| .animate-fade-in-up { | |
| animation: fade-in-up 0.8s ease-out forwards; | |
| } | |
| /* Selection color override if not using Tailwind plugin */ | |
| ::selection { | |
| background: #4f46e5; | |
| color: #ffffff; | |
| } | |
| /* Smooth focus outlines for accessibility */ | |
| *:focus-visible { | |
| outline: 2px solid #4f46e5; | |
| outline-offset: 2px; | |
| } |