From ca451f48d674162cb1f1eeaa69f71a230b5c6606 Mon Sep 17 00:00:00 2001 From: "christian.julian" Date: Sun, 15 Jun 2025 18:58:09 -0600 Subject: [PATCH] style: nuevos estilos --- css/inicio.css | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/css/inicio.css b/css/inicio.css index 69046f3..4e41eb5 100644 --- a/css/inicio.css +++ b/css/inicio.css @@ -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; +} +