-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpagamento-1.html
More file actions
46 lines (41 loc) · 1.15 KB
/
Copy pathpagamento-1.html
File metadata and controls
46 lines (41 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<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>Pagamento 1</title>
<style>
body {
height: 100vh;
width: 100vw;
/* background-image: url("./assets/images/Pagamento-desktop-1.png"); */
background-image: url("./assets/images/Pagamento-mobile-1.png");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: contain;
background-color: "##FFFFFF";
background-position: center;
}
@media screen and (max-width: 1023px) {
body {
background-image: url("./assets/images/Pagamento-mobile-1.png");
background-size: contain;
}
}
</style>
</head>
<body>
<script>
window.addEventListener("DOMContentLoaded", (event) => {
console.log("general data page loaded");
document.body.addEventListener("click", (event) => {
window.location.href = window.location.href.replace(
"pagamento-1",
"pagamento-2"
);
});
});
</script>
</body>
</html>