Skip to content

Commit

Permalink
CSS added
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxiCastaneda committed Jun 5, 2024
1 parent adeb0d0 commit 37513be
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 9 deletions.
37 changes: 28 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
<!doctype html>
<html lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="color-scheme" content="light dark" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.jade.min.css" />
<link rel="stylesheet" href="styles.css">
<script src="script.js"></script>
<title>CalculAR</title>
</head>

<body class="container-fluid">
<nav>
<ul>
<li><strong>Hola Florcita!</strong></li>
<li><strong>Hola!</strong></li>
</ul>
<ul>
<li>
Expand All @@ -30,22 +33,38 @@
</ul>
</nav>
<h2>Calculadora inflacionaria</h2>
<p>Ingresa tu sueldo actual y el mes de tu último aumento para ver como se encuentra con respecto a la inflación</p>
<p>Ingresá tu sueldo actual y el mes de tu último aumento para ver como se encuentra con respecto a la inflación</p>
<hr />
<form id="calculator-form">
<main>
<div class="grid">
<div></div>
<div>
<label for="montoARS" class="label">Monto ARS</label>
<input type="number" placeholder="$ARS" aria-label="Monto ARS" id="montoARS" min="1" required>
<small>Sin separadores, ej: 300000</small>
</div>
<div>
<label for="fecha" class="label">Mes última actualización</label>
<input type="month" placeholder="MM" aria-label="fecha" id="fecha" required>
<small>Actualizado con índices a Mayo de 2024</small>
<hr />
<button type="submit" id="submit"> <strong> CalculAR</strong></button>
<pre id="results"></pre> <!-- Esto estaba fuera del formulario, ahora está dentro -->
<small>Actualizado con índices a Abril de 2024</small>
</div>
<div></div>
</div>
<hr>
<div class="grid">
<div></div>
<div>
<button type="submit" id="submit"> <strong> CalculAR</strong></button>
<p id="results"></p>
</div>
<div></div>
</div>
</main>
</form>
<hr />
<footer></footer>

<footer>🩵🤍🩵</footer>
</body>
</html>

</html>

7 changes: 7 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
h2, p, footer{
text-align: center;
}

footer {
margin-bottom: 0;
}

0 comments on commit 37513be

Please sign in to comment.