programacion-web
Version:
validacion-formularios
84 lines (73 loc) • 1.43 kB
CSS
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f5f5f5;
margin: 0;
padding: 20px;
color: #333;
}
#nombre {
font-size: 24px;
font-weight: bold;
color: #69296f;
text-align: center;
margin-bottom: 20px;
}
#nm {
font-size: 24px;
font-weight: bold;
color: #000000;
text-align: center;
margin-bottom: 20px;
}
.contenedor {
max-width: 1000px;
margin: 0 auto;
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #000000;
text-align: center;
margin-bottom: 25px;
}
/* Estilos para la tabla */
.horario {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
.horario th,
.horario td {
border: 1px solid #ddd;
padding: 12px;
text-align: center;
}
.horario th {
background-color: #cb30ed;
color: white;
}
.horario tr:nth-child(even) {
background-color: #f9f9f9;
}
/* Clases especiales */
.laboratorio {
background-color: #e3f2fd;
font-weight: bold;
}
.proyecto {
background-color: #ae1fab;
color: #ffffff;
}
.requisito {
font-size: 14px;
color: #27ae60;
text-align: center;
margin-top: 10px;
}
.notas {
text-align: center;
font-style: italic;
color: #000000;
}