Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 23 additions & 8 deletions harvester-app/src/frontend/utils/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
flex-direction: row;
align-items: center;
justify-content: flex-end;
width: 100vw;
height: 100vh;
position: relative;
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
overflow: hidden;
overflow: auto;
}
.barra-lateral {
background: #ffffff;
Expand All @@ -22,26 +22,33 @@
align-self: stretch;
flex-shrink: 0;
position: relative;
width: auto;
flex-shrink: 0;
}
.rectangulo-separacion {
background: #a61930;
align-self: stretch;
flex-shrink: 0;
flex-grow: 1;
width: 28px;
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 28px;
position: relative;
}
.frame-iniciar-sesion {
background: #262b40;
padding: 0px 104px 0px 104px;
display: flex;
flex-direction: column;
gap: 50px;
gap: 30px;
align-items: center;
justify-content: center;
align-self: stretch;
flex-shrink: 0;
width: 601px;
position: relative;
flex: 1; /* Ocupa el espacio disponible */
min-width: 300px;
min-height: 100%;
box-sizing: border-box;
}
.harvester {
background: #ffffff;
Expand Down Expand Up @@ -188,7 +195,11 @@
width: 140px;
height: 55px;
position: relative;
cursor: pointer;
transition: background 0.3s, transform 0.2s;
}


.acceder {
color: #ffffff;
text-align: center;
Expand Down Expand Up @@ -233,3 +244,7 @@
line-height: 100%;
font-weight: 400;
}
.boton-acceder:hover {
background: #1d3a7c;
transform: scale(1.05);
}
9 changes: 3 additions & 6 deletions harvester-app/src/frontend/vistas/inicioSesion.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,10 @@
<div class="iniciar-sesi-n">Iniciar Sesión</div>
<div class="acceso">
<div class="acceder-con-tu-correo">Acceder con tu correo</div>
<div class="correo">
<input class="e-g-john-doe-com" value="e.g, john@doe.com" size="17" />
</div>
<div class="contrase-a">
<input class="contrase-a2" value="contraseña" size="10" />
</div>
<input type="email" class="correo" placeholder="ejemplo@correo.com" />
<input type="email" class="correo" placeholder="contraseña..." />
</div>

<button class="boton-acceder">
<div class="acceder">Acceder</div>
</button>
Expand Down