-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
211 lines (199 loc) · 5.73 KB
/
Copy pathstyle.css
File metadata and controls
211 lines (199 loc) · 5.73 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#0a0c10">
<title>SMSNERO ⚡</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Barlow:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
:root {
--bg: #0a0c10;
--bg-card: #13161e;
--bg-input: #1a1e2a;
--bg-input2: #1f2433;
--border: rgba(255,255,255,0.07);
--accent: #f5a623;
--accent2: #ff7a1a;
--accent-glow: rgba(245,166,35,0.3);
--green: #00e676;
--text-1: #ffffff;
--text-2: #8b95aa;
--text-3: #4a5168;
--tab-active:#f5a623;
--font-head: 'Barlow Condensed', sans-serif;
--font-body: 'Barlow', sans-serif;
--r: 14px;
--r-sm: 10px;
--r-lg: 20px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
background: var(--bg);
color: var(--text-1);
font-family: var(--font-body);
min-height: 100vh;
display: flex;
align-items: flex-start;
justify-content: center;
padding: 0 0 40px;
}
/* ── GRID TEXTURE ── */
body::before {
content: '';
position: fixed; inset: 0; z-index: 0;
background-image:
linear-gradient(rgba(245,166,35,0.025) 1px, transparent 1px),
linear-gradient(90deg, rgba(245,166,35,0.025) 1px, transparent 1px);
background-size: 36px 36px;
pointer-events: none;
}
/* ── AMBIENT ORBS ── */
.orb {
position: fixed; border-radius: 50%;
filter: blur(90px); pointer-events: none; z-index: 0;
}
.orb-1 { width: 460px; height: 460px; top: -140px; left: 50%; transform: translateX(-50%);
background: radial-gradient(circle, rgba(245,166,35,0.11), transparent 70%); }
.orb-2 { width: 300px; height: 300px; bottom: 0; right: 0;
background: radial-gradient(circle, rgba(255,80,20,0.07), transparent 70%); }
/* ── APP SHELL ── */
.app {
position: relative; z-index: 1;
width: 100%; max-width: 440px;
padding: 40px 20px 20px;
display: flex; flex-direction: column; align-items: center;
gap: 6px;
}
/* ── LOGO ── */
.logo-wrap {
display: flex; flex-direction: column; align-items: center; gap: 6px;
margin-bottom: 10px;
animation: fadeDown 0.5s ease both;
}
.logo {
font-family: var(--font-head);
font-size: 42px; font-weight: 900;
letter-spacing: 3px; text-transform: uppercase;
display: flex; align-items: center; gap: 10px;
line-height: 1;
}
.logo-bolt {
font-size: 36px;
filter: drop-shadow(0 0 14px rgba(245,166,35,0.8));
animation: bolt-glow 2s ease-in-out infinite alternate;
}
@keyframes bolt-glow {
from { filter: drop-shadow(0 0 8px rgba(245,166,35,0.6)); }
to { filter: drop-shadow(0 0 28px rgba(245,166,35,1)); }
}
.node-status {
display: flex; align-items: center; gap: 6px;
font-size: 12px; font-weight: 500; letter-spacing: 0.5px;
}
.node-dot {
width: 7px; height: 7px; border-radius: 50%;
background: var(--green);
box-shadow: 0 0 8px rgba(0,230,118,0.8);
animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.node-text { color: var(--green); }
.node-label { color: var(--text-2); }
/* ── TABS ── */
.tabs {
width: 100%;
background: rgba(255,255,255,0.04);
border: 1px solid var(--border);
border-radius: 50px;
padding: 4px;
display: flex; gap: 2px;
margin: 14px 0 6px;
animation: fadeUp 0.45s 0.1s ease both;
}
.tab {
flex: 1; padding: 9px 8px;
border-radius: 50px;
font-family: var(--font-head);
font-size: 14px; font-weight: 700; letter-spacing: 1px;
text-transform: uppercase;
text-align: center;
cursor: pointer; border: none; background: transparent;
color: var(--text-2);
transition: all 0.22s ease;
-webkit-tap-highlight-color: transparent;
}
.tab.active {
background: var(--accent);
color: #000;
box-shadow: 0 2px 16px rgba(245,166,35,0.4);
}
.tab:not(.active):hover { color: var(--text-1); }
/* ── MAIN CARD ── */
.card {
width: 100%;
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--r-lg);
padding: 28px 22px 24px;
position: relative; overflow: hidden;
animation: fadeUp 0.45s 0.18s ease both;
}
.card::before {
content: '';
position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
background: linear-gradient(90deg, transparent, rgba(245,166,35,0.4), transparent);
}
.card-title {
font-family: var(--font-head);
font-size: 26px; font-weight: 800;
letter-spacing: 0.5px; text-align: center;
margin-bottom: 22px;
}
/* ── FORM FIELDS ── */
.field { margin-bottom: 14px; }
.field-label {
font-size: 11px; font-weight: 500; letter-spacing: 1px;
color: var(--text-2); text-transform: uppercase;
margin-bottom: 6px; display: block;
}
.select-wrap { position: relative; }
.select-wrap select {
width: 100%;
background: var(--bg-input);
border: 1px solid var(--border);
border-radius: var(--r-sm);
color: var(--text-1);
font-family: var(--font-body);
font-size: 15px; font-weight: 500;
padding: 13px 40px 13px 16px;
appearance: none; cursor: pointer;
outline: none;
transition: border-color 0.2s, box-shadow 0.2s;
}
.select-wrap select:focus {
border-color: rgba(245,166,35,0.5);
box-shadow: 0 0 0 3px rgba(245,166,35,0.08);
}
.select-wrap::after {
content: '▾';
position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
color: var(--text-2); font-size: 13px; pointer-events: none;
}
/* ── PRICE DISPLAY ── */
.price-row {
text-align: center;
padding: 14px 0 6px;
}
.price-amount {
font-family: var(--font-head);
font-size: 34px; font-weight: 900;
letter-spacing: 1px;
}
.price-unit {
color: var(--accent);
font-size: 28px; font-weight: 800;
margin-left: 6px;
}