AI_Resume_Scanner / frontend /src /app /globals.css
majidali1256's picture
feat(step-6): Next.js frontend dashboard with Framer Motion animations & responsive UI
3ef3535
Raw
History Blame Contribute Delete
844 Bytes
@import "tailwindcss";
@layer base {
body {
background-color: #090d16;
color: #f8fafc;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
}
.glass-card {
background: rgba(15, 23, 42, 0.75);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.glass-card-hover {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card-hover:hover {
border-color: rgba(99, 102, 241, 0.4);
box-shadow: 0 0 25px -5px rgba(99, 102, 241, 0.25);
transform: translateY(-2px);
}
.glow-indigo {
box-shadow: 0 0 35px -5px rgba(99, 102, 241, 0.35);
}
.glow-emerald {
box-shadow: 0 0 35px -5px rgba(16, 185, 129, 0.35);
}
.glow-amber {
box-shadow: 0 0 35px -5px rgba(245, 158, 11, 0.35);
}