Spaces:
Running
Running
File size: 910 Bytes
6e8f694 ae793e3 ebf6f5e 6e8f694 ebf6f5e 6e8f694 ebf6f5e 6e8f694 ae793e3 6e8f694 ae793e3 ebf6f5e 6e8f694 ae793e3 6e8f694 | 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 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
:root {
--primary: #6366f1;
--primary-dark: #4f46e5;
--secondary: #10b981;
--dark: #1e293b;
--darker: #0f172a;
--light: #f8fafc;
--border: rgba(255,255,255,.08);
--text: rgba(255,255,255,.92);
--muted: rgba(255,255,255,.60);
--muted2: rgba(255,255,255,.45);
}
body {
font-family: 'Inter', sans-serif;
background: linear-gradient(to bottom right, var(--darker), var(--dark));
min-height: 100vh;
}
.container {
max-width: 1200px;
}
.glass-effect {
background: rgba(255, 255, 255, .05);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid var(--border);
}
.topbar {
background: rgba(10,16,28,.72);
}
.hover-glow:hover {
box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
transition: all 0.3s ease;
} |