Skip to content

Commit

Permalink
Correciones de Estilo
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucasponzoni committed Oct 4, 2023
1 parent 9457c7d commit b3ff7ce
Show file tree
Hide file tree
Showing 7 changed files with 67 additions and 72 deletions.
Binary file added .DS_Store
Binary file not shown.
Binary file added elements/.DS_Store
Binary file not shown.
Binary file added elements/Logo_Novogar_Fav.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 elements/Novogar Logo Large.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
68 changes: 0 additions & 68 deletions elements/fondo-desktop.svg

This file was deleted.

23 changes: 19 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@
<script src="tarifa_calculator.js"></script>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body class="fondo">
<div class="container cotizador centered">
<h1 class="mt-5">Calculadora de Tarifas Andreani Novogar</h1>
<div class="container cotizador center">
<img class="logo-novogar" src="./elements/Logo_Novogar_Fav.png" alt="Logo Novogar" srcset="">
<h1 class="titulo">Calculadora de Tarifas Andreani Novogar</h1>

<form class="row g-3" id="tarifaForm">
<div class="col-md-4">
Expand Down Expand Up @@ -51,8 +55,8 @@ <h1 class="mt-5">Calculadora de Tarifas Andreani Novogar</h1>
<option value="400017259" selected>NOVOGAR</option>
</select>
</div>
<div class="col-12">
<button type="button" class="btn btn-primary" onclick="calcularTarifa()">Calcular Tarifa</button>
<div class="d-grid gap-2">
<button type="button" class="btn btn-danger" onclick="calcularTarifa()">Calcular Tarifa</button>
</div>
</form>

Expand All @@ -62,4 +66,15 @@ <h1 class="mt-5">Calculadora de Tarifas Andreani Novogar</h1>

<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.min.js"></script>
</body>

<footer class="center">
<img class="logo-foot" src="./elements/Novogar Logo Large.png" alt="Logo Novogar">
<a href="https://novogar.com.ar/info/empresa" target="_blank" >Quienes somos</a>
<a href="https://novogar.com.ar/info/Sucursales" target="_blank" >Sucursales</a>
<a href="https://novogar.com.ar/info/ventaTelefonica" target="_blank" >Atención al cliente</a>
</footer>

</body>
</html>

</html>
48 changes: 48 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,54 @@
.cotizador{
margin-top: 2rem;
background-color: white;
margin-bottom: 1rem;
padding: 1rem;
border-radius: 2rem;
align-items: center;
justify-content: center;
display: flex;
flex-direction: column;
}

.titulo{
font-family: 'Unbounded', sans-serif;
font-size: 2rem;
text-align: center;
background: -webkit-linear-gradient(#fe1919, #aa1515);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.form-label{
font-family:"sf_pro_light";
}

.logo-novogar{
width: 100px;
padding: .5rem;
}

footer{
padding: 1rem;
background-color: white;
display: flex;
flex-direction: column;
text-align: center;
align-items: center;
font-family: 'Unbounded', sans-serif;
}

footer > a{
text-decoration: none;
color: grey;
transition: .5s;
}

footer > a:hover{
text-decoration: underline;
color: red;
}

.logo-foot{
width: 300px;
}

0 comments on commit b3ff7ce

Please sign in to comment.