-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
469 lines (413 loc) · 13.8 KB
/
index.html
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="favicon_filofut.png">
<style>
.footer {
margin-top: 4rem;
padding: 2rem 1rem;
background: white;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.footer-content {
max-width: 800px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 2rem;
}
.footer-links {
display: flex;
flex-wrap: wrap;
gap: 2rem;
justify-content: center;
}
.footer-links a {
color: #1e40af;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: #3b82f6;
text-decoration: underline;
}
.social-icons {
display: flex;
justify-content: center;
gap: 1.5rem;
}
.social-icons a {
color: #1e40af;
transition: color 0.3s ease;
}
.social-icons a:hover {
color: #3b82f6;
}
.social-icons svg {
width: 24px;
height: 24px;
}
@media screen and (max-width: 640px) {
.footer-links {
flex-direction: column;
align-items: center;
gap: 1rem;
}
.footer {
margin-top: 2rem;
padding: 1.5rem 1rem;
}
}
</style>
<style>
body {
font-family: system-ui, -apple-system, sans-serif;
background: #f0f2f5;
margin: 0;
padding: 1rem;
color: #1a1a1a;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 0 1rem;
}
h1 {
text-align: center;
color: #1e40af; /* Darker, richer blue */
font-size: 2.5rem; /* Larger size */
font-weight: 800; /* Bolder */
letter-spacing: -0.025em; /* Tighter letter spacing */
}
.timeline {
position: relative;
padding: 2rem 0;
}
.timeline::before {
content: '';
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 4px;
height: 100%;
background: #0c316d;
border-radius: 2px;
}
.timeline-item {
display: flex;
justify-content: flex-end;
padding: 2rem 0;
width: 100%;
position: relative;
}
.timeline-item:nth-child(odd) {
justify-content: flex-start;
}
.timeline-content {
width: 42%;
padding: 1.5rem;
background: white;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
position: relative;
transition: all 0.9s ease;
margin: 0 -20px;
cursor: pointer;
}
.timeline-content:hover {
background: #f0f7ff;
transform: scale(1.02);
}
.date {
color: #1e40af;
font-weight: bold;
margin-bottom: 0.5rem;
font-size: 1.2rem;
}
.milestone {
font-size: 1.1rem;
line-height: 1.5;
}
.milestone ul {
margin: 0;
padding-left: 1.2rem;
}
.milestone li {
margin-bottom: 0.5rem;
}
.dot {
width: 20px;
height: 20px;
background: #1e40af;
border-radius: 50%;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}
.additional-info {
opacity: 0;
max-height: 0;
margin-top: 0;
padding-top: 0;
overflow: hidden;
transition: all 0.8s ease;
}
.timeline-content:hover .additional-info {
opacity: 1;
max-height: 300px;
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid #3b82f6;
}
.additional-info ul {
margin: 0;
padding-left: 1.2rem;
list-style-type: disc;
}
.additional-info li {
margin-bottom: 0.5rem;
font-size: 0.95rem;
color: #4a5568;
}
.additional-info a {
color: #3b82f6;
text-decoration: underline;
}
/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
.container {
padding: 0 0.5rem;
}
h1 {
font-size: 1.75rem;
margin-bottom: 1.5rem;
}
.timeline::before {
left: 1rem;
}
.timeline-item {
justify-content: flex-end;
padding: 1.5rem 0;
}
.timeline-item:nth-child(odd) {
justify-content: flex-end;
}
.timeline-content {
width: calc(100% - 3rem);
margin-left: 2rem;
}
.dot {
left: 1rem;
}
.timeline-item:nth-child(odd) .timeline-content::after,
.timeline-item:nth-child(even) .timeline-content::after {
display: none;
}
/* Only change this selector in your CSS - replace the existing hover-only version */
.timeline-content:hover .additional-info,
.timeline-content:active .additional-info {
opacity: 1;
max-height: 300px;
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid #3b82f6;
}
/* And optionally, add this to remove the default blue highlight on mobile taps */
.timeline-content {
-webkit-tap-highlight-color: transparent;
}
.date {
font-size: 1.1rem;
}
.milestone {
font-size: 1rem;
}
}
@media screen and (max-width: 480px) {
body {
padding: 0.5rem;
}
.timeline-content {
padding: 1rem;
}
.additional-info {
font-size: 0.9rem;
}
}
@media (hover: hover) and (pointer: fine) {
.timeline-content:hover .additional-info {
opacity: 1;
max-height: 300px;
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid #3b82f6;
}
}
@media (hover: none) and (pointer: coarse) {
.timeline-content.touched .additional-info {
opacity: 1;
max-height: 300px;
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid #3b82f6;
}
/* Improve touch handling */
.timeline-content {
touch-action: pan-y pinch-zoom; /* Explicitly allow vertical scrolling and pinch zoom */
-webkit-overflow-scrolling: touch; /* Enable smooth scrolling on iOS */
}
}
/* Add this to your existing mobile styles */
@media screen and (max-width: 768px) {
.timeline-content {
-webkit-tap-highlight-color: transparent;
}
/* Ensure container is scrollable */
.container {
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
}
</style>
</head>
<body>
<div class="container">
<h1>La revolución networkista</h1>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-content">
<div class="date">2025</div>
<div class="milestone">
<ul>
<li>Diseñar el quinto tejido.</li>
<li>Fortalecer la comunidad.</li>
</ul>
</div>
<div class="additional-info">
<p>El quinto tejido es la extensión escalable del reconocimiento.</p>
<p>La <a href="http://txt.networkismo.com" target="_blank">teoría networkista</a> muestra cómo escalar el quinto tejido resolverá los grandes problemas económicos, emocionales y ambientales del presente.</p>
<p>Podés encontrar un resumen breve <a href="https://filosofiadelfuturo.com/p/qu-es-el-networkismo" target="_blank">acá</a>.</p>
</div>
</div>
<div class="dot"></div>
</div>
<div class="timeline-item">
<div class="timeline-content">
<div class="date">2026 - 2027</div>
<div class="milestone">
<ul>
<li>Implementar el quinto tejido y la interfaz para accederlo.</li>
<li>Iterar hasta garantizar GTM para un caso de uso concreto.</li>
</ul>
</div>
<div class="additional-info">
<p>Al principio, los efectos de red jugarán en nuestra contra.</p>
<p>Debemos apuntar a una necesidad de nicho de un grupo pequeño.</p>
<p>Conviene seguir el principio de <a href="https://paulgraham.com/ds.html" target="_blank">hacer cosas no escalables</a>.</p>
</div>
</div>
<div class="dot"></div>
</div>
<div class="timeline-item">
<div class="timeline-content">
<div class="date">2028 - 2029</div>
<div class="milestone">
<ul>
<li>Escalar el quinto tejido.</li>
<li>Garantizar seguridad e implementación descentralizada.</li>
</ul>
</div>
<div class="additional-info">
<p>La descentralización de registros funciona por redundancia, computacionalmente costosa.</p>
<p>La paralelización es necesaria para que los registros soporten transacciones en cantidad.</p>
<p>Esta debe darse "abajo" y no "arriba" del protocolo de consenso para evitar una centralización peor del poder.</p>
</div>
</div>
<div class="dot"></div>
</div>
<div class="timeline-item">
<div class="timeline-content">
<div class="date">2030</div>
<div class="milestone">
<ul>
<li>Alcanzar la masa crítica.</li>
<li>Vencer.</li>
</ul>
</div>
<div class="additional-info">
<p>El sistema será preferible al mercado por resolver sus ineficiencias y escalará por efectos de red.</p>
<p>La liga networkista se disolverá y disfrutaremos el mundo nuevo.</p>
</div>
</div>
<div class="dot"></div>
</div>
</div>
<div class="footer">
<div class="footer-content">
<div class="footer-links">
<a href="https://txt.networkismo.com" target="_blank">El paradigma de la red</a>
<a href="https://filosofiadelfuturo.com" target="_blank">Blog de Filosofía del futuro</a>
<a href="https://filosofiadelfuturo.com/subscribe" target="_blank">Nuestro newsletter</a>
</div>
<div class="social-icons">
<a href="https://www.instagram.com/filosofiafuturo/" target="_blank" aria-label="Instagram">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect>
<path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path>
<line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line>
</svg>
</a>
<a href="https://youtube.com/c/FilosofíadelFuturo" target="_blank" aria-label="YouTube">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"></path>
<polygon points="9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"></polygon>
</svg>
</a>
<a href="https://x.com/filosofiafuturo" target="_blank" aria-label="Twitter">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M4 4l11.733 16h4.267l-11.733-16z"></path>
<path d="M4 20l6.768-6.768m2.464-2.464L20 4"></path>
</svg>
</a>
</div>
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const timelineContents = document.querySelectorAll('.timeline-content');
let touchStartY = 0;
let touchEndY = 0;
const scrollThreshold = 10; // pixels of movement to consider it a scroll
timelineContents.forEach(content => {
// Track where touch started
content.addEventListener('touchstart', function(e) {
touchStartY = e.touches[0].clientY;
}, { passive: true });
// Track where touch ended
content.addEventListener('touchend', function(e) {
touchEndY = e.changedTouches[0].clientY;
// Calculate vertical movement
const verticalMove = Math.abs(touchEndY - touchStartY);
// If it's a tap (minimal vertical movement)
if (verticalMove < scrollThreshold) {
// Remove 'touched' class from all other items
timelineContents.forEach(item => {
if (item !== content) {
item.classList.remove('touched');
}
});
// Toggle 'touched' class on the current item
content.classList.toggle('touched');
}
}, { passive: true });
});
});
</script>
</body>
</html>