forked from jsskkj/Projeto-Pedido
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaceito.html
More file actions
55 lines (55 loc) · 1.78 KB
/
Copy pathaceito.html
File metadata and controls
55 lines (55 loc) · 1.78 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
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pedido Aceito</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: pink;
}
.texto {
margin-top: 50px;
font-size: 20px;
}
.gatinhos {
margin-top: 50px;
display: flex;
justify-content: center;
align-items: center;
}
.gatinho {
margin: 10px;
width: 200px;
height: 200px;
}
@media only screen and (max-width: 768px) and (min-width: 320px) and (-webkit-min-device-pixel-ratio: 2) {
.gatinhos {
display: block;
}
.gatinho {
width: 90%; /* Largura relativa */
max-width: none; /* Remover a largura máxima */
margin: 5px auto; /* Centralizar na tela */
}
}
</style>
</head>
<body>
<h1>Pedido Aceito</h1>
<div class="texto">
<p>Agora que aceitou vai ter que me aturar rsrsrs</p>
<p>EU TE AMOOOOOOOO MUITOOOOOOO</p>
</div>
<div class="gatinhos">
<img class="gatinho" src="imagens/gatinho1.jpg" alt="Gatinho 1">
<img class="gatinho" src="imagens/gatinho2.jpg" alt="Gatinho 2">
<img class="gatinho" src="imagens/gatinho3.jpg" alt="Gatinho 3">
<img class="gatinho" src="imagens/gatinho4.jpg" alt="Gatinho 4">
<img class="gatinho" src="imagens/gatinho5.jpg" alt="Gatinho 5">
<img class="gatinho" src="imagens/gatinho6.jpg" alt="Gatinho 3">
</div>
</body>
</html>