Files
front-Censo/src/components/Equipo_Computo/pregunta7.css
T

135 lines
2.1 KiB
CSS
Raw Normal View History

2025-11-07 09:52:23 -06:00
.contenedor-pregunta {
2025-11-18 13:53:21 -06:00
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
2025-11-07 09:52:23 -06:00
}
2025-11-18 13:53:21 -06:00
.contenedor-censo{
2025-11-20 14:38:45 -06:00
background-color: #003e79;
2025-11-18 13:53:21 -06:00
color: white;
padding: 15px;
font-size: 16px;
margin-bottom: 25px;
2025-11-20 14:19:30 -06:00
border-radius: 4px;
2025-11-18 13:53:21 -06:00
}
2025-11-07 09:52:23 -06:00
.pregunta-cuadro {
2025-11-18 18:09:48 -06:00
background-color: #fff;
2025-11-20 18:19:09 -06:00
border-left: 10px solid #001f3f;
2025-11-07 09:52:23 -06:00
padding: 15px;
border-radius: 8px;
font-size: 16px;
margin-bottom: 25px;
}
.tabla-contenedor {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
overflow-x: auto;
}
/* Tabla */
.tabla {
width: 100%;
border-collapse: collapse;
text-align: center;
2025-11-07 13:33:39 -06:00
color: black;
2025-11-07 09:52:23 -06:00
}
.tabla th,
.tabla td {
border: 1px solid #ddd;
padding: 12px;
2025-11-07 09:59:54 -06:00
2025-11-07 09:52:23 -06:00
}
.tabla th {
color: white;
font-weight: 600;
font-size: 15px;
}
.tabla td {
font-size: 14px;
}
/* Colores personalizados */
.azul-marino {
2025-11-20 14:38:45 -06:00
background-color: #003e79;
2025-11-07 09:52:23 -06:00
color: white;
}
.rosa-fuerte {
background-color: #dc1557;
color: white;
}
2025-11-07 09:59:54 -06:00
/* Contenedor input */
2025-11-07 09:52:23 -06:00
.input-contenedor {
position: relative;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
2025-11-07 09:59:54 -06:00
/* Input */
2025-11-07 09:52:23 -06:00
.input-contenedor input {
2025-11-07 13:33:39 -06:00
width: 40%;
2025-11-18 18:09:48 -06:00
padding: 6px 6px 6px 6px;
2025-11-20 14:38:45 -06:00
border: 2px solid #003e79;
2025-11-07 09:52:23 -06:00
border-radius: 6px;
font-size: 14px;
color: #333;
2025-11-07 09:59:54 -06:00
text-align: center;
2025-11-07 09:52:23 -06:00
outline: none;
background-color: rgb(232, 226, 226);
box-sizing: border-box;
}
2025-11-07 09:59:54 -06:00
2025-11-07 09:52:23 -06:00
.input-contenedor input::-webkit-inner-spin-button,
.input-contenedor input::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Focus del input */
.input-contenedor input:focus {
border-color: #001f3f;
box-shadow: 0 0 6px rgba(0, 47, 95, 0.3);
}
/* Placeholder gris claro */
.input-contenedor input::placeholder {
color: #bbb;
opacity: 1;
}
2025-11-07 09:59:54 -06:00
2025-11-07 09:52:23 -06:00
.input-contenedor .porcentaje {
position: absolute;
2025-11-07 13:33:39 -06:00
2025-11-07 09:59:54 -06:00
right: 8px;
2025-11-07 09:52:23 -06:00
color: #555;
font-weight: bold;
pointer-events: none;
font-size: 14px;
top: 50%;
2025-11-07 09:59:54 -06:00
transform: translateY(-50%);
2025-11-07 09:52:23 -06:00
}
/* Celda del total */
.total-celda {
font-weight: bold;
2025-11-20 14:38:45 -06:00
color: #003e79;
2025-11-07 09:52:23 -06:00
background-color: #eef2f6;
}
/* Total > 100% */
.total-error {
background-color: #ffcccc;
color: #a80000;
}