-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
54 lines (47 loc) · 1.86 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
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>SOS Enchentes</title>
</head>
<body>
<div class="vakinha-fixed">
<img class="vakinha-motion-bottom" src="img/vakinha-enchentes-fixed.png" alt="Vaquinhas Enchentes">
<div class="vakinha-motion-bottom">
<a target="_blank" alt="Acesse o Vakinha"
href="https://www.vakinha.com.br/vaquinha/a-maior-campanha-solidaria-do-rs">
<button class="pushable">
<span class="front-small">
Acesse aqui
</span>
</button>
</a>
</div>
</div>
<div class="overlay-vakinha">
<div class="vakinha">
<img class="vakinha-motion-top" src="img/vakinha-enchentes.png" alt="Vaquinhas Enchentes">
<div class="vakinha-motion-bottom">
<a target="_blank" alt="Acesse o Vakinha"
href="https://www.vakinha.com.br/vaquinha/a-maior-campanha-solidaria-do-rs">
<button class="pushable">
<span class="front">
Acesse aqui a Vakinha
</span>
</button>
</a>
</div>
<div class="fechar-vakinha vakinha-motion-bottom" onclick="fecharOverlay()">
<img src="https://img.icons8.com/metro/26/close-window.png" alt="Fechar o pop-up" title="Fechar o pop-up" />
</div>
</div>
</div>
<script>
function fecharOverlay() {
var overlay = document.querySelector('.overlay-vakinha');
overlay.style.display = 'none';
}
</script>
</body>
</html>