-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (81 loc) · 2.44 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
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
90
91
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SBQS 2024 - Salvador - Bahia</title>
<style>
body {
margin: 0;
padding: 0;
height: 100vh;
background-color: #1b8d82ff;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
font-family: Arial, sans-serif;
position: relative;
}
.logo {
position: absolute;
top: 20px;
left: 50%;
transform: translateX(-50%);
width: 120px;
height: auto;
}
.team-image-container {
display: flex;
justify-content: center;
margin-top: 100px;
position: relative;
}
.team-image-container img {
width: 500px;
height: auto;
border-radius: 10px;
border: 5px solid #fff;
}
.thank-you-text {
color: white;
font-size: 1.5rem;
text-align: center;
margin-top: 10px;
margin-bottom: 10px;
}
/* Estilo dos botões */
.button-container {
display: flex;
gap: 20px;
}
.button {
padding: 15px 30px;
font-size: 1.2rem;
color: white;
background-color: #fcce54ff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.button:hover {
background-color: #0e3d1b;
}
</style>
</head>
<body>
<img class="logo" src="img/LOGO_SBQS.png" alt="Logo da SBQS 2024">
<div class="team-image-container">
<img src="event_photos/foto_1156.jpg" alt="Equipe">
</div>
<div class="thank-you-text">
<h1>Valeu, pessoal!</h1>
<p>Foi um lindo SBQS! Obrigado a todos vocês!</p>
</div>
<div class="button-container">
<button class="button" onclick="window.location.href='index_prog.html'">Programação</button>
<button class="button" onclick="window.location.href='event_photos.html'">Fotos</button>
</div>
</body>
</html>