Skip to content

Commit d6174fe

Browse files
committed
Enhance product display with horizontal image list and update text for clarity
1 parent a7f897a commit d6174fe

File tree

2 files changed

+32
-6
lines changed

2 files changed

+32
-6
lines changed

1.html

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,16 @@
1111
<body>
1212
<h1>Boas-vindas a sua área de comércio!</h1>
1313
<h2>Seus produtos já cadastrados</h2>
14-
<ul>
15-
<li>Produto 1</li>
16-
<li>Produto 2</li>
17-
<li>Produto 3</li>
14+
<ul class="horizontal-list">
15+
<li><img src="hackathon.png" alt="Produto 1"><br>Produto 1</li>
16+
<li><img src="hackathon.png" alt="Produto 2"><br>Produto 2</li>
17+
<li><img src="hackathon.png" alt="Produto 3"><br>Produto 3</li>
1818
</ul>
19-
<h3>Cadastre o seu produto <a href>aqui</a></h3>
20-
<h2>O seu ponto estratégico pode ser visualizado no mapa:</h2>
19+
<h3>Cadastre um ou mais produtos <a href>clicando aqui</a></h3>
20+
<h4>O seu ponto estratégico de apoio pode ser visualizado no mapa:</h4>
2121
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3981.073013073073!2d-60.02507368570869!3d-3.101000997747073!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x92f9e4b1b1b1b1%3A0x1b1b1b1b1b1b1b1!2sManaus%20Plaza%20Shopping!5e0!3m2!1spt-BR!2sbr!4v1607520000000!5m2!1spt-BR!2sbr" width="600" height="450" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
2222

2323

24+
2425
</body>
2526
</html>

style.css

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,29 @@ iframe {
3333
display: block;
3434
margin-left: auto;
3535
margin-right: auto;
36+
}
37+
/* lista com imagens na horizontal */
38+
.horizontal-list {
39+
list-style-type: none; /* Remove os marcadores da lista */
40+
padding: 0;
41+
margin: 0;
42+
display: flex; /* Define a lista como flexbox */
43+
}
44+
45+
.horizontal-list li {
46+
margin-right: 20px; /* Espaçamento entre os itens */
47+
text-align: center; /* Centraliza o texto e a imagem */
48+
}
49+
50+
.horizontal-list img {
51+
width: 200px; /* Define a largura das imagens */
52+
height: auto; /* Mantém a proporção das imagens */
53+
}
54+
55+
/* cor dos links */
56+
a {
57+
color: bluelight;
58+
/* link já clicado */
59+
text-decoration: none;
60+
/* link não clicado */
3661
}

0 commit comments

Comments
 (0)