-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
146 lines (131 loc) · 7.97 KB
/
index.css
File metadata and controls
146 lines (131 loc) · 7.97 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
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
@tailwind base;
@tailwind components;
@tailwind utilities;
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--electric: #4DF0C5;
--electric-dim: rgba(77,240,197,0.12);
--electric-glow: rgba(77,240,197,0.45);
--crimson: #FF5757;
--amber: #FFAA00;
--frost: #60ABFF;
--violet: #B47EFF;
--bg-void: #03030A;
--bg-deep: #07070F;
--bg-base: #0C0C1A;
--bg-surface: #111127;
--bg-raised: #161630;
--bg-card: rgba(14,14,28,0.85);
--border-dim: rgba(77,240,197,0.07);
--border: rgba(77,240,197,0.14);
--border-bright: rgba(77,240,197,0.28);
--text-primary: #EEF2FF;
--text-secondary: rgba(238,242,255,0.55);
--text-muted: rgba(238,242,255,0.28);
}
html, body {
background: var(--bg-void);
color: var(--text-primary);
font-family: 'DM Sans', sans-serif;
overflow-x: hidden;
min-height: 100vh;
-webkit-font-smoothing: antialiased;
}
body::before {
content: '';
position: fixed; inset: 0;
background-image: linear-gradient(rgba(77,240,197,0.016) 1px, transparent 1px), linear-gradient(90deg, rgba(77,240,197,0.016) 1px, transparent 1px);
background-size: 48px 48px;
pointer-events: none; z-index: 0;
}
body::after {
content: '';
position: fixed; top: 0; left: 0; right: 0; height: 75vh;
background: radial-gradient(ellipse 90% 55% at 15% -5%, rgba(77,240,197,0.065) 0%, transparent 65%), radial-gradient(ellipse 60% 45% at 85% 105%, rgba(96,171,255,0.04) 0%, transparent 65%);
pointer-events: none; z-index: 0;
}
#root { position: relative; z-index: 1; }
::-webkit-scrollbar { width: 3px; height: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(77,240,197,0.2); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: rgba(77,240,197,0.4); }
.card-glow {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 20px;
backdrop-filter: blur(28px);
-webkit-backdrop-filter: blur(28px);
box-shadow: 0 4px 32px rgba(0,0,0,0.38), inset 0 1px 0 rgba(77,240,197,0.06);
transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.card-glow:hover {
border-color: rgba(77,240,197,0.24);
box-shadow: 0 8px 48px rgba(0,0,0,0.5), 0 0 60px rgba(77,240,197,0.05), inset 0 1px 0 rgba(77,240,197,0.1);
transform: translateY(-1px);
}
.btn-primary {
background: linear-gradient(135deg, #4DF0C5 0%, #00D4A8 55%, #00A888 100%);
color: #030310; font-family: 'Syne', sans-serif;
font-weight: 700; font-size: 14px; border-radius: 12px;
padding: 11px 26px; border: none; cursor: pointer;
transition: all 0.22s cubic-bezier(0.34,1.56,0.64,1);
box-shadow: 0 4px 20px rgba(77,240,197,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
letter-spacing: -0.01em; position: relative; overflow: hidden;
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 32px rgba(77,240,197,0.5), inset 0 1px 0 rgba(255,255,255,0.18); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-ghost {
background: rgba(77,240,197,0.07); border: 1px solid var(--border);
color: var(--electric); font-family: 'DM Sans', sans-serif;
font-weight: 600; font-size: 13px; border-radius: 11px;
padding: 9px 18px; cursor: pointer;
transition: all 0.2s; display: inline-flex; align-items: center; gap: 7px;
}
.btn-ghost:hover { background: rgba(77,240,197,0.13); border-color: var(--border-bright); box-shadow: 0 0 20px rgba(77,240,197,0.1); }
.input-field {
background: rgba(8,8,18,0.75); border: 1px solid var(--border);
border-radius: 11px; color: var(--text-primary);
padding: 10px 14px; font-family: 'DM Sans', sans-serif;
font-size: 14px; transition: all 0.2s; width: 100%; outline: none;
}
.input-field:focus { border-color: rgba(77,240,197,0.4); background: rgba(12,12,24,0.9); box-shadow: 0 0 0 3px rgba(77,240,197,0.08); }
.input-field::placeholder { color: var(--text-muted); }
.input-field option { background: #0C0C1A; color: var(--text-primary); }
.status-approve { color: #4DF0C5; background: rgba(77,240,197,0.1); border: 1px solid rgba(77,240,197,0.2); }
.status-flag { color: #FFAA00; background: rgba(255,170,0,0.1); border: 1px solid rgba(255,170,0,0.2); }
.status-block { color: #FF5757; background: rgba(255,87,87,0.1); border: 1px solid rgba(255,87,87,0.2); }
.nav-link {
display: flex; align-items: center; gap: 11px;
padding: 10px 14px; border-radius: 12px;
color: var(--text-secondary); font-family: 'DM Sans', sans-serif;
font-weight: 500; font-size: 14px;
transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
cursor: pointer; text-decoration: none; border: 1px solid transparent;
position: relative;
}
.nav-link:hover { color: rgba(238,242,255,0.88); background: rgba(77,240,197,0.05); border-color: rgba(77,240,197,0.09); }
.nav-link.active { color: #4DF0C5; background: linear-gradient(135deg, rgba(77,240,197,0.1), rgba(77,240,197,0.04)); border-color: rgba(77,240,197,0.2); font-weight: 600; box-shadow: 0 0 24px rgba(77,240,197,0.07), inset 0 1px 0 rgba(77,240,197,0.12); }
.nav-link.active::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 20px; border-radius: 0 3px 3px 0; background: linear-gradient(180deg, #4DF0C5, #00A888); box-shadow: 0 0 12px rgba(77,240,197,0.7); }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: #4DF0C5; box-shadow: 0 0 0 0 rgba(77,240,197,0.5); animation: pulseRing 2.2s ease-in-out infinite; }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(77,240,197,0.55); } 70% { box-shadow: 0 0 0 9px rgba(77,240,197,0); } 100% { box-shadow: 0 0 0 0 rgba(77,240,197,0); } }
.risk-bar { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.06); overflow: hidden; }
.risk-bar-fill { height: 100%; border-radius: 3px; transition: width 0.85s cubic-bezier(0.4,0,0.2,1); position: relative; }
.risk-bar-fill::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 16px; background: rgba(255,255,255,0.3); filter: blur(4px); }
.segment-control { display: flex; gap: 3px; background: rgba(8,8,18,0.65); border: 1px solid var(--border-dim); border-radius: 12px; padding: 4px; }
.segment-btn { padding: 6px 16px; border-radius: 9px; font-size: 12px; font-weight: 700; cursor: pointer; border: none; letter-spacing: 0.05em; transition: all 0.2s; color: var(--text-muted); background: transparent; font-family: 'DM Sans', sans-serif; }
.segment-btn.active { background: var(--bg-raised); color: var(--electric); box-shadow: 0 2px 10px rgba(0,0,0,0.35), 0 0 0 1px rgba(77,240,197,0.15); }
.segment-btn:not(.active):hover { color: var(--text-secondary); background: rgba(255,255,255,0.04); }
.spinner { width: 40px; height: 40px; border: 2px solid rgba(77,240,197,0.12); border-top-color: #4DF0C5; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes fadeInUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInScale { from { opacity:0; transform:scale(0.94); } to { opacity:1; transform:scale(1); } }
@keyframes slideInLeft { from { opacity:0; transform:translateX(-16px); } to { opacity:1; transform:translateX(0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes numberPop { 0% { transform:scale(0.7); opacity:0; } 70% { transform:scale(1.07); } 100% { transform:scale(1); opacity:1; } }
.animate-fadeInUp { animation: fadeInUp 0.5s cubic-bezier(0.4,0,0.2,1) both; }
.animate-fadeInScale { animation: fadeInScale 0.4s cubic-bezier(0.4,0,0.2,1) both; }
.animate-numberPop { animation: numberPop 0.5s cubic-bezier(0.34,1.56,0.64,1) both; }
.animate-slideInLeft { animation: slideInLeft 0.4s ease both; }
.shimmer { background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.03) 75%); background-size: 200% 100%; animation: shimmer 1.6s infinite; }
.glow-text { color: #4DF0C5; text-shadow: 0 0 24px rgba(77,240,197,0.55); }