44 lines
963 B
CSS
44 lines
963 B
CSS
/* Solo estilos mínimos que Tailwind no puede hacer - TODO LO DEMÁS es Tailwind */
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
|
|
|
|
/* Smooth scrolling */
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
/* Optimizaciones de renderizado */
|
|
body {
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
/* Animación personalizada para glassmorphism */
|
|
@keyframes glow {
|
|
0%, 100% { opacity: 0.5; }
|
|
50% { opacity: 0.8; }
|
|
}
|
|
|
|
.animate-glow {
|
|
animation: glow 3s ease-in-out infinite;
|
|
}
|
|
|
|
/* Scrollbar personalizado (opcional, moderno) */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #0f172a;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: linear-gradient(180deg, #6366f1, #8b5cf6);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: linear-gradient(180deg, #818cf8, #a78bfa);
|
|
}
|