fix: pruebas

This commit is contained in:
christian.julian 2025-06-15 19:12:43 -06:00
parent 2ee3a321b4
commit a046f8f9e9
1 changed files with 50 additions and 0 deletions

View File

@ -4,6 +4,56 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://unpkg.com/boxicons@2.0.9/css/boxicons.min.css' rel='stylesheet'>
<style>
/* 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;
}
/* Botones Buscar y Limpiar */
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;
}
</style>
<link rel="stylesheet" href="../css/inicio.css">
<title>AdminSite</title>
</head>