Skip to content

Commit

Permalink
Merge pull request #45 from enflujo/arreglos-css
Browse files Browse the repository at this point in the history
🐛 Corregir estilos en lista egresados y ficha
  • Loading branch information
1cgonza authored Feb 19, 2024
2 parents 1a41b35 + 2de3228 commit 11ddb20
Showing 1 changed file with 37 additions and 22 deletions.
59 changes: 37 additions & 22 deletions src/scss/estilos.scss
Original file line number Diff line number Diff line change
Expand Up @@ -114,36 +114,36 @@ a:link {
height: 100%;
opacity: 1;
}
}

li {
cursor: pointer;
li {
cursor: pointer;

&:hover {
background-color: white;
&:hover {
background-color: white;
}
}
}

.titulo {
cursor: pointer;
}
.titulo {
cursor: pointer;
}

.nombre {
margin: 0;
font-size: 0.85em;
}
.nombre {
margin: 0;
font-size: 0.85em;
}

.barra {
display: flex;
align-items: center;
.barra {
display: flex;
align-items: center;

.linea {
height: 0.25rem;
background-color: var(--resaltadoVerde);
}
.linea {
height: 0.25rem;
background-color: var(--resaltadoVerde);
}

.conteo {
margin-left: 3px;
.conteo {
margin-left: 3px;
}
}
}

Expand Down Expand Up @@ -178,6 +178,21 @@ li {
&.oculta {
display: none;
}

.nodoEgresado {
margin: 0.85em 0;
font-size: 1.1em;
cursor: pointer;

&:hover,
&.resaltado {
background-color: var(--fondoAmarilloClaro);
color: var(--textoOscuro);
}
}
&.oculta {
display: none;
}
}

// Cambiar estilos según tamaño de pantalla
Expand Down

0 comments on commit 11ddb20

Please sign in to comment.