@jjlmoya/utils-science 1.37.0 → 1.38.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/category/index.ts +3 -1
- package/src/entries.ts +5 -1
- package/src/index.ts +2 -0
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/dyson-sphere-energy-capture/bibliography.astro +14 -0
- package/src/tool/dyson-sphere-energy-capture/bibliography.ts +16 -0
- package/src/tool/dyson-sphere-energy-capture/component.astro +253 -0
- package/src/tool/dyson-sphere-energy-capture/dyson-sphere-energy-capture.css +502 -0
- package/src/tool/dyson-sphere-energy-capture/entry.ts +26 -0
- package/src/tool/dyson-sphere-energy-capture/i18n/de.ts +195 -0
- package/src/tool/dyson-sphere-energy-capture/i18n/en.ts +195 -0
- package/src/tool/dyson-sphere-energy-capture/i18n/es.ts +195 -0
- package/src/tool/dyson-sphere-energy-capture/i18n/fr.ts +195 -0
- package/src/tool/dyson-sphere-energy-capture/i18n/id.ts +195 -0
- package/src/tool/dyson-sphere-energy-capture/i18n/it.ts +195 -0
- package/src/tool/dyson-sphere-energy-capture/i18n/ja.ts +71 -0
- package/src/tool/dyson-sphere-energy-capture/i18n/ko.ts +71 -0
- package/src/tool/dyson-sphere-energy-capture/i18n/nl.ts +197 -0
- package/src/tool/dyson-sphere-energy-capture/i18n/pl.ts +197 -0
- package/src/tool/dyson-sphere-energy-capture/i18n/pt.ts +195 -0
- package/src/tool/dyson-sphere-energy-capture/i18n/ru.ts +195 -0
- package/src/tool/dyson-sphere-energy-capture/i18n/sv.ts +195 -0
- package/src/tool/dyson-sphere-energy-capture/i18n/tr.ts +195 -0
- package/src/tool/dyson-sphere-energy-capture/i18n/zh.ts +71 -0
- package/src/tool/dyson-sphere-energy-capture/index.ts +11 -0
- package/src/tool/dyson-sphere-energy-capture/logic.ts +120 -0
- package/src/tool/dyson-sphere-energy-capture/seo.astro +15 -0
- package/src/tool/global-albedo-snowball-simulator/bibliography.astro +14 -0
- package/src/tool/global-albedo-snowball-simulator/bibliography.ts +16 -0
- package/src/tool/global-albedo-snowball-simulator/component.astro +278 -0
- package/src/tool/global-albedo-snowball-simulator/entry.ts +26 -0
- package/src/tool/global-albedo-snowball-simulator/global-albedo-snowball-simulator.css +530 -0
- package/src/tool/global-albedo-snowball-simulator/i18n/de.ts +169 -0
- package/src/tool/global-albedo-snowball-simulator/i18n/en.ts +169 -0
- package/src/tool/global-albedo-snowball-simulator/i18n/es.ts +169 -0
- package/src/tool/global-albedo-snowball-simulator/i18n/fr.ts +169 -0
- package/src/tool/global-albedo-snowball-simulator/i18n/id.ts +169 -0
- package/src/tool/global-albedo-snowball-simulator/i18n/it.ts +87 -0
- package/src/tool/global-albedo-snowball-simulator/i18n/ja.ts +87 -0
- package/src/tool/global-albedo-snowball-simulator/i18n/ko.ts +169 -0
- package/src/tool/global-albedo-snowball-simulator/i18n/nl.ts +169 -0
- package/src/tool/global-albedo-snowball-simulator/i18n/pl.ts +169 -0
- package/src/tool/global-albedo-snowball-simulator/i18n/pt.ts +169 -0
- package/src/tool/global-albedo-snowball-simulator/i18n/ru.ts +169 -0
- package/src/tool/global-albedo-snowball-simulator/i18n/sv.ts +169 -0
- package/src/tool/global-albedo-snowball-simulator/i18n/tr.ts +169 -0
- package/src/tool/global-albedo-snowball-simulator/i18n/zh.ts +169 -0
- package/src/tool/global-albedo-snowball-simulator/index.ts +11 -0
- package/src/tool/global-albedo-snowball-simulator/logic.ts +88 -0
- package/src/tool/global-albedo-snowball-simulator/seo.astro +15 -0
- package/src/tools.ts +4 -0
|
@@ -0,0 +1,502 @@
|
|
|
1
|
+
.dyson-root {
|
|
2
|
+
--dyson-ink: #16201f;
|
|
3
|
+
--dyson-muted: #5e6b66;
|
|
4
|
+
--dyson-panel: #f7f4ec;
|
|
5
|
+
--dyson-line: rgba(22, 32, 31, 0.16);
|
|
6
|
+
--dyson-sun: #ffcc58;
|
|
7
|
+
--dyson-amber: #f08a24;
|
|
8
|
+
--dyson-cyan: #3fb7c9;
|
|
9
|
+
--dyson-green: #4d9f71;
|
|
10
|
+
--dyson-star-core: #fff8c9;
|
|
11
|
+
--dyson-star-mid: #ffcc58;
|
|
12
|
+
--dyson-star-edge: #e85d2f;
|
|
13
|
+
--dyson-star-size: 96px;
|
|
14
|
+
--dyson-collector-width: 12px;
|
|
15
|
+
--dyson-collector-height: 3px;
|
|
16
|
+
--dyson-collector-opacity: 0.82;
|
|
17
|
+
--dyson-coverage: 35%;
|
|
18
|
+
--dyson-orbit-scale: 1;
|
|
19
|
+
--dyson-orbit-speed: 16s;
|
|
20
|
+
--dyson-glow-strength: 0.5;
|
|
21
|
+
|
|
22
|
+
color: var(--dyson-ink);
|
|
23
|
+
display: grid;
|
|
24
|
+
gap: 0;
|
|
25
|
+
max-width: 1120px;
|
|
26
|
+
margin: 0 auto;
|
|
27
|
+
overflow: hidden;
|
|
28
|
+
border: 1px solid var(--dyson-line);
|
|
29
|
+
border-radius: 10px;
|
|
30
|
+
background:
|
|
31
|
+
radial-gradient(circle at 29% 48%, rgba(255, 204, 88, calc(var(--dyson-glow-strength) * 0.16)), transparent 34%),
|
|
32
|
+
linear-gradient(90deg, rgba(255, 253, 250, 0.02), rgba(16, 32, 31, 0.035)),
|
|
33
|
+
var(--dyson-panel);
|
|
34
|
+
box-shadow: 0 22px 70px rgba(22, 32, 31, 0.12);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.theme-dark .dyson-root,
|
|
38
|
+
body.theme-dark .dyson-root,
|
|
39
|
+
html.theme-dark .dyson-root {
|
|
40
|
+
--dyson-ink: #edf5ed;
|
|
41
|
+
--dyson-muted: #bac8c0;
|
|
42
|
+
--dyson-panel: rgba(7, 12, 12, 0.78);
|
|
43
|
+
--dyson-line: rgba(237, 245, 237, 0.14);
|
|
44
|
+
|
|
45
|
+
color: var(--dyson-ink);
|
|
46
|
+
border-color: rgba(255, 255, 255, 0.12);
|
|
47
|
+
background:
|
|
48
|
+
radial-gradient(circle at 30% 48%, rgba(255, 204, 88, calc(var(--dyson-glow-strength) * 0.28)), transparent 38%),
|
|
49
|
+
linear-gradient(100deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
|
|
50
|
+
rgba(4, 8, 8, 0.84);
|
|
51
|
+
box-shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
|
|
52
|
+
backdrop-filter: blur(18px);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.dyson-stage {
|
|
56
|
+
position: relative;
|
|
57
|
+
min-height: 360px;
|
|
58
|
+
overflow: hidden;
|
|
59
|
+
background:
|
|
60
|
+
radial-gradient(circle at 50% 52%, rgba(255, 204, 88, calc(var(--dyson-glow-strength) * 0.54)), transparent 24%),
|
|
61
|
+
radial-gradient(circle at 48% 50%, rgba(63, 183, 201, 0.12), transparent 48%);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.dyson-stage::after {
|
|
65
|
+
content: "";
|
|
66
|
+
position: absolute;
|
|
67
|
+
inset: auto 0 0;
|
|
68
|
+
height: 1px;
|
|
69
|
+
background: linear-gradient(180deg, rgba(247, 244, 236, 0), var(--dyson-panel));
|
|
70
|
+
pointer-events: none;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.dyson-starfield {
|
|
74
|
+
position: absolute;
|
|
75
|
+
inset: 0;
|
|
76
|
+
display: grid;
|
|
77
|
+
place-items: center;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.dyson-star {
|
|
81
|
+
width: var(--dyson-star-size);
|
|
82
|
+
aspect-ratio: 1;
|
|
83
|
+
border-radius: 50%;
|
|
84
|
+
background: radial-gradient(circle, var(--dyson-star-core) 0 18%, var(--dyson-star-mid) 48%, var(--dyson-star-edge) 100%);
|
|
85
|
+
box-shadow: 0 0 44px rgba(255, 204, 88, 0.92), 0 0 110px rgba(240, 138, 36, 0.48);
|
|
86
|
+
transition: width 260ms ease, box-shadow 260ms ease;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.dyson-orbit,
|
|
90
|
+
.dyson-collectors {
|
|
91
|
+
position: absolute;
|
|
92
|
+
width: min(72vw, 520px);
|
|
93
|
+
aspect-ratio: 1;
|
|
94
|
+
border-radius: 50%;
|
|
95
|
+
transform: scale(var(--dyson-orbit-scale));
|
|
96
|
+
transition: transform 360ms ease;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.dyson-orbit {
|
|
100
|
+
border: 1px solid rgba(63, 183, 201, 0.22);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.dyson-orbit-inner {
|
|
104
|
+
width: min(54vw, 390px);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.dyson-collectors span {
|
|
108
|
+
position: absolute;
|
|
109
|
+
top: 50%;
|
|
110
|
+
left: 50%;
|
|
111
|
+
width: var(--dyson-collector-width);
|
|
112
|
+
height: var(--dyson-collector-height);
|
|
113
|
+
border-radius: 999px;
|
|
114
|
+
background: linear-gradient(90deg, #dff9ff, var(--dyson-cyan));
|
|
115
|
+
opacity: var(--dyson-collector-opacity);
|
|
116
|
+
box-shadow: 0 0 10px rgba(63, 183, 201, 0.56);
|
|
117
|
+
transform: rotate(var(--angle)) rotateX(var(--tilt)) translateX(var(--depth)) rotate(90deg);
|
|
118
|
+
transform-origin: 0 0;
|
|
119
|
+
animation: dyson-panel-shimmer 2.8s ease-in-out infinite;
|
|
120
|
+
animation-delay: var(--delay);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.dyson-collectors {
|
|
124
|
+
animation: dyson-orbit-spin var(--dyson-orbit-speed) linear infinite;
|
|
125
|
+
transform-origin: center;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.dyson-root[data-coverage="dense"] .dyson-collectors span {
|
|
129
|
+
width: 16px;
|
|
130
|
+
opacity: 0.9;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.dyson-root[data-coverage="full"] .dyson-collectors span {
|
|
134
|
+
width: 22px;
|
|
135
|
+
height: 5px;
|
|
136
|
+
opacity: 0.96;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.dyson-root[data-star="m-dwarf"] {
|
|
140
|
+
--dyson-star-core: #ffd9c8;
|
|
141
|
+
--dyson-star-mid: #ff7b4f;
|
|
142
|
+
--dyson-star-edge: #9b2f2d;
|
|
143
|
+
--dyson-star-size: 72px;
|
|
144
|
+
--dyson-cyan: #67d7c5;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.dyson-root[data-star="sun"] {
|
|
148
|
+
--dyson-star-core: #fff8c9;
|
|
149
|
+
--dyson-star-mid: #ffcc58;
|
|
150
|
+
--dyson-star-edge: #e85d2f;
|
|
151
|
+
--dyson-star-size: 96px;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.dyson-root[data-star="a-star"] {
|
|
155
|
+
--dyson-star-core: #fff;
|
|
156
|
+
--dyson-star-mid: #dcecff;
|
|
157
|
+
--dyson-star-edge: #79aef7;
|
|
158
|
+
--dyson-star-size: 108px;
|
|
159
|
+
--dyson-cyan: #8fd5ff;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.dyson-root[data-star="red-giant"] {
|
|
163
|
+
--dyson-star-core: #ffe0b5;
|
|
164
|
+
--dyson-star-mid: #ff8b35;
|
|
165
|
+
--dyson-star-edge: #9f2d20;
|
|
166
|
+
--dyson-star-size: 148px;
|
|
167
|
+
--dyson-cyan: #52c7b6;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.dyson-root[data-star="blue-giant"] {
|
|
171
|
+
--dyson-star-core: #fff;
|
|
172
|
+
--dyson-star-mid: #a8d7ff;
|
|
173
|
+
--dyson-star-edge: #276bff;
|
|
174
|
+
--dyson-star-size: 132px;
|
|
175
|
+
--dyson-cyan: #a4e5ff;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.dyson-root[data-structure="ring"] {
|
|
179
|
+
--dyson-collector-width: 24px;
|
|
180
|
+
--dyson-collector-height: 2px;
|
|
181
|
+
--dyson-collector-opacity: 0.9;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.dyson-root[data-structure="ring"] .dyson-orbit-inner {
|
|
185
|
+
opacity: 0;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.dyson-root[data-structure="ring"] .dyson-collectors span {
|
|
189
|
+
transform: rotate(var(--angle)) translateX(112px) rotate(90deg);
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.dyson-root[data-structure="shell"] {
|
|
193
|
+
--dyson-collector-width: 30px;
|
|
194
|
+
--dyson-collector-height: 7px;
|
|
195
|
+
--dyson-collector-opacity: 0.78;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.dyson-root[data-structure="shell"] .dyson-collectors {
|
|
199
|
+
filter: drop-shadow(0 0 16px rgba(63, 183, 201, 0.34));
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.dyson-root[data-structure="statite-cloud"] {
|
|
203
|
+
--dyson-collector-width: 8px;
|
|
204
|
+
--dyson-collector-height: 8px;
|
|
205
|
+
--dyson-collector-opacity: 0.62;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.dyson-root[data-structure="statite-cloud"] .dyson-collectors span {
|
|
209
|
+
background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(63, 183, 201, 0.55));
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.dyson-power-beam {
|
|
213
|
+
position: absolute;
|
|
214
|
+
width: 38%;
|
|
215
|
+
height: 10px;
|
|
216
|
+
right: 7%;
|
|
217
|
+
top: 50%;
|
|
218
|
+
background: linear-gradient(90deg, rgba(255, 204, 88, 0), rgba(63, 183, 201, 0.82) 58%, rgba(63, 183, 201, 0));
|
|
219
|
+
filter: blur(1px);
|
|
220
|
+
mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 68%, transparent 100%);
|
|
221
|
+
-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 68%, transparent 100%);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.dyson-stage-readout {
|
|
225
|
+
position: absolute;
|
|
226
|
+
left: 1rem;
|
|
227
|
+
bottom: 1rem;
|
|
228
|
+
display: grid;
|
|
229
|
+
gap: 0.2rem;
|
|
230
|
+
color: var(--dyson-ink);
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.dyson-stage-readout span,
|
|
234
|
+
.dyson-results span,
|
|
235
|
+
.dyson-meter span,
|
|
236
|
+
.dyson-slider-row span,
|
|
237
|
+
.dyson-selector-grid span {
|
|
238
|
+
font-size: 0.78rem;
|
|
239
|
+
text-transform: uppercase;
|
|
240
|
+
letter-spacing: 0.075em;
|
|
241
|
+
color: color-mix(in srgb, var(--dyson-muted), var(--dyson-ink) 20%);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.dyson-stage-readout span {
|
|
245
|
+
color: rgba(22, 32, 31, 0.68);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.dyson-stage-readout strong {
|
|
249
|
+
font-size: clamp(2rem, 9vw, 4.6rem);
|
|
250
|
+
line-height: 0.9;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.theme-dark .dyson-stage-readout,
|
|
254
|
+
body.theme-dark .dyson-stage-readout,
|
|
255
|
+
html.theme-dark .dyson-stage-readout {
|
|
256
|
+
color: #f7f4ec;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.theme-dark .dyson-stage-readout span,
|
|
260
|
+
body.theme-dark .dyson-stage-readout span,
|
|
261
|
+
html.theme-dark .dyson-stage-readout span {
|
|
262
|
+
color: rgba(247, 244, 236, 0.72);
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.dyson-panel,
|
|
266
|
+
.dyson-results,
|
|
267
|
+
.dyson-diagnostics {
|
|
268
|
+
padding: 1.05rem;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.dyson-panel,
|
|
272
|
+
.dyson-results {
|
|
273
|
+
border-bottom: 1px solid rgba(22, 32, 31, 0.09);
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.dyson-selector-grid {
|
|
277
|
+
display: grid;
|
|
278
|
+
gap: 0.75rem;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.dyson-selector-grid label,
|
|
282
|
+
.dyson-slider-row {
|
|
283
|
+
display: grid;
|
|
284
|
+
gap: 0.45rem;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.dyson-selector-grid select {
|
|
288
|
+
appearance: none;
|
|
289
|
+
min-height: 44px;
|
|
290
|
+
border: 0;
|
|
291
|
+
border-bottom: 1px solid var(--dyson-line);
|
|
292
|
+
border-radius: 0;
|
|
293
|
+
background: transparent;
|
|
294
|
+
color: var(--dyson-ink);
|
|
295
|
+
padding: 0.65rem 0;
|
|
296
|
+
box-shadow: none;
|
|
297
|
+
outline: 0;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.dyson-selector-grid select:focus {
|
|
301
|
+
border-bottom-color: rgba(240, 138, 36, 0.5);
|
|
302
|
+
box-shadow: none;
|
|
303
|
+
outline: 0;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.dyson-selector-grid option {
|
|
307
|
+
background: #fffdfa;
|
|
308
|
+
color: #16201f;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.theme-dark .dyson-selector-grid select,
|
|
312
|
+
body.theme-dark .dyson-selector-grid select,
|
|
313
|
+
html.theme-dark .dyson-selector-grid select {
|
|
314
|
+
border-bottom-color: rgba(237, 245, 237, 0.14);
|
|
315
|
+
background: transparent;
|
|
316
|
+
color: #edf5ed;
|
|
317
|
+
color-scheme: dark;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.theme-dark .dyson-selector-grid select:focus,
|
|
321
|
+
body.theme-dark .dyson-selector-grid select:focus,
|
|
322
|
+
html.theme-dark .dyson-selector-grid select:focus {
|
|
323
|
+
border-bottom-color: rgba(240, 138, 36, 0.48);
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.theme-dark .dyson-selector-grid option,
|
|
327
|
+
body.theme-dark .dyson-selector-grid option,
|
|
328
|
+
html.theme-dark .dyson-selector-grid option {
|
|
329
|
+
background: #08100f;
|
|
330
|
+
color: #edf5ed;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.dyson-slider-stack {
|
|
334
|
+
display: grid;
|
|
335
|
+
gap: 1rem;
|
|
336
|
+
margin-top: 1rem;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.dyson-slider-row {
|
|
340
|
+
grid-template-columns: 1fr auto;
|
|
341
|
+
align-items: center;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.dyson-slider-row input {
|
|
345
|
+
grid-column: 1 / -1;
|
|
346
|
+
width: 100%;
|
|
347
|
+
height: 18px;
|
|
348
|
+
appearance: none;
|
|
349
|
+
background: transparent;
|
|
350
|
+
cursor: pointer;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.dyson-slider-row input::-webkit-slider-runnable-track {
|
|
354
|
+
height: 2px;
|
|
355
|
+
background: linear-gradient(90deg, rgba(240, 138, 36, 0.72), rgba(240, 138, 36, 0.22));
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.dyson-slider-row input::-webkit-slider-thumb {
|
|
359
|
+
width: 13px;
|
|
360
|
+
height: 13px;
|
|
361
|
+
appearance: none;
|
|
362
|
+
margin-top: -5.5px;
|
|
363
|
+
border: 0;
|
|
364
|
+
border-radius: 50%;
|
|
365
|
+
background: var(--dyson-amber);
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.dyson-slider-row input::-moz-range-track {
|
|
369
|
+
height: 2px;
|
|
370
|
+
background: rgba(240, 138, 36, 0.42);
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.dyson-slider-row input::-moz-range-thumb {
|
|
374
|
+
width: 13px;
|
|
375
|
+
height: 13px;
|
|
376
|
+
border: 0;
|
|
377
|
+
border-radius: 50%;
|
|
378
|
+
background: var(--dyson-amber);
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.dyson-results {
|
|
382
|
+
display: grid;
|
|
383
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
384
|
+
gap: 0.75rem;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
.dyson-results article {
|
|
388
|
+
min-height: 88px;
|
|
389
|
+
display: grid;
|
|
390
|
+
align-content: space-between;
|
|
391
|
+
padding: 0.45rem 0.2rem;
|
|
392
|
+
border-bottom: 1px solid rgba(22, 32, 31, 0.12);
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.dyson-results article:nth-last-child(-n + 2) {
|
|
396
|
+
border-bottom: 0;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.dyson-results strong {
|
|
400
|
+
font-size: clamp(1.05rem, 5vw, 1.7rem);
|
|
401
|
+
line-height: 1.05;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.dyson-diagnostics {
|
|
405
|
+
display: grid;
|
|
406
|
+
gap: 1rem;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.dyson-meter {
|
|
410
|
+
display: grid;
|
|
411
|
+
gap: 0.45rem;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.dyson-meter div {
|
|
415
|
+
height: 2px;
|
|
416
|
+
overflow: hidden;
|
|
417
|
+
border-radius: 0;
|
|
418
|
+
background: rgba(240, 138, 36, 0.18);
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.dyson-meter i {
|
|
422
|
+
display: block;
|
|
423
|
+
width: 0%;
|
|
424
|
+
height: 100%;
|
|
425
|
+
border-radius: 0;
|
|
426
|
+
background: rgba(240, 138, 36, 0.88);
|
|
427
|
+
transition: width 180ms ease;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.dyson-diagnostics p {
|
|
431
|
+
margin: 0;
|
|
432
|
+
color: var(--dyson-ink);
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.dyson-diagnostics dl {
|
|
436
|
+
display: grid;
|
|
437
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
438
|
+
gap: 0.75rem;
|
|
439
|
+
margin: 0;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.dyson-diagnostics div {
|
|
443
|
+
min-width: 0;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.dyson-diagnostics dt {
|
|
447
|
+
color: var(--dyson-muted);
|
|
448
|
+
font-size: 0.78rem;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.dyson-diagnostics dd {
|
|
452
|
+
margin: 0.2rem 0 0;
|
|
453
|
+
font-weight: 700;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
@media (min-width: 760px) {
|
|
457
|
+
.dyson-root {
|
|
458
|
+
grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.dyson-stage {
|
|
462
|
+
grid-row: span 3;
|
|
463
|
+
min-height: 690px;
|
|
464
|
+
border-right: 0;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
.dyson-stage::after {
|
|
468
|
+
inset: 0 0 0 auto;
|
|
469
|
+
width: 1px;
|
|
470
|
+
height: auto;
|
|
471
|
+
background: rgba(22, 32, 31, 0.08);
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.dyson-selector-grid {
|
|
475
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.dyson-panel {
|
|
479
|
+
border-bottom: 1px solid rgba(22, 32, 31, 0.09);
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
.dyson-results {
|
|
483
|
+
border-bottom: 1px solid rgba(22, 32, 31, 0.09);
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
@keyframes dyson-orbit-spin {
|
|
488
|
+
to {
|
|
489
|
+
rotate: 360deg;
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
@keyframes dyson-panel-shimmer {
|
|
494
|
+
0%,
|
|
495
|
+
100% {
|
|
496
|
+
filter: brightness(0.82);
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
50% {
|
|
500
|
+
filter: brightness(1.2);
|
|
501
|
+
}
|
|
502
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { ScienceToolEntry } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const dysonSphereEnergyCapture: ScienceToolEntry = {
|
|
4
|
+
id: 'dyson-sphere-energy-capture',
|
|
5
|
+
icons: {
|
|
6
|
+
bg: 'mdi:white-balance-sunny',
|
|
7
|
+
fg: 'mdi:solar-power-variant',
|
|
8
|
+
},
|
|
9
|
+
i18n: {
|
|
10
|
+
de: () => import('./i18n/de').then((m) => m.content),
|
|
11
|
+
en: () => import('./i18n/en').then((m) => m.content),
|
|
12
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
13
|
+
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
14
|
+
id: () => import('./i18n/id').then((m) => m.content),
|
|
15
|
+
it: () => import('./i18n/it').then((m) => m.content),
|
|
16
|
+
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
17
|
+
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
18
|
+
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
19
|
+
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
20
|
+
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
21
|
+
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
22
|
+
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
23
|
+
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
24
|
+
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
25
|
+
},
|
|
26
|
+
};
|