-
Notifications
You must be signed in to change notification settings - Fork 0
/
credits.html
72 lines (63 loc) · 2.03 KB
/
credits.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Credits</title>
<link rel="stylesheet" href="styles/credits.css">
<style>
body {
font-family: Arial, sans-serif;
background-color: #0a0a23;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.credits-container {
max-width: 600px;
padding: 20px;
background-color: #feac32;
background-image: linear-gradient(#fecc4c, #ffac33);
border: 3px solid #feac32;
border-radius: 5px 5px 5px 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
text-align: center;
}
.credits-title {
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
color: #333;
}
.credit-item {
margin-bottom: 10px;
}
.credit-item strong {
display: inline-block;
width: 120px;
font-weight: bold;
}
.a {
color: #fff;
}
</style>
</head>
<body>
<div class="credits-container">
<h1 class="credits-title">Créditos</h1>
<!-- Créditos individuais -->
<div class="credit-item">
<strong>Desenvolvedor:</strong> <a href="https://www.linkedin.com/in/andr%C3%A9-queirozz/">André Antônio da Silva Queiroz</a>
</div>
<div class="credit-item">
<strong>Designer:</strong> <a href="https://www.linkedin.com/in/andr%C3%A9-queirozz/">André Antônio da Silva Queiroz</a>
</div>
<p>Obrigado por jogar!</p>
<a href="menu.html"><button class="menu-button">Voltar ao Menu</button></a>
</div>
</body>
</html>