Skip to content

Commit

Permalink
Modificar fuentes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dracoptera committed Mar 4, 2020
1 parent a3f07ac commit d99383f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
3 changes: 3 additions & 0 deletions cuentas/static/cuentas/css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.card {
font-size: 1.5rem;
}
4 changes: 2 additions & 2 deletions cuentas/templates/cuentas/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ <h5 class="card-title">Mañana</h5>
</li>
</ul>
</div>
<a href="/medicamentos/" class="btn btn-warning m-2">Agregar</a>
<a href="/medicamentos/" class="btn btn-warning m-2 btn-lg">Agregar</a>
</div>
</div>
<div class="card text-center">
Expand All @@ -47,7 +47,7 @@ <h5 class="card-title">Noche</h5>

</ul>
</div>
<a href="/medicamentos/" class="btn btn-dark m-2">Agregar</a>
<a href="/medicamentos/" class="btn btn-dark m-2 btn-lg">Agregar</a>
</div>
</div>

Expand Down
1 change: 1 addition & 0 deletions cuentas/templates/cuentas/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="shortcut icon" href="{% static "cuentas/favicon.ico" %}" type="image/x-icon">
<link rel="stylesheet" href="{% static "cuentas/css/main.css" %}">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<title>Tero</title>
Expand Down
8 changes: 4 additions & 4 deletions cuentas/templates/cuentas/medicamentos.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h2>Nuevo medicamento</h2>
<table class="table table-hover">
<thead class="thead-dark">
<tr>
<th>Nombre</th>
<th><h4>Nombre</h4></th>
</tr>
</thead>
<tr>
Expand All @@ -20,7 +20,7 @@ <h2>Nuevo medicamento</h2>

<thead class="thead-dark">
<tr>
<th>Dosis</th>
<th><h4>Dosis</h4></th>
</tr>
</thead>

Expand All @@ -30,7 +30,7 @@ <h2>Nuevo medicamento</h2>

<thead class="thead-dark">
<tr>
<th>Cantidad</th>
<th><h4>Cantidad</h4></th>
</tr>
</thead>

Expand All @@ -43,7 +43,7 @@ <h2>Nuevo medicamento</h2>


</table>
<button type="button" class="btn btn-success btn-lg">Agregar</button>
<button type="button" class="btn btn-success btn-lg"><h4>Agregar</h4></button>
</div>

</div>
Expand Down

0 comments on commit d99383f

Please sign in to comment.