-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
79 lines (71 loc) · 3.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./css/estilo.css">
<!-- Production -->
<script src="https://unpkg.com/@popperjs/core@2"></script>
<script src="https://unpkg.com/tippy.js@6"></script>
<link
rel="stylesheet"
href="https://unpkg.com/tippy.js@6/themes/light-border.css"
/>
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<title>Resultados, PREP</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>Elecciones 2024</h1>
<p class="lead">Resultados preliminares de diputados por distrito, México.
</p>
<div id="mapa"></div>
</div>
</div>
</div>
<div class="footer textito" style="text-align: center;">
<p>
La representación hexagonal de los distritos equivale a una cantidad proporcional de personas. Hay distritos muy grandes que muestran áreas geográficas extensas pero con poca gente. Este diseño muestra una justa proporcionalidad de la población votante.
</p>
<p>
Actualizado a las <span id="corte"> <script>
document.write(new Date().toLocaleTimeString() + " del "+ new Date().toLocaleDateString())
</script></span> con un <span id="porcentaje"></span>% de avance reportado por el INE.
<br>
<strong>Toca F5</strong> o refresca tu navegador para ver los resultados actualizados.
</p>
<p>
Gracias al trabajo de
</p>
<img class="logo" src="https://gobernantes.info/static/img/gobernantesinfo-logo.svg" alt="Gobernantes.info" width="200" height="45"><br>
<img src="https://gobernantes.info/static/img/logo-morlan.svg" width="100" style="margin: 10px"><br>
<a href="https://davidhernandez.com.mx"><strong>David Hernández</strong></a><br>
y<br>
<a href="https://visualizando.ar"><strong>Andrés Snitcofsky</strong></a><br>
</div>
<br>
<br>
<br>
<br>
</body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/d3@7"></script>
<script src="https://cdn.jsdelivr.net/npm/@observablehq/[email protected]"></script>
<script src="./js/script.js" type="module"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-L0JR11RKVF"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-L0JR11RKVF');
</script>
</html>