-
Notifications
You must be signed in to change notification settings - Fork 0
/
sucessfull.html
89 lines (76 loc) · 2.21 KB
/
sucessfull.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cadastro Realizado</title>
<link rel="icon" href="./imagens/casa-icone.jpg" type="image/x-icon">
<script>
function fecharPagina() {
window.close();
}
</script>
<STyle>
body {
background-color: rgb(80, 80, 80, .3);
}
.divisao {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
h1 {
width: 400px;
font-size: 40px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
top: 100%;
left: 50%;
border: 1px black solid;
padding: 10px;
text-align: center;
background-color: rgb(80, 80, 80, .2);
}
.botao-geral {
position: absolute;
left: 45%;
transform: translate(-45%);
}
.botao-anterior {
padding: 5px;
border-radius: 5px;
background-color: rgb(80, 80, 80, .3);
}
.botao-fechar {
padding: 5px;
border-radius: 5px;
background-color: rgb(80, 80, 80, .3);
}
.botao-anterior:hover {
color: #fff;
background-color: rgb(80, 80, 80, .5);
}
.botao-fechar:hover {
color: #fff;
background-color: rgb(80, 80, 80, .5);
}
.botao-anterior:active {
color: #000000;
background-color: rgb(80, 80, 80, .3);
}
.botao-fechar:active {
color: #000000;
background-color: rgb(80, 80, 80, .3);
}
</STyle>
</head>
<body>
<div class="divisao">
<h1>Cadastro Realizado!</h1>
<div class="botao-geral">
<a href="./clientes.html"><button class="botao-anterior">Voltar para página anterior</button></a>
<button class="botao-fechar" onclick="fecharPagina()">Fechar</button>
</div>
</div>
</body>
</html>