-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmap.html
More file actions
72 lines (68 loc) · 2.46 KB
/
map.html
File metadata and controls
72 lines (68 loc) · 2.46 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mapa Interativo</title>
<link rel="stylesheet" href="map.css">
<link rel="icon" href="Img/mapButton.png">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" />
</head>
<body>
<div class="background">
<div class="rot-bt">
<span class="material-symbols-outlined">
arrow_back
</span>
</div>
<div class="main">
<div class="chest-map">
<div class="egg-count">
<img src="Img/egg.png" alt="" width=20>
<p class="egg-count-number">0/0</p>
</div>
<img src="" alt="Map Image" class="map-img" />
<div class="map-loading">Carregando...</div>
<div class="map-options">
<div class="map-updown map-up">
<span class="material-symbols-outlined">keyboard_arrow_up</span>
</div>
<div class="map-updown map-down">
<span class="material-symbols-outlined">keyboard_arrow_down</span>
</div>
</div>
<div class="map-coordinates"></div>
</div>
<div class="map-selection">
</div>
<div class="map-selection-bt">
<img class="map-select-img" src="Img/Maps/East Blue.png" alt="">
<p class="island-name">East Blue</p>
<p class="change-island">(Mudar ilha)</p>
</div>
<!--<div class="warn">
<span class="material-symbols-outlined">
warning
</span>
<div class="warn-text">
<p>Alguns andares estão faltando então os ovos que tem um aviso vermelho com um + ou - um número significa que fica está quantidade de andares acima ou abaixo.
</p>
</div>
</div>-->
</div>
</div>
<p class="assinatura">Criado por Lionheart</p>
</body>
<script src="constants.js"></script>
<script src="map.js"></script>
<style>
.material-symbols-outlined {
font-variation-settings:
'FILL' 0,
'wght' 400,
'GRAD' 0,
'opsz' 24;
color: white;
}
</style>
</html>