Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions quinzena3/bugfixes/css/compra.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
*{
margin: 0;
padding: 0;
}

h3{
background-color: #ef8433;
color: white;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
padding: 10px;
}

.botao{
padding: 8px 35px;
color: white;
background-color: #f7df77;
border: 0.3em;
border-radius: 0.2em
}


.controle{
display: flex;
align-content: center;
justify-content: center;
margin: 80px
}

.preco{
padding: 8px 45px;
}

.produto{
padding: 8px 45px;
}
45 changes: 45 additions & 0 deletions quinzena3/bugfixes/css/compras.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="compra.css">
<title>Document</title>
</head>
<body>
<div>
<h3>For Ever 4</h3>
<form style="display: flex; justify-content: center; align-items: center; margin-top: 60px; " class="example" action="action_page.php">
<input style="border-top: rgb(255, 255, 255); border-left: rgb(255, 255, 255); border-right: white; padding: 5px 90px;" type="text" placeholder="" name="search">
<button style="background-color: rgba(240, 248, 255, 0); border:aliceblue;" type="submit"><i class="fa fa-search"></i></button>
</form>

<div class="controle">
<table>
<tr>
<td><img src="img/camisetas.png" alt="camisetas"/></td>
<td class="produto"> Camisetas </td>
<td class="preco"> R$ 50,00 </td>
<td> <a href="compras.html"><button class="botao">COMPRAR</button></a> </td>
</tr>
<tr>
<td><img src="img/jeans.png" alt="Jeans"/></td>
<td style="padding: 8px 55px;"> Jeans </td>
<td class="preco"> R$ 80,00 </td>
<td> <a href="compras.html"><button class="botao">COMPRAR</button></a> </td>
</tr>
<tr>
<td><img src="img/chinelos.png" alt="Chinelos"/></td>
<td class="produto"> Chinelos </td>
<td class="preco"> R$ 20,00 </td>
<td> <a href="compras.html"><button class="botao">COMPRAR</button></a> </td>
</tr>
</table>
</div>
<a href="home.html"><button style="margin-left: 630px; padding: 5px 35px;">Voltar</button></a>
<!-- -->
</div>
</body>
</html>
24 changes: 24 additions & 0 deletions quinzena3/bugfixes/css/home.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div style=" width: 100%; display: flex; flex: 0 1 auto; flex-direction: column;">
<h3>For Ever 4</h3>
<div class="part1">
<p class="inicio"> Somos uma empresa focada em tormar a compra de roupas mais fácil </p>
<p class="meio">1. Ache os melhores descontos 2. Busque pelos seus gostos</p>
<p class="fim"><b>Realize seus sonhos conosco</b></p>
</div>
<footer>
<h1>BORA COMEÇAR A</h1>
<a href="compras.html"><button>COMPRAR</button></a>
</footer>
</div>
</body>
</html>
Binary file added quinzena3/bugfixes/css/img/camisetas.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added quinzena3/bugfixes/css/img/chinelos.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added quinzena3/bugfixes/css/img/jeans.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
73 changes: 73 additions & 0 deletions quinzena3/bugfixes/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
*{
margin: 0;
padding: 0;
}

h3{
background-color: #ef8433;
color: white;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
padding: 10px;
}

.part1{
background-color: #3974a1;
padding: 98px;
}

.inicio{
display: flex;
color: white;
text-align: center;
justify-content: center;
align-items: center;
padding: 0px 472px;
margin-top: -20px;
font-family: Arial, Helvetica, sans-serif;
}

.meio{
display: flex;
color: white;
text-align: center;
justify-content: center;
align-items: center;
padding: 13px 465px;
font-family: Arial, Helvetica, sans-serif;
}

.fim{
display: flex;
color: white;
justify-content: center;
align-items: center;
padding: 0px 453px;
margin-top: 10px;
font-family: Arial, Helvetica, sans-serif;
}

footer{
background-color: #e9ea9b;
padding: 78px;
}

h1{
display: flex;
align-items: flex-start;
justify-content: center;
font-family: Arial, Helvetica, sans-serif;
color: #ba5e28;
margin-top: -1.23em

}

button{
margin-left: 525px;
padding: 8px 35px;
color: white;
background-color: #f4b259;
margin-top: 5.80em;
border: 0.3em;
border-radius: 0.2em
}