-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
109 lines (89 loc) · 2.04 KB
/
index.css
File metadata and controls
109 lines (89 loc) · 2.04 KB
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
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--glass-border: rgba(255, 255, 255, 0.08);
--glass-surface: rgba(15, 23, 42, 0.6);
--neon-primary: #6366f1;
--neon-secondary: #06b6d4;
}
body {
background-color: #020617;
color: #e2e8f0;
font-family: 'Inter', system-ui, -apple-system, sans-serif;
overflow-x: hidden;
}
/* Scrollbar Styling */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: #0f172a;
}
::-webkit-scrollbar-thumb {
background: #334155;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #475569;
}
/* Glassmorphism Utilities */
.glass-panel {
background: var(--glass-surface);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid var(--glass-border);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.glass-button {
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(8px);
border: 1px solid rgba(255, 255, 255, 0.05);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-button:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.1);
box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
}
/* Animations */
@keyframes glow {
0%,
100% {
box-shadow: 0 0 5px rgba(99, 102, 241, 0.2);
}
50% {
box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
}
}
@keyframes float {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-5px);
}
}
.animate-glow {
animation: glow 3s infinite;
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
/* Gradient Text */
.text-gradient {
background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.text-gradient-primary {
background: linear-gradient(135deg, #818cf8 0%, #22d3ee 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* Chart Tooltip Customization */
.recharts-tooltip-cursor {
fill: rgba(99, 102, 241, 0.1);
}