This commit is contained in:
Alejandra-Guzman-Mendez
2025-11-06 11:22:00 -06:00
parent 4c7c8a0680
commit f3b621d339
3 changed files with 36 additions and 1 deletions
@@ -0,0 +1,16 @@
import "./preguntas.css";
export default function Preguntas() {
return (
<div>
<h1 className="titulo">Pregunta 2</h1>
{/* Recuadro pregunta*/}
<div className="pregunta-cuadro">
2. Desglose el número de equipos de cómputo que cuentan con los siguientes sistemas operativos.
</div>
</div>
);
}
@@ -0,0 +1,20 @@
.titulo{
align-content: left;
color: rgb(16, 16, 123);
margin-top: 40px;
margin-left: 40px;
font-size: 30px; /*tamaño del texto*/
}
.pregunta-cuadro{
border: 2px solid rgb(16, 16, 123); /* Borde del cuadro */
border-radius: 10px; /* Bordes redondeados */
padding: 20px; /* Espacio dentro del cuadro */
background-color: rgb(230, 230, 250); /* Color de fondo */
font-size: 18px; /* Tamaño del texto */
width: 80%; /* Ancho del cuadro */
margin-left: 40px; /* Centrar horizontalmente */
box-shadow: 2px 2px 10px rgba(0,0,0,0.2); /* Sombra opcional */
font-size: 15px; /*tamaño del texto*/
}
-1
View File
@@ -12,7 +12,6 @@ const [report,setReport]=useState();
setReport(res.data);
}
return (
<div className="reporte-layout">
{/* Panel izquierdo: título, buscador y tabla */}