You've already forked Curso-lenguaje-python
@@ -88,6 +88,47 @@
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
#envoltorio-agregar-buscar {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
#enlace-agregar {
|
||||
text-decoration: none;
|
||||
color: #fff;
|
||||
background-color: #4CAF50;
|
||||
padding: 10px 15px;
|
||||
border-radius: 5px;
|
||||
font-size: 1.1em;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
input[type=text],
|
||||
input[type=password],
|
||||
textarea {
|
||||
padding: 10px;
|
||||
border-radius: 5px;
|
||||
border: 1px solid #EB796F;
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
label {
|
||||
padding-top: 10px !important;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.boton {
|
||||
text-decoration: none;
|
||||
color: #fff;
|
||||
background-color: #4CAF50;
|
||||
padding: 10px 15px;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
@@ -20,15 +20,17 @@
|
||||
|
||||
</div>
|
||||
|
||||
<!--
|
||||
<a href="{% url 'crear-tarea' %}">Crear nueva tarea</a>
|
||||
|
||||
<form method="get" action="">
|
||||
{% csrf_token %}
|
||||
<input type="text" name="area-buscar" value="{{valor_buscado}}">
|
||||
<input type="submit" value="Buscar">
|
||||
</form>
|
||||
-->
|
||||
<div id="envoltorio-agregar-buscar">
|
||||
|
||||
<form method="get" action="" style="display: flex;">
|
||||
<input type="text" name="area-buscar" value="{{valor_buscado}}">
|
||||
<input class="boton" type="submit" value="Buscar">
|
||||
</form>
|
||||
|
||||
<a id="enlace-agregar" href="{% url 'crear-tarea' %}">+</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="envoltorio-items-tarea">
|
||||
|
||||
|
||||
Reference in New Issue
Block a user