-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMapaPokedex.html
75 lines (70 loc) · 2.04 KB
/
MapaPokedex.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mapa PokeCenters</title>
<style>
body {
background-image: url(IMG_POKE.jpeg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-color: rgb(247, 242, 242);
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.pokedex-container {
position: relative;
width: 19.5%;
height: 40%;
max-width: 1200px;
}
.map-frame {
position: absolute;
top: 3%;
left: 5%;
width: 90%;
height: 80%;
border: none;
border-radius: 5px;
}
/* Responsividade */
@media (max-width: 768px) {
.map-frame {
top: 5%;
left: 5%;
width: 90%;
height: 70%;
}
}
@media (max-width: 480px) {
.map-frame {
top: 5%;
left: 5%;
width: 90%;
height: 60%;
}
body {
flex-direction: column;
}
}
</style>
</head>
<body>
<!-- Mapa de Tokyo -->
<div class="pokedex-container">
<iframe
class="map-frame"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d51822.25179452723!2d139.64310684863284!3d35.728905600000026!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x60188d6f044d6725%3A0x5c5c669ed9f5c455!2sPok%C3%A9mon%20Center%20Mega%20Tokyo%20%26%20Pikachu%20Sweets!5e0!3m2!1spt-BR!2sbr!4v1733618059237!5m2!1spt-BR!2sbr"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade">
</iframe>
</div>
</body>
</html>