File size: 844 Bytes
3ef3535 | 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 | @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);
}
|