SIU_Dran_net/frontend/src/Registro.css

99 lines
2.1 KiB
CSS
Raw Normal View History

2024-05-12 22:23:07 +00:00
.bodyRegistro {
2024-04-29 15:02:05 +00:00
background-color: #e4e4df;
2024-05-12 22:23:07 +00:00
width: 100%;
2024-04-29 15:02:05 +00:00
margin: 0 auto;
padding: 1%;
}
2024-05-12 22:23:07 +00:00
h1.titRegistro {
2024-04-29 15:02:05 +00:00
text-align: center;
2024-05-12 22:23:07 +00:00
text-transform: capitalize;
2024-04-29 15:02:05 +00:00
font-size: 40px;
2024-05-12 22:23:07 +00:00
margin-top: 11%;
2024-04-29 15:02:05 +00:00
font-style: Jockey One;
color: #000000;
padding: 10px;
}
2024-05-12 22:23:07 +00:00
.bodyRegistro h4{
2024-04-29 15:02:05 +00:00
font-size: 20px;
2024-05-12 22:23:07 +00:00
margin-top: 1.5%;
2024-04-29 15:02:05 +00:00
font-style: Jockey One;
color: #000000;
padding: 10px;
}
2024-05-12 22:23:07 +00:00
.formRegistro {
margin-top: 20px;
2024-04-29 15:02:05 +00:00
padding: 10px;
display: flex;
2024-05-12 22:23:07 +00:00
flex-wrap: wrap;
flex-direction: row;
justify-content: space-evenly; /* Permite que los elementos se envuelvan si no caben en una sola línea */
2024-04-29 15:02:05 +00:00
}
2024-05-08 14:13:50 +00:00
2024-04-29 15:02:05 +00:00
.campo {
2024-05-12 22:23:07 +00:00
width: 28%; /* Ancho de cada campo (menos el espacio entre ellos) */
margin-left: 0%;
margin-right: 0%;
margin-top: 1.5%;
2024-04-29 15:02:05 +00:00
display: flex;
flex-direction: column; /* Cambiar la dirección del flujo a vertical */
overflow: hidden; /* Oculta cualquier contenido que se desborde del área del input */
}
.campo label {
2024-05-12 22:23:07 +00:00
padding-left: 2%;
font-size: 25px;
2024-04-29 15:02:05 +00:00
}
2024-05-08 14:13:50 +00:00
h2{
padding: 30%;
}
.h4{
padding: 30%;
align-items: center;
}
2024-04-29 15:02:05 +00:00
.campo input[type="text"],
.campo input[type="number"],
.campo select,
.campo input[type="password"],
.campo input[type="date"],
.campo input[type="email"] {
2024-05-12 22:23:07 +00:00
background-color: #D5EEBB;
2024-04-29 15:02:05 +00:00
width: 100%; /* Ocupar todo el ancho disponible */
padding: 5px;
border-radius: 5px;
border: 1px solid #ccc;
box-sizing: border-box;
font-size: 16px;
transition: border-color 0.3s ease;
2024-05-12 22:23:07 +00:00
margin-top: 0px; /* Espacio entre el label y el input */
2024-04-29 15:02:05 +00:00
}
2024-05-08 14:13:50 +00:00
2024-04-29 15:02:05 +00:00
.btnenviar{
text-align: center; /* Centra horizontalmente el contenido */
}
.boton {
text-align: center;
2024-05-12 22:23:07 +00:00
background-color: #474941;
color: #D5EEBB;
2024-04-29 15:02:05 +00:00
border: none;
2024-05-12 22:23:07 +00:00
font-size: larger;
2024-04-29 15:02:05 +00:00
padding: 15px 30px;
cursor: pointer;
2024-05-12 22:23:07 +00:00
border-radius: 20px;
margin-top: 1%;
2024-04-29 15:02:05 +00:00
font-weight: bold; /* Hace que el texto esté en negrita */
}
2024-05-08 14:13:50 +00:00
2024-04-29 15:02:05 +00:00
.boton:hover {
2024-05-12 22:23:07 +00:00
background-color: #55574f;
2024-04-29 15:02:05 +00:00
}
2024-05-08 14:39:52 +00:00
header{
text-align: center;
2024-05-12 22:47:26 +00:00
}