This repository has been archived by the owner on Nov 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
87 lines (82 loc) · 2.24 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
<!DOCTYPE html>
<html lang="it">
<head>
<!-- Hey hacker, stai calmo. Sono un semplice index.html, nulla da guardare qui. -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Esito Mappatura Infratel 2021</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #3730a3;
color: #e0e7ff;
font-family: sans-serif;
font-size: 10px;
text-align: center;
}
.container {
min-height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
padding: 1rem;
}
main {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.8rem;
width: 100%;
flex-grow: 1;
}
a {
color: #9fb9ff;
text-decoration: none;
transition: all 0.2s;
}
a:hover {
color: #b7caff;
}
</style>
</head>
<body>
<div class="container">
<main>
<p style="font-size: 1.2rem">
Il sito BUL è stato aggiornato con le consultazioni del 2021, quindi
questo strumento non ha più senso di esistere.
<span style="font-size: 0.8rem; color: #ccc5cd; font-style: italic">
Forse.
</span>
</p>
<a
style="font-size: 1.5rem"
href="https://bandaultralarga.italia.it/indirizzo/"
target="_blank"
rel="noopener noreferrer"
>Clicca qui per verificare la copertura sul sito di Infratel</a
>
</main>
<footer style="flex-shrink: 1">
<p style="font-size: 0.8rem; margin-bottom: 0.5rem">
Grazie a tutti per il supporto, in special modo a chi ha donato per
sostenere questo mini-progetto temporaneo.
</p>
<a
style="font-size: 1rem; font-weight: bold"
href="https://edoardo.ranghieri.com"
target="_blank"
rel="noopener noreferrer"
>TheEdoRan</a
>
</footer>
</div>
</body>
</html>