style: nuevos estilos

This commit is contained in:
christian.julian 2025-06-15 18:58:09 -06:00
parent e66c5e21f8
commit ca451f48d6
1 changed files with 48 additions and 0 deletions

View File

@ -580,4 +580,52 @@ main .btn-send:hover {
}
}
/* Estilo para selects e inputs de fecha */
select#id_rango_edad,
select#id_genero,
select#id_examen,
input[type="date"] {
width: 100%;
padding: 8px 12px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 14px;
background-color: #fff;
color: #333;
font-family: inherit;
transition: border-color 0.2s ease;
}
select#id_rango_edad:focus,
select#id_genero:focus,
select#id_examen:focus,
input[type="date"]:focus {
border-color: #4a90e2;
outline: none;
}
/* Estilo para botones */
button#buscar,
button#limpiar,
button#limpiar2 {
padding: 8px 20px;
font-size: 14px;
border: 1px solid #4a90e2;
border-radius: 6px;
background-color: #fff;
color: #4a90e2;
cursor: pointer;
font-family: inherit;
transition: background-color 0.2s ease, color 0.2s ease;
margin-top: 10px;
margin-right: 10px;
}
button#buscar:hover,
button#limpiar:hover,
button#limpiar2:hover {
background-color: #4a90e2;
color: white;
}