82 lines
1.4 KiB
CSS
82 lines
1.4 KiB
CSS
/* Estilos generales */
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #f4f4f4;
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
color: #333;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
/* Contenedor del formulario */
|
|
form {
|
|
background: white;
|
|
padding: 20px;
|
|
max-width: 400px;
|
|
margin: 20px auto;
|
|
border-radius: 10px;
|
|
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
/* Estilos de etiquetas */
|
|
label {
|
|
display: block;
|
|
font-weight: bold;
|
|
margin: 10px 0 5px;
|
|
}
|
|
|
|
/* Estilos de los inputs y selects */
|
|
input, select {
|
|
width: 100%;
|
|
padding: 8px;
|
|
margin-bottom: 10px;
|
|
border-radius: 5px;
|
|
border: 1px solid #ccc;
|
|
font-size: 16px;
|
|
}
|
|
|
|
/* Botón de agregar evento */
|
|
button {
|
|
background-color: #008cba;
|
|
color: white;
|
|
padding: 10px 15px;
|
|
border: none;
|
|
border-radius: 5px;
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #005f7f;
|
|
}
|
|
|
|
/* Mensaje de éxito o error */
|
|
#mensaje {
|
|
margin-top: 15px;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
|
|
/* Botón de volver */
|
|
.boton-volver {
|
|
display: inline-block;
|
|
margin-top: 20px;
|
|
padding: 10px 15px;
|
|
background-color: #008cba;
|
|
color: white;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.boton-volver:hover {
|
|
background-color: #005f7f;
|
|
}
|