@jjlmoya/utils-finance 1.13.0 → 1.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/tool/compoundInterest/compound-interest-calculator.css +315 -69
- package/src/tool/courtFeeCalculator/spanish-court-fees-calculator.css +4 -4
- package/src/tool/debtSnowball/debt-snowball-calculator.css +21 -21
- package/src/tool/fireCalculator/four-percent-rule-fire-calculator.css +2 -2
- package/src/tool/ibanBicSwiftConverter/iban-to-bic-swift-converter.css +7 -7
- package/src/tool/lateInterest/late-interest-calculator.css +8 -8
- package/src/tool/legalInterestRate/legal-interest-on-money-spain.css +15 -15
- package/src/tool/lotteryOptimizer/spain-lottery-optimizer.css +524 -7
- package/src/tool/percentageCalculator/percentage-calculator.css +20 -0
- package/src/tool/rentIncreaseCalculator/rent-increase-calculator.css +6 -6
package/package.json
CHANGED
|
@@ -1,79 +1,325 @@
|
|
|
1
|
-
.cic-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
.cic-root {
|
|
2
|
+
--cic-accent: #10b981;
|
|
3
|
+
--cic-accent-text: #059669;
|
|
4
|
+
--cic-accent-icon-bg: #d1fae5;
|
|
5
|
+
--cic-bg: #fff;
|
|
6
|
+
--cic-bg-panel: rgba(248, 250, 252, 0.3);
|
|
7
|
+
--cic-bg-card: #fff;
|
|
8
|
+
--cic-bg-header: rgba(248, 250, 252, 0.5);
|
|
9
|
+
--cic-border: #e2e8f0;
|
|
10
|
+
--cic-border-subtle: #f1f5f9;
|
|
11
|
+
--cic-text: #0f172a;
|
|
12
|
+
--cic-text-muted: #64748b;
|
|
13
|
+
--cic-text-subtle: #94a3b8;
|
|
14
|
+
--cic-input-bg: #fff;
|
|
15
|
+
--cic-input-border: #e2e8f0;
|
|
16
|
+
--cic-summary-bg: #fff;
|
|
17
|
+
--cic-insight-bg: #ecfdf5;
|
|
18
|
+
--cic-insight-text: #065f46;
|
|
4
19
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
20
|
+
background: var(--cic-bg);
|
|
21
|
+
border-radius: 1.5rem;
|
|
22
|
+
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
|
|
23
|
+
border: 1px solid var(--cic-border-subtle);
|
|
24
|
+
overflow: hidden;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.theme-dark .cic-root {
|
|
28
|
+
--cic-accent-text: #34d399;
|
|
29
|
+
--cic-accent-icon-bg: rgba(16, 185, 129, 0.2);
|
|
30
|
+
--cic-bg: #1e293b;
|
|
31
|
+
--cic-bg-panel: rgba(15, 23, 42, 0.1);
|
|
32
|
+
--cic-bg-card: #1e293b;
|
|
33
|
+
--cic-bg-header: rgba(30, 41, 59, 0.5);
|
|
34
|
+
--cic-border: #334155;
|
|
35
|
+
--cic-border-subtle: #334155;
|
|
36
|
+
--cic-text: #fff;
|
|
37
|
+
--cic-text-muted: #94a3b8;
|
|
38
|
+
--cic-text-subtle: #64748b;
|
|
39
|
+
--cic-input-bg: #0f172a;
|
|
40
|
+
--cic-input-border: #334155;
|
|
41
|
+
--cic-summary-bg: #1e293b;
|
|
42
|
+
--cic-insight-bg: rgba(16, 185, 129, 0.1);
|
|
43
|
+
--cic-insight-text: #6ee7b7;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.cic-header {
|
|
47
|
+
padding: 1.5rem;
|
|
48
|
+
border-bottom: 1px solid var(--cic-border-subtle);
|
|
49
|
+
background: var(--cic-bg-header);
|
|
50
|
+
display: flex;
|
|
51
|
+
flex-wrap: wrap;
|
|
52
|
+
gap: 1rem;
|
|
53
|
+
align-items: center;
|
|
54
|
+
justify-content: space-between;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.cic-header-left {
|
|
58
|
+
display: flex;
|
|
59
|
+
align-items: center;
|
|
60
|
+
gap: 0.75rem;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.cic-icon-wrap {
|
|
64
|
+
padding: 0.625rem;
|
|
65
|
+
background: var(--cic-accent-icon-bg);
|
|
66
|
+
border-radius: 0.75rem;
|
|
67
|
+
color: var(--cic-accent-text);
|
|
68
|
+
display: flex;
|
|
69
|
+
align-items: center;
|
|
70
|
+
justify-content: center;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.cic-icon {
|
|
74
|
+
width: 1.5rem;
|
|
75
|
+
height: 1.5rem;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.cic-title {
|
|
79
|
+
font-size: 1.25rem;
|
|
80
|
+
font-weight: 700;
|
|
81
|
+
color: var(--cic-text);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.cic-realtime {
|
|
85
|
+
display: flex;
|
|
86
|
+
align-items: center;
|
|
87
|
+
gap: 0.5rem;
|
|
88
|
+
font-size: 0.875rem;
|
|
89
|
+
color: var(--cic-text-muted);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.cic-dot {
|
|
93
|
+
width: 0.5rem;
|
|
94
|
+
height: 0.5rem;
|
|
95
|
+
border-radius: 50%;
|
|
96
|
+
background: var(--cic-accent);
|
|
97
|
+
animation: cic-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
@keyframes cic-pulse {
|
|
101
|
+
0%, 100% { opacity: 1; }
|
|
102
|
+
50% { opacity: 0.4; }
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.cic-grid {
|
|
106
|
+
display: grid;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.cic-panel-left {
|
|
110
|
+
padding: 1.5rem;
|
|
111
|
+
display: flex;
|
|
112
|
+
flex-direction: column;
|
|
113
|
+
gap: 1.5rem;
|
|
114
|
+
background: var(--cic-bg-panel);
|
|
115
|
+
border-bottom: 1px solid var(--cic-border-subtle);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.cic-fields {
|
|
119
|
+
display: flex;
|
|
120
|
+
flex-direction: column;
|
|
121
|
+
gap: 1rem;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.cic-grid-2 {
|
|
125
|
+
display: grid;
|
|
126
|
+
grid-template-columns: 1fr 1fr;
|
|
127
|
+
gap: 1rem;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.cic-label {
|
|
131
|
+
display: block;
|
|
132
|
+
font-size: 0.75rem;
|
|
133
|
+
font-weight: 700;
|
|
134
|
+
color: var(--cic-text-subtle);
|
|
135
|
+
text-transform: uppercase;
|
|
136
|
+
letter-spacing: 0.1em;
|
|
137
|
+
margin-bottom: 0.5rem;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.cic-input-wrap {
|
|
141
|
+
position: relative;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.cic-currency {
|
|
145
|
+
position: absolute;
|
|
146
|
+
left: 0.5rem;
|
|
147
|
+
top: 50%;
|
|
148
|
+
transform: translateY(-50%);
|
|
149
|
+
color: var(--cic-text-subtle);
|
|
150
|
+
font-weight: 700;
|
|
151
|
+
pointer-events: none;
|
|
152
|
+
font-size: 0.75rem;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.cic-currency-right {
|
|
156
|
+
left: auto;
|
|
157
|
+
right: 0.5rem;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.cic-input {
|
|
161
|
+
width: 100%;
|
|
162
|
+
padding: 0.75rem 1rem;
|
|
163
|
+
background: var(--cic-input-bg);
|
|
164
|
+
border: 2px solid var(--cic-input-border);
|
|
165
|
+
border-radius: 0.75rem;
|
|
166
|
+
outline: none;
|
|
167
|
+
transition: border-color 0.2s;
|
|
168
|
+
color: var(--cic-text);
|
|
169
|
+
font-weight: 700;
|
|
170
|
+
font-size: 1.125rem;
|
|
171
|
+
box-sizing: border-box;
|
|
172
|
+
}
|
|
9
173
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
174
|
+
.cic-input-prefixed {
|
|
175
|
+
padding-left: 3.5rem;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.cic-input-suffixed {
|
|
179
|
+
padding-right: 5rem;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.cic-input:focus {
|
|
183
|
+
border-color: var(--cic-accent);
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.cic-summary {
|
|
187
|
+
background: var(--cic-summary-bg);
|
|
188
|
+
border-radius: 1rem;
|
|
189
|
+
padding: 1rem;
|
|
190
|
+
border: 1px solid var(--cic-border);
|
|
191
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
|
|
192
|
+
display: flex;
|
|
193
|
+
flex-direction: column;
|
|
194
|
+
gap: 0.75rem;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.cic-summary-row {
|
|
198
|
+
display: flex;
|
|
199
|
+
justify-content: space-between;
|
|
200
|
+
align-items: center;
|
|
201
|
+
font-size: 0.875rem;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.cic-summary-label {
|
|
205
|
+
display: flex;
|
|
206
|
+
align-items: center;
|
|
207
|
+
gap: 0.5rem;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.cic-dot-neutral {
|
|
211
|
+
width: 0.75rem;
|
|
212
|
+
height: 0.75rem;
|
|
213
|
+
border-radius: 50%;
|
|
214
|
+
background: var(--cic-text-subtle);
|
|
215
|
+
flex-shrink: 0;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.cic-dot-accent {
|
|
219
|
+
width: 0.75rem;
|
|
220
|
+
height: 0.75rem;
|
|
221
|
+
border-radius: 50%;
|
|
222
|
+
background: var(--cic-accent);
|
|
223
|
+
flex-shrink: 0;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.cic-text-muted {
|
|
227
|
+
color: var(--cic-text-muted);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.cic-text-accent {
|
|
231
|
+
color: var(--cic-accent-text);
|
|
232
|
+
font-weight: 500;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.cic-summary-value {
|
|
236
|
+
font-weight: 700;
|
|
237
|
+
color: var(--cic-text);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.cic-summary-value-accent {
|
|
241
|
+
color: var(--cic-accent-text);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.cic-summary-total {
|
|
245
|
+
padding-top: 0.75rem;
|
|
246
|
+
margin-top: 0.25rem;
|
|
247
|
+
border-top: 1px solid var(--cic-border-subtle);
|
|
248
|
+
display: flex;
|
|
249
|
+
justify-content: space-between;
|
|
250
|
+
align-items: flex-end;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.cic-total-label {
|
|
254
|
+
color: var(--cic-text-subtle);
|
|
255
|
+
font-size: 0.75rem;
|
|
256
|
+
font-weight: 700;
|
|
257
|
+
text-transform: uppercase;
|
|
258
|
+
letter-spacing: 0.05em;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.cic-total-value {
|
|
262
|
+
font-size: 1.5rem;
|
|
263
|
+
font-weight: 900;
|
|
264
|
+
color: var(--cic-text);
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.cic-panel-right {
|
|
268
|
+
padding: 1.5rem;
|
|
269
|
+
display: flex;
|
|
270
|
+
flex-direction: column;
|
|
271
|
+
min-height: 500px;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.cic-canvas-wrap {
|
|
275
|
+
position: relative;
|
|
276
|
+
width: 100%;
|
|
277
|
+
flex: 1;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.cic-insight {
|
|
281
|
+
display: none;
|
|
282
|
+
margin-top: 1rem;
|
|
283
|
+
padding: 1rem;
|
|
284
|
+
background: var(--cic-insight-bg);
|
|
285
|
+
border-radius: 0.75rem;
|
|
286
|
+
font-size: 0.875rem;
|
|
287
|
+
color: var(--cic-insight-text);
|
|
288
|
+
opacity: 0;
|
|
289
|
+
transition: opacity 0.5s;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
@media (min-width: 768px) {
|
|
293
|
+
.cic-insight {
|
|
294
|
+
display: block;
|
|
27
295
|
}
|
|
296
|
+
}
|
|
28
297
|
|
|
29
|
-
|
|
30
|
-
|
|
298
|
+
@media (min-width: 1024px) {
|
|
299
|
+
.cic-grid {
|
|
300
|
+
grid-template-columns: 4fr 8fr;
|
|
31
301
|
}
|
|
32
302
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
--cic-bg: #1e293b;
|
|
37
|
-
--cic-bg-panel: rgba(15, 23, 42, 0.1);
|
|
38
|
-
--cic-bg-card: #1e293b;
|
|
39
|
-
--cic-bg-header: rgba(30, 41, 59, 0.5);
|
|
40
|
-
--cic-border: #334155;
|
|
41
|
-
--cic-border-subtle: #334155;
|
|
42
|
-
--cic-text: #fff;
|
|
43
|
-
--cic-text-muted: #94a3b8;
|
|
44
|
-
--cic-text-subtle: #64748b;
|
|
45
|
-
--cic-input-bg: #0f172a;
|
|
46
|
-
--cic-input-border: #334155;
|
|
47
|
-
--cic-summary-bg: #1e293b;
|
|
48
|
-
--cic-insight-bg: rgba(16, 185, 129, 0.1);
|
|
49
|
-
--cic-insight-text: #6ee7b7;
|
|
303
|
+
.cic-panel-left {
|
|
304
|
+
border-bottom: none;
|
|
305
|
+
border-right: 1px solid var(--cic-border-subtle);
|
|
50
306
|
}
|
|
51
307
|
|
|
52
|
-
|
|
53
|
-
|
|
308
|
+
.cic-panel-right {
|
|
309
|
+
padding: 2rem;
|
|
310
|
+
min-height: auto;
|
|
54
311
|
}
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.cic-insight.cic-insight-visible {
|
|
315
|
+
opacity: 1;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.cic-insight-year {
|
|
319
|
+
font-weight: 700;
|
|
320
|
+
color: #10b981;
|
|
321
|
+
}
|
|
55
322
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
--cic-accent-icon-bg: rgba(16, 185, 129, 0.2);
|
|
60
|
-
--cic-bg: #1e293b;
|
|
61
|
-
--cic-bg-panel: rgba(15, 23, 42, 0.1);
|
|
62
|
-
--cic-bg-card: #1e293b;
|
|
63
|
-
--cic-bg-header: rgba(30, 41, 59, 0.5);
|
|
64
|
-
--cic-border: #334155;
|
|
65
|
-
--cic-border-subtle: #334155;
|
|
66
|
-
--cic-text: #fff;
|
|
67
|
-
--cic-text-muted: #94a3b8;
|
|
68
|
-
--cic-text-subtle: #64748b;
|
|
69
|
-
--cic-input-bg: #0f172a;
|
|
70
|
-
--cic-input-border: #334155;
|
|
71
|
-
--cic-summary-bg: #1e293b;
|
|
72
|
-
--cic-insight-bg: rgba(16, 185, 129, 0.1);
|
|
73
|
-
--cic-insight-text: #6ee7b7;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.cic-insight-year {
|
|
77
|
-
color: #fff;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
323
|
+
.theme-dark .cic-insight-year {
|
|
324
|
+
color: #fff;
|
|
325
|
+
}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
--ctf-border-exempt: #bbf7d0;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
.theme-dark {
|
|
15
15
|
--ctf-bg-card: #1e293b;
|
|
16
16
|
--ctf-border-card: #334155;
|
|
17
17
|
--ctf-text-primary: #f1f5f9;
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
--ctf-border-exempt: rgba(34, 197, 94, 0.3);
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
[data-theme='dark'] {
|
|
28
28
|
--ctf-bg-card: #1e293b;
|
|
29
29
|
--ctf-border-card: #334155;
|
|
30
30
|
--ctf-text-primary: #f1f5f9;
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
margin-bottom: 0.5rem;
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
-
.ctf-section-title
|
|
75
|
+
.ctf-section-title svg {
|
|
76
76
|
color: var(--ctf-accent);
|
|
77
77
|
}
|
|
78
78
|
|
|
@@ -221,7 +221,7 @@
|
|
|
221
221
|
transform: translateY(0);
|
|
222
222
|
}
|
|
223
223
|
|
|
224
|
-
.ctf-btn-copy
|
|
224
|
+
.ctf-btn-copy svg {
|
|
225
225
|
width: 1.25rem;
|
|
226
226
|
height: 1.25rem;
|
|
227
227
|
}
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
--snow-bg-tab: rgba(0, 0, 0, 0.05);
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
.theme-dark,
|
|
15
|
+
[data-theme="dark"] {
|
|
16
16
|
--snow-bg-card: rgba(15, 23, 42, 0.9);
|
|
17
17
|
--snow-border: rgba(30, 41, 59, 1);
|
|
18
18
|
--snow-text-main: #f8fafc;
|
|
@@ -154,8 +154,8 @@
|
|
|
154
154
|
box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
-
|
|
158
|
-
|
|
157
|
+
.theme-dark .snow-tab.active,
|
|
158
|
+
[data-theme="dark"] .snow-tab.active {
|
|
159
159
|
background: rgba(255, 255, 255, 0.1);
|
|
160
160
|
color: white;
|
|
161
161
|
}
|
|
@@ -303,7 +303,7 @@
|
|
|
303
303
|
overflow-y: auto;
|
|
304
304
|
}
|
|
305
305
|
|
|
306
|
-
|
|
306
|
+
.snow-debt-item {
|
|
307
307
|
display: grid;
|
|
308
308
|
grid-template-columns: 1fr 1fr 1fr 1fr 60px;
|
|
309
309
|
padding: 1rem;
|
|
@@ -312,7 +312,7 @@
|
|
|
312
312
|
gap: 1rem;
|
|
313
313
|
}
|
|
314
314
|
|
|
315
|
-
|
|
315
|
+
.snow-debt-remove {
|
|
316
316
|
background: none;
|
|
317
317
|
border: none;
|
|
318
318
|
color: var(--snow-rose);
|
|
@@ -323,7 +323,7 @@
|
|
|
323
323
|
transition: opacity 0.3s ease;
|
|
324
324
|
}
|
|
325
325
|
|
|
326
|
-
|
|
326
|
+
.snow-debt-remove:hover {
|
|
327
327
|
opacity: 1;
|
|
328
328
|
}
|
|
329
329
|
|
|
@@ -449,7 +449,7 @@
|
|
|
449
449
|
gap: 1rem;
|
|
450
450
|
}
|
|
451
451
|
|
|
452
|
-
|
|
452
|
+
.snow-plan-item {
|
|
453
453
|
display: grid;
|
|
454
454
|
grid-template-columns: 50px 1fr 1fr;
|
|
455
455
|
gap: 1.5rem;
|
|
@@ -460,12 +460,12 @@
|
|
|
460
460
|
border-radius: 1rem;
|
|
461
461
|
}
|
|
462
462
|
|
|
463
|
-
|
|
463
|
+
.snow-plan-item.active-step {
|
|
464
464
|
background: rgba(16, 185, 129, 0.05);
|
|
465
465
|
border-color: rgba(16, 185, 129, 0.3);
|
|
466
466
|
}
|
|
467
467
|
|
|
468
|
-
|
|
468
|
+
.snow-step-marker {
|
|
469
469
|
width: 50px;
|
|
470
470
|
height: 50px;
|
|
471
471
|
background: var(--snow-emerald);
|
|
@@ -478,13 +478,13 @@
|
|
|
478
478
|
font-size: 1.25rem;
|
|
479
479
|
}
|
|
480
480
|
|
|
481
|
-
|
|
481
|
+
.snow-step-body {
|
|
482
482
|
display: flex;
|
|
483
483
|
flex-direction: column;
|
|
484
484
|
gap: 0.25rem;
|
|
485
485
|
}
|
|
486
486
|
|
|
487
|
-
|
|
487
|
+
.snow-step-label {
|
|
488
488
|
font-size: 0.65rem;
|
|
489
489
|
font-weight: 900;
|
|
490
490
|
text-transform: uppercase;
|
|
@@ -492,13 +492,13 @@
|
|
|
492
492
|
opacity: 0.6;
|
|
493
493
|
}
|
|
494
494
|
|
|
495
|
-
|
|
495
|
+
.snow-step-name {
|
|
496
496
|
font-size: 1rem;
|
|
497
497
|
font-weight: 900;
|
|
498
498
|
color: var(--snow-text-main);
|
|
499
499
|
}
|
|
500
500
|
|
|
501
|
-
|
|
501
|
+
.snow-step-amount {
|
|
502
502
|
display: flex;
|
|
503
503
|
flex-direction: column;
|
|
504
504
|
align-items: flex-end;
|
|
@@ -506,13 +506,13 @@
|
|
|
506
506
|
text-align: right;
|
|
507
507
|
}
|
|
508
508
|
|
|
509
|
-
|
|
509
|
+
.snow-step-amount span {
|
|
510
510
|
font-size: 0.65rem;
|
|
511
511
|
opacity: 0.6;
|
|
512
512
|
text-transform: uppercase;
|
|
513
513
|
}
|
|
514
514
|
|
|
515
|
-
|
|
515
|
+
.snow-step-amount strong {
|
|
516
516
|
font-size: 1.25rem;
|
|
517
517
|
font-weight: 900;
|
|
518
518
|
color: var(--snow-emerald);
|
|
@@ -586,21 +586,21 @@
|
|
|
586
586
|
border-bottom: 1px solid var(--snow-border);
|
|
587
587
|
}
|
|
588
588
|
|
|
589
|
-
|
|
589
|
+
table td {
|
|
590
590
|
padding: 1rem;
|
|
591
591
|
border-bottom: 1px solid var(--snow-border);
|
|
592
592
|
}
|
|
593
593
|
|
|
594
|
-
|
|
594
|
+
table tr:last-child td {
|
|
595
595
|
border-bottom: none;
|
|
596
596
|
}
|
|
597
597
|
|
|
598
|
-
|
|
598
|
+
.snow-table-free {
|
|
599
599
|
color: var(--snow-emerald);
|
|
600
600
|
font-weight: 900;
|
|
601
601
|
}
|
|
602
602
|
|
|
603
|
-
|
|
603
|
+
.snow-table-muted {
|
|
604
604
|
opacity: 0.6;
|
|
605
605
|
}
|
|
606
606
|
|
|
@@ -625,7 +625,7 @@
|
|
|
625
625
|
.snow-table-header {
|
|
626
626
|
display: none;
|
|
627
627
|
}
|
|
628
|
-
|
|
628
|
+
.snow-debt-item {
|
|
629
629
|
grid-template-columns: 1fr;
|
|
630
630
|
padding: 1rem 0;
|
|
631
631
|
border-left: 4px solid var(--snow-emerald);
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
--fire-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
.theme-dark {
|
|
15
15
|
--fire-bg: rgba(17, 24, 39, 0.7);
|
|
16
16
|
--fire-card-bg: rgba(31, 41, 55, 0.8);
|
|
17
17
|
--fire-text: #f3f4f6;
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
--fire-border: rgba(16, 185, 129, 0.3);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
[data-theme='dark'] {
|
|
23
23
|
--fire-bg: rgba(17, 24, 39, 0.7);
|
|
24
24
|
--fire-card-bg: rgba(31, 41, 55, 0.8);
|
|
25
25
|
--fire-text: #f3f4f6;
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
--ibs-text-copy-btn: #64748b;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
.theme-dark {
|
|
34
34
|
--ibs-bg-card: #0f172a;
|
|
35
35
|
--ibs-border-card: rgba(255, 255, 255, 0.05);
|
|
36
36
|
--ibs-text-title: #f8fafc;
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
--ibs-text-copy-btn: #94a3b8;
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
-
|
|
63
|
+
[data-theme='dark'] {
|
|
64
64
|
--ibs-bg-card: #0f172a;
|
|
65
65
|
--ibs-border-card: rgba(255, 255, 255, 0.05);
|
|
66
66
|
--ibs-text-title: #f8fafc;
|
|
@@ -109,8 +109,8 @@
|
|
|
109
109
|
color-scheme: light;
|
|
110
110
|
}
|
|
111
111
|
|
|
112
|
-
|
|
113
|
-
|
|
112
|
+
.theme-dark .ibs-card,
|
|
113
|
+
[data-theme='dark'] .ibs-card {
|
|
114
114
|
color-scheme: dark;
|
|
115
115
|
}
|
|
116
116
|
|
|
@@ -240,15 +240,15 @@
|
|
|
240
240
|
animation: ibs-slide-up 0.5s ease-out;
|
|
241
241
|
}
|
|
242
242
|
|
|
243
|
-
|
|
243
|
+
.ibs-results-section.ibs-hidden {
|
|
244
244
|
display: none;
|
|
245
245
|
}
|
|
246
246
|
|
|
247
|
-
|
|
247
|
+
.ibs-error-message.ibs-hidden {
|
|
248
248
|
display: none;
|
|
249
249
|
}
|
|
250
250
|
|
|
251
|
-
|
|
251
|
+
.ibs-btn-copy-success span[data-icon] {
|
|
252
252
|
background-color: #10b981;
|
|
253
253
|
}
|
|
254
254
|
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
--li-text-button: #fff;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
.theme-dark {
|
|
31
31
|
--li-bg-card: #1f2937;
|
|
32
32
|
--li-border-card: #374151;
|
|
33
33
|
--li-text-primary: #f3f4f6;
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
--li-text-button: #fff;
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
-
|
|
58
|
+
[data-theme='dark'] {
|
|
59
59
|
--li-bg-card: #1f2937;
|
|
60
60
|
--li-border-card: #374151;
|
|
61
61
|
--li-text-primary: #f3f4f6;
|
|
@@ -167,10 +167,10 @@
|
|
|
167
167
|
color-scheme: light;
|
|
168
168
|
}
|
|
169
169
|
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
170
|
+
.theme-dark .li-input-wrapper input,
|
|
171
|
+
.theme-dark .li-input-wrapper select,
|
|
172
|
+
[data-theme='dark'] .li-input-wrapper input,
|
|
173
|
+
[data-theme='dark'] .li-input-wrapper select {
|
|
174
174
|
color-scheme: dark;
|
|
175
175
|
}
|
|
176
176
|
|
|
@@ -183,8 +183,8 @@
|
|
|
183
183
|
background-size: 12px 8px;
|
|
184
184
|
}
|
|
185
185
|
|
|
186
|
-
|
|
187
|
-
|
|
186
|
+
.theme-dark .li-input-wrapper select,
|
|
187
|
+
[data-theme='dark'] .li-input-wrapper select {
|
|
188
188
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2360a5fa' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
|
|
189
189
|
}
|
|
190
190
|
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
--lir-glow: rgba(184, 134, 11, 0.1);
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
.theme-dark {
|
|
13
13
|
--lir-bg-glass: rgba(15, 23, 42, 0.9);
|
|
14
14
|
--lir-border-glass: rgba(184, 134, 11, 0.3);
|
|
15
15
|
--lir-text-main: #f8fafc;
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
--lir-glow: rgba(184, 134, 11, 0.15);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
[data-theme='dark'] {
|
|
21
21
|
--lir-bg-glass: rgba(15, 23, 42, 0.9);
|
|
22
22
|
--lir-border-glass: rgba(184, 134, 11, 0.3);
|
|
23
23
|
--lir-text-main: #f8fafc;
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
-
|
|
102
|
-
|
|
101
|
+
.theme-dark .rate-card,
|
|
102
|
+
[data-theme='dark'] .rate-card {
|
|
103
103
|
background: rgba(255, 255, 255, 0.03);
|
|
104
104
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
|
|
105
105
|
}
|
|
@@ -139,8 +139,8 @@
|
|
|
139
139
|
padding: 2rem;
|
|
140
140
|
}
|
|
141
141
|
|
|
142
|
-
|
|
143
|
-
|
|
142
|
+
.theme-dark .lir-calculator-section,
|
|
143
|
+
[data-theme='dark'] .lir-calculator-section {
|
|
144
144
|
background: rgba(255, 255, 255, 0.02);
|
|
145
145
|
}
|
|
146
146
|
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
gap: 0.75rem;
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
-
.calculator-title
|
|
157
|
+
.calculator-title svg {
|
|
158
158
|
color: var(--lir-primary);
|
|
159
159
|
}
|
|
160
160
|
|
|
@@ -192,8 +192,8 @@
|
|
|
192
192
|
transition: all 0.3s;
|
|
193
193
|
}
|
|
194
194
|
|
|
195
|
-
|
|
196
|
-
|
|
195
|
+
.theme-dark .lir-input,
|
|
196
|
+
[data-theme='dark'] .lir-input {
|
|
197
197
|
background: rgba(15, 23, 42, 0.6);
|
|
198
198
|
border-color: rgba(255, 255, 255, 0.1);
|
|
199
199
|
color: white;
|
|
@@ -227,8 +227,8 @@
|
|
|
227
227
|
align-items: center;
|
|
228
228
|
}
|
|
229
229
|
|
|
230
|
-
|
|
231
|
-
|
|
230
|
+
.theme-dark .lir-results-card,
|
|
231
|
+
[data-theme='dark'] .lir-results-card {
|
|
232
232
|
background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
|
|
233
233
|
}
|
|
234
234
|
|
|
@@ -276,8 +276,8 @@
|
|
|
276
276
|
align-items: flex-start;
|
|
277
277
|
}
|
|
278
278
|
|
|
279
|
-
|
|
280
|
-
|
|
279
|
+
.theme-dark .lir-info-msg,
|
|
280
|
+
[data-theme='dark'] .lir-info-msg {
|
|
281
281
|
background: rgba(184, 134, 11, 0.08);
|
|
282
282
|
}
|
|
283
283
|
|
|
@@ -322,8 +322,8 @@
|
|
|
322
322
|
margin: 0.25rem 0;
|
|
323
323
|
}
|
|
324
324
|
|
|
325
|
-
|
|
326
|
-
|
|
325
|
+
.theme-dark .info-formula,
|
|
326
|
+
[data-theme='dark'] .info-formula {
|
|
327
327
|
background: rgba(0, 0, 0, 0.2);
|
|
328
328
|
color: var(--lir-secondary);
|
|
329
329
|
}
|
|
@@ -1,17 +1,534 @@
|
|
|
1
1
|
.lo-game-btn.lo-selected {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
border-color: var(--lo-focus-border);
|
|
3
|
+
background: rgba(16, 185, 129, 0.05);
|
|
4
|
+
box-shadow: 0 0 0 4px var(--lo-focus-ring);
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
.lo-stat-value.lo-negative {
|
|
8
|
-
|
|
8
|
+
color: #ef4444;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
.lo-stat-value.lo-positive {
|
|
12
|
-
|
|
12
|
+
color: #10b981;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
.lo-efficiency-segment.lo-active {
|
|
16
|
-
|
|
17
|
-
}
|
|
16
|
+
background: var(--lo-bar-fill);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.lo-container {
|
|
20
|
+
--lo-bg-card: #fff;
|
|
21
|
+
--lo-border-card: #eef2f6;
|
|
22
|
+
--lo-shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 20px 40px -8px rgba(0, 0, 0, 0.05);
|
|
23
|
+
--lo-text-title: #0f172a;
|
|
24
|
+
--lo-text-secondary: #64748b;
|
|
25
|
+
--lo-text-primary: #1e293b;
|
|
26
|
+
--lo-bg-input: #f8fafc;
|
|
27
|
+
--lo-border-input: #f1f5f9;
|
|
28
|
+
--lo-focus-border: #10b981;
|
|
29
|
+
--lo-focus-ring: rgba(16, 185, 129, 0.15);
|
|
30
|
+
--lo-icon-color: #10b981;
|
|
31
|
+
--lo-bg-button: #0f172a;
|
|
32
|
+
--lo-text-button: #fff;
|
|
33
|
+
--lo-bg-hover: #1e293b;
|
|
34
|
+
--lo-bg-stat: #fff;
|
|
35
|
+
--lo-border-stat: #eef2f6;
|
|
36
|
+
--lo-bar-bg: #f1f5f9;
|
|
37
|
+
--lo-bar-fill: #10b981;
|
|
38
|
+
--lo-recommendation-bg: #eef5ff;
|
|
39
|
+
--lo-recommendation-border: #d0e4ff;
|
|
40
|
+
--lo-recommendation-icon: #3b82f6;
|
|
41
|
+
|
|
42
|
+
width: 100%;
|
|
43
|
+
max-width: 1200px;
|
|
44
|
+
margin: 0 auto;
|
|
45
|
+
padding: 2rem 1rem;
|
|
46
|
+
display: flex;
|
|
47
|
+
flex-direction: column;
|
|
48
|
+
gap: 3rem;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.theme-dark .lo-container {
|
|
52
|
+
--lo-bg-card: #0f172a;
|
|
53
|
+
--lo-border-card: rgba(255, 255, 255, 0.05);
|
|
54
|
+
--lo-text-title: #f8fafc;
|
|
55
|
+
--lo-text-secondary: #94a3b8;
|
|
56
|
+
--lo-text-primary: #f8fafc;
|
|
57
|
+
--lo-bg-input: #1e293b;
|
|
58
|
+
--lo-border-input: #334155;
|
|
59
|
+
--lo-focus-border: #10b981;
|
|
60
|
+
--lo-focus-ring: rgba(16, 185, 129, 0.15);
|
|
61
|
+
--lo-icon-color: #34d399;
|
|
62
|
+
--lo-bg-button: #10b981;
|
|
63
|
+
--lo-text-button: #fff;
|
|
64
|
+
--lo-bg-hover: #059669;
|
|
65
|
+
--lo-bg-stat: #1e293b;
|
|
66
|
+
--lo-border-stat: rgba(255, 255, 255, 0.05);
|
|
67
|
+
--lo-bar-bg: #1e293b;
|
|
68
|
+
--lo-bar-fill: #10b981;
|
|
69
|
+
--lo-recommendation-bg: rgba(59, 130, 246, 0.1);
|
|
70
|
+
--lo-recommendation-border: rgba(59, 130, 246, 0.2);
|
|
71
|
+
--lo-recommendation-icon: #60a5fa;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.lo-games-grid {
|
|
75
|
+
display: grid;
|
|
76
|
+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
77
|
+
gap: 1.5rem;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.lo-game-btn {
|
|
81
|
+
display: flex;
|
|
82
|
+
flex-direction: column;
|
|
83
|
+
padding: 1.5rem;
|
|
84
|
+
background: var(--lo-bg-card);
|
|
85
|
+
border: 2px solid var(--lo-border-card);
|
|
86
|
+
border-radius: 1.5rem;
|
|
87
|
+
cursor: pointer;
|
|
88
|
+
transition: all 0.2s;
|
|
89
|
+
text-align: left;
|
|
90
|
+
color: inherit;
|
|
91
|
+
outline: none;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.lo-game-btn:hover {
|
|
95
|
+
border-color: var(--lo-focus-border);
|
|
96
|
+
box-shadow: var(--lo-shadow-card);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.lo-game-icon {
|
|
100
|
+
width: 3rem;
|
|
101
|
+
height: 3rem;
|
|
102
|
+
border-radius: 1rem;
|
|
103
|
+
background: var(--lo-bg-input);
|
|
104
|
+
margin-bottom: 1rem;
|
|
105
|
+
display: flex;
|
|
106
|
+
align-items: center;
|
|
107
|
+
justify-content: center;
|
|
108
|
+
color: var(--lo-icon-color);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.lo-game-icon svg {
|
|
112
|
+
width: 1.5rem;
|
|
113
|
+
height: 1.5rem;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.lo-game-name {
|
|
117
|
+
font-size: 1.125rem;
|
|
118
|
+
font-weight: 700;
|
|
119
|
+
color: var(--lo-text-title);
|
|
120
|
+
margin-bottom: 0.5rem;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.lo-game-description {
|
|
124
|
+
font-size: 0.875rem;
|
|
125
|
+
color: var(--lo-text-secondary);
|
|
126
|
+
margin-bottom: 1rem;
|
|
127
|
+
flex-grow: 1;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.lo-game-footer {
|
|
131
|
+
display: flex;
|
|
132
|
+
justify-content: space-between;
|
|
133
|
+
align-items: center;
|
|
134
|
+
padding-top: 1rem;
|
|
135
|
+
border-top: 1px solid var(--lo-border-card);
|
|
136
|
+
font-size: 0.75rem;
|
|
137
|
+
font-weight: 700;
|
|
138
|
+
color: var(--lo-text-secondary);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.lo-arrow-icon {
|
|
142
|
+
width: 1rem;
|
|
143
|
+
height: 1rem;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.lo-hidden {
|
|
147
|
+
display: none;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.lo-panel {
|
|
151
|
+
animation: slide-up 0.5s ease-out;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
@keyframes slide-up {
|
|
155
|
+
from {
|
|
156
|
+
opacity: 0;
|
|
157
|
+
transform: translateY(20px);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
to {
|
|
161
|
+
opacity: 1;
|
|
162
|
+
transform: translateY(0);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.lo-panel-card {
|
|
167
|
+
background: var(--lo-bg-card);
|
|
168
|
+
border: 1px solid var(--lo-border-card);
|
|
169
|
+
border-radius: 2rem;
|
|
170
|
+
padding: 2rem;
|
|
171
|
+
box-shadow: var(--lo-shadow-card);
|
|
172
|
+
display: flex;
|
|
173
|
+
flex-direction: column;
|
|
174
|
+
gap: 2rem;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.lo-panel-header {
|
|
178
|
+
display: flex;
|
|
179
|
+
justify-content: space-between;
|
|
180
|
+
align-items: flex-start;
|
|
181
|
+
gap: 1rem;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.lo-panel-title {
|
|
185
|
+
font-size: 1.25rem;
|
|
186
|
+
font-weight: 700;
|
|
187
|
+
color: var(--lo-text-title);
|
|
188
|
+
margin-bottom: 0.25rem;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.lo-panel-subtitle {
|
|
192
|
+
font-size: 0.875rem;
|
|
193
|
+
color: var(--lo-text-secondary);
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.lo-investment-badge {
|
|
197
|
+
display: flex;
|
|
198
|
+
gap: 1rem;
|
|
199
|
+
padding: 1rem;
|
|
200
|
+
background: var(--lo-bg-input);
|
|
201
|
+
border-radius: 1.5rem;
|
|
202
|
+
min-width: 200px;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.lo-investment-badge > div:first-child {
|
|
206
|
+
flex: 1;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.lo-badge-label {
|
|
210
|
+
font-size: 0.75rem;
|
|
211
|
+
font-weight: 700;
|
|
212
|
+
color: var(--lo-text-secondary);
|
|
213
|
+
text-transform: uppercase;
|
|
214
|
+
margin-bottom: 0.25rem;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.lo-badge-value {
|
|
218
|
+
font-size: 1.25rem;
|
|
219
|
+
font-weight: 900;
|
|
220
|
+
color: var(--lo-text-title);
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.lo-badge-icon {
|
|
224
|
+
display: flex;
|
|
225
|
+
align-items: center;
|
|
226
|
+
color: var(--lo-icon-color);
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.lo-badge-icon svg {
|
|
230
|
+
width: 1.5rem;
|
|
231
|
+
height: 1.5rem;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.lo-panel-content {
|
|
235
|
+
display: flex;
|
|
236
|
+
flex-direction: column;
|
|
237
|
+
gap: 2rem;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.lo-input-section {
|
|
241
|
+
display: flex;
|
|
242
|
+
flex-direction: column;
|
|
243
|
+
gap: 1.5rem;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.lo-slider-group {
|
|
247
|
+
display: flex;
|
|
248
|
+
flex-direction: column;
|
|
249
|
+
gap: 1rem;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.lo-slider-header {
|
|
253
|
+
display: flex;
|
|
254
|
+
justify-content: space-between;
|
|
255
|
+
align-items: center;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.lo-slider-header label {
|
|
259
|
+
font-weight: 700;
|
|
260
|
+
color: var(--lo-text-title);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.lo-slider-value {
|
|
264
|
+
font-weight: 700;
|
|
265
|
+
color: var(--lo-focus-border);
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.lo-slider {
|
|
269
|
+
width: 100%;
|
|
270
|
+
height: 0.5rem;
|
|
271
|
+
border-radius: 0.25rem;
|
|
272
|
+
background: var(--lo-bar-bg);
|
|
273
|
+
outline: none;
|
|
274
|
+
-webkit-appearance: none;
|
|
275
|
+
appearance: none;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.lo-slider::-webkit-slider-thumb {
|
|
279
|
+
-webkit-appearance: none;
|
|
280
|
+
appearance: none;
|
|
281
|
+
width: 1.25rem;
|
|
282
|
+
height: 1.25rem;
|
|
283
|
+
background: var(--lo-focus-border);
|
|
284
|
+
border-radius: 50%;
|
|
285
|
+
cursor: pointer;
|
|
286
|
+
box-shadow: 0 0 10px var(--lo-focus-ring);
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.lo-slider::-moz-range-thumb {
|
|
290
|
+
width: 1.25rem;
|
|
291
|
+
height: 1.25rem;
|
|
292
|
+
background: var(--lo-focus-border);
|
|
293
|
+
border-radius: 50%;
|
|
294
|
+
cursor: pointer;
|
|
295
|
+
border: none;
|
|
296
|
+
box-shadow: 0 0 10px var(--lo-focus-ring);
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.lo-slider-labels {
|
|
300
|
+
display: flex;
|
|
301
|
+
justify-content: space-between;
|
|
302
|
+
font-size: 0.75rem;
|
|
303
|
+
font-weight: 700;
|
|
304
|
+
color: var(--lo-text-secondary);
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.lo-recommendation-box {
|
|
308
|
+
display: flex;
|
|
309
|
+
flex-direction: column;
|
|
310
|
+
gap: 1rem;
|
|
311
|
+
padding: 1.5rem;
|
|
312
|
+
background: var(--lo-recommendation-bg);
|
|
313
|
+
border: 1px solid var(--lo-recommendation-border);
|
|
314
|
+
border-radius: 1rem;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.lo-recommendation-header {
|
|
318
|
+
display: flex;
|
|
319
|
+
align-items: center;
|
|
320
|
+
gap: 0.75rem;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.lo-alert-icon {
|
|
324
|
+
width: 1.25rem;
|
|
325
|
+
height: 1.25rem;
|
|
326
|
+
color: var(--lo-recommendation-icon);
|
|
327
|
+
flex-shrink: 0;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.lo-recommendation-header h4 {
|
|
331
|
+
font-size: 0.875rem;
|
|
332
|
+
font-weight: 700;
|
|
333
|
+
color: var(--lo-text-title);
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.lo-recommendation-text {
|
|
337
|
+
font-size: 0.875rem;
|
|
338
|
+
line-height: 1.5;
|
|
339
|
+
color: var(--lo-text-primary);
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.lo-optimal-tag {
|
|
343
|
+
font-size: 0.75rem;
|
|
344
|
+
font-weight: 700;
|
|
345
|
+
padding: 0.75rem;
|
|
346
|
+
background: var(--lo-bg-input);
|
|
347
|
+
border-radius: 0.5rem;
|
|
348
|
+
color: var(--lo-text-secondary);
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.lo-stats-grid {
|
|
352
|
+
display: grid;
|
|
353
|
+
grid-template-columns: 1fr 1fr;
|
|
354
|
+
gap: 1rem;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.lo-stat-card {
|
|
358
|
+
padding: 1.5rem;
|
|
359
|
+
background: var(--lo-bg-stat);
|
|
360
|
+
border: 1px solid var(--lo-border-stat);
|
|
361
|
+
border-radius: 1.5rem;
|
|
362
|
+
display: flex;
|
|
363
|
+
flex-direction: column;
|
|
364
|
+
gap: 0.75rem;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.lo-stat-card-full {
|
|
368
|
+
grid-column: span 2;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.lo-stat-label {
|
|
372
|
+
font-size: 0.75rem;
|
|
373
|
+
font-weight: 700;
|
|
374
|
+
color: var(--lo-text-secondary);
|
|
375
|
+
text-transform: uppercase;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.lo-stat-value {
|
|
379
|
+
font-size: 1.5rem;
|
|
380
|
+
font-weight: 900;
|
|
381
|
+
color: var(--lo-text-title);
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.lo-stat-bar {
|
|
385
|
+
width: 100%;
|
|
386
|
+
height: 0.25rem;
|
|
387
|
+
background: var(--lo-bar-bg);
|
|
388
|
+
border-radius: 0.25rem;
|
|
389
|
+
overflow: hidden;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.lo-stat-bar-fill {
|
|
393
|
+
height: 100%;
|
|
394
|
+
background: var(--lo-bar-fill);
|
|
395
|
+
transition: width 0.3s ease;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.lo-stat-hint {
|
|
399
|
+
font-size: 0.75rem;
|
|
400
|
+
color: var(--lo-text-secondary);
|
|
401
|
+
font-style: italic;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.lo-stat-header {
|
|
405
|
+
display: flex;
|
|
406
|
+
justify-content: space-between;
|
|
407
|
+
align-items: center;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.lo-efficiency-label {
|
|
411
|
+
font-size: 0.75rem;
|
|
412
|
+
font-weight: 700;
|
|
413
|
+
padding: 0.25rem 0.75rem;
|
|
414
|
+
border-radius: 0.5rem;
|
|
415
|
+
background: var(--lo-bar-bg);
|
|
416
|
+
color: var(--lo-text-secondary);
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.lo-efficiency-value {
|
|
420
|
+
display: flex;
|
|
421
|
+
align-items: baseline;
|
|
422
|
+
gap: 0.5rem;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.lo-efficiency-max {
|
|
426
|
+
font-size: 0.875rem;
|
|
427
|
+
color: var(--lo-text-secondary);
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.lo-efficiency-segments {
|
|
431
|
+
display: grid;
|
|
432
|
+
grid-template-columns: repeat(10, 1fr);
|
|
433
|
+
gap: 0.5rem;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.lo-efficiency-segment {
|
|
437
|
+
height: 0.5rem;
|
|
438
|
+
background: var(--lo-bar-bg);
|
|
439
|
+
border-radius: 0.25rem;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.lo-comparison-section {
|
|
443
|
+
display: flex;
|
|
444
|
+
flex-direction: column;
|
|
445
|
+
gap: 2rem;
|
|
446
|
+
padding: 2rem;
|
|
447
|
+
background: var(--lo-bg-card);
|
|
448
|
+
border: 1px solid var(--lo-border-card);
|
|
449
|
+
border-radius: 2rem;
|
|
450
|
+
box-shadow: var(--lo-shadow-card);
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
.lo-comparison-header {
|
|
454
|
+
display: flex;
|
|
455
|
+
align-items: flex-start;
|
|
456
|
+
gap: 1.5rem;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.lo-comparison-icon {
|
|
460
|
+
display: flex;
|
|
461
|
+
align-items: center;
|
|
462
|
+
justify-content: center;
|
|
463
|
+
width: 3rem;
|
|
464
|
+
height: 3rem;
|
|
465
|
+
background: var(--lo-bg-input);
|
|
466
|
+
border-radius: 1rem;
|
|
467
|
+
color: var(--lo-icon-color);
|
|
468
|
+
flex-shrink: 0;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
.lo-comparison-icon svg {
|
|
472
|
+
width: 1.5rem;
|
|
473
|
+
height: 1.5rem;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.lo-comparison-header > div:last-child h3 {
|
|
477
|
+
font-size: 1.25rem;
|
|
478
|
+
font-weight: 700;
|
|
479
|
+
color: var(--lo-text-title);
|
|
480
|
+
margin-bottom: 0.25rem;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
.lo-comparison-header > div:last-child p {
|
|
484
|
+
font-size: 0.875rem;
|
|
485
|
+
color: var(--lo-text-secondary);
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.lo-table-wrapper {
|
|
489
|
+
overflow-x: auto;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.lo-table {
|
|
493
|
+
width: 100%;
|
|
494
|
+
border-collapse: collapse;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.lo-table thead {
|
|
498
|
+
background: var(--lo-bg-input);
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
.lo-table th {
|
|
502
|
+
padding: 1rem;
|
|
503
|
+
text-align: left;
|
|
504
|
+
font-weight: 700;
|
|
505
|
+
font-size: 0.875rem;
|
|
506
|
+
color: var(--lo-text-secondary);
|
|
507
|
+
text-transform: uppercase;
|
|
508
|
+
border-bottom: 2px solid var(--lo-border-card);
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.lo-table-right {
|
|
512
|
+
text-align: right;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.lo-table tbody tr {
|
|
516
|
+
border-bottom: 1px solid var(--lo-border-card);
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
.lo-table td {
|
|
520
|
+
padding: 1rem;
|
|
521
|
+
font-size: 0.875rem;
|
|
522
|
+
color: var(--lo-text-primary);
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.lo-table tbody tr:hover {
|
|
526
|
+
background: var(--lo-bg-input);
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.lo-table-note {
|
|
530
|
+
font-size: 0.75rem;
|
|
531
|
+
color: var(--lo-text-secondary);
|
|
532
|
+
font-style: italic;
|
|
533
|
+
text-align: center;
|
|
534
|
+
}
|
|
@@ -1,9 +1,29 @@
|
|
|
1
1
|
.pc-wrapper {
|
|
2
|
+
--pc-primary: #4b5563;
|
|
3
|
+
--pc-primary-light: #f1f3f5;
|
|
4
|
+
--pc-accent: #2c7a7b;
|
|
5
|
+
--pc-success: #2d6a4f;
|
|
6
|
+
--pc-danger: #9d4456;
|
|
7
|
+
--pc-text: #1a202c;
|
|
8
|
+
--pc-text-light: #4a5568;
|
|
9
|
+
--pc-border: #d2d6dc;
|
|
10
|
+
--pc-bg: #fff;
|
|
11
|
+
|
|
2
12
|
max-width: 700px;
|
|
3
13
|
margin: 0 auto;
|
|
4
14
|
padding: 1.5rem;
|
|
5
15
|
}
|
|
6
16
|
|
|
17
|
+
.theme-dark .pc-wrapper {
|
|
18
|
+
--pc-primary: #cbd5e1;
|
|
19
|
+
--pc-primary-light: #334155;
|
|
20
|
+
--pc-accent: #7dd3c0;
|
|
21
|
+
--pc-text: #f1f5f9;
|
|
22
|
+
--pc-text-light: #cbd5e1;
|
|
23
|
+
--pc-border: #475569;
|
|
24
|
+
--pc-bg: #1e293b;
|
|
25
|
+
}
|
|
26
|
+
|
|
7
27
|
.pc-card {
|
|
8
28
|
background: var(--pc-bg);
|
|
9
29
|
border: 1px solid var(--pc-border);
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
--ric-highlight-color: #10b981;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
.theme-dark {
|
|
33
33
|
--ric-bg-card: #0f172a;
|
|
34
34
|
--ric-border-card: rgba(255, 255, 255, 0.05);
|
|
35
35
|
--ric-text-title: #f8fafc;
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
--ric-highlight-color: #34d399;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
-
|
|
61
|
+
[data-theme='dark'] {
|
|
62
62
|
--ric-bg-card: #0f172a;
|
|
63
63
|
--ric-border-card: rgba(255, 255, 255, 0.05);
|
|
64
64
|
--ric-text-title: #f8fafc;
|
|
@@ -106,8 +106,8 @@
|
|
|
106
106
|
color-scheme: light;
|
|
107
107
|
}
|
|
108
108
|
|
|
109
|
-
|
|
110
|
-
|
|
109
|
+
.theme-dark .ric-card,
|
|
110
|
+
[data-theme='dark'] .ric-card {
|
|
111
111
|
color-scheme: dark;
|
|
112
112
|
}
|
|
113
113
|
|
|
@@ -333,11 +333,11 @@
|
|
|
333
333
|
transform: translateY(-2px);
|
|
334
334
|
}
|
|
335
335
|
|
|
336
|
-
|
|
336
|
+
.ric-results-section.ric-hidden {
|
|
337
337
|
display: none;
|
|
338
338
|
}
|
|
339
339
|
|
|
340
|
-
|
|
340
|
+
.ric-input-group.ric-hidden {
|
|
341
341
|
display: none;
|
|
342
342
|
}
|
|
343
343
|
|