fix: pruebas
This commit is contained in:
parent
92eac711b9
commit
8abdf2e0d8
|
@ -6,6 +6,56 @@
|
||||||
<link href='https://unpkg.com/boxicons@2.0.9/css/boxicons.min.css' rel='stylesheet'>
|
<link href='https://unpkg.com/boxicons@2.0.9/css/boxicons.min.css' rel='stylesheet'>
|
||||||
<link rel="stylesheet" href="../css/inicio.css">
|
<link rel="stylesheet" href="../css/inicio.css">
|
||||||
<title>AdminSite</title>
|
<title>AdminSite</title>
|
||||||
|
<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>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- SIDEBAR -->
|
<!-- SIDEBAR -->
|
||||||
|
|
Loading…
Reference in New Issue