Spaces:
Sleeping
Sleeping
File size: 3,967 Bytes
4b445f6 | 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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | @import "tailwindcss";
:root {
--background: #050507;
--foreground: #f4f4f5;
--glass-bg: rgba(255, 255, 255, 0.03);
--glass-border: rgba(255, 255, 255, 0.06);
--glass-hover: rgba(255, 255, 255, 0.06);
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
body {
background: var(--background);
color: var(--foreground);
font-family: var(--font-sans, system-ui, -apple-system, sans-serif);
}
/* βββ Dot grid background βββ */
.dot-grid {
background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
background-size: 32px 32px;
}
/* βββ Animated gradient orbs βββ */
.gradient-orb {
position: absolute;
border-radius: 50%;
filter: blur(120px);
opacity: 0.15;
pointer-events: none;
animation: orbFloat 20s ease-in-out infinite;
}
.gradient-orb-1 {
width: 600px;
height: 600px;
background: linear-gradient(135deg, #7c3aed, #6d28d9);
top: -200px;
right: -100px;
animation-delay: 0s;
}
.gradient-orb-2 {
width: 500px;
height: 500px;
background: linear-gradient(135deg, #06b6d4, #0891b2);
bottom: -150px;
left: -100px;
animation-delay: -7s;
}
.gradient-orb-3 {
width: 400px;
height: 400px;
background: linear-gradient(135deg, #ec4899, #be185d);
top: 40%;
left: 50%;
animation-delay: -14s;
}
@keyframes orbFloat {
0%, 100% { transform: translate(0, 0) scale(1); }
25% { transform: translate(30px, -40px) scale(1.05); }
50% { transform: translate(-20px, 20px) scale(0.95); }
75% { transform: translate(40px, 30px) scale(1.03); }
}
/* βββ Glass card βββ */
.glass {
background: var(--glass-bg);
border: 1px solid var(--glass-border);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
}
.glass-hover:hover {
background: var(--glass-hover);
border-color: rgba(255, 255, 255, 0.1);
}
/* βββ Glow effects βββ */
.glow-violet { box-shadow: 0 0 40px -10px rgba(139, 92, 246, 0.3); }
.glow-green { box-shadow: 0 0 40px -10px rgba(34, 197, 94, 0.3); }
.glow-red { box-shadow: 0 0 40px -10px rgba(239, 68, 68, 0.3); }
.glow-amber { box-shadow: 0 0 40px -10px rgba(245, 158, 11, 0.3); }
/* βββ Gradient text βββ */
.text-gradient {
background: linear-gradient(135deg, #c4b5fd 0%, #818cf8 50%, #6d28d9 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.text-gradient-cyan {
background: linear-gradient(135deg, #67e8f9 0%, #22d3ee 50%, #06b6d4 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* βββ Shimmer border animation βββ */
@keyframes shimmer {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
}
.shimmer-border {
background: linear-gradient(
90deg,
transparent 0%,
rgba(139, 92, 246, 0.15) 25%,
rgba(6, 182, 212, 0.15) 50%,
rgba(139, 92, 246, 0.15) 75%,
transparent 100%
);
background-size: 200% 100%;
animation: shimmer 6s ease-in-out infinite;
}
/* βββ Scrollbar βββ */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: rgba(113, 113, 122, 0.3);
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(113, 113, 122, 0.5);
}
/* βββ Noise texture overlay βββ */
.noise::before {
content: "";
position: fixed;
inset: 0;
z-index: 100;
pointer-events: none;
opacity: 0.015;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
|