Skip to content

Commit

Permalink
✨ Tipografía y css
Browse files Browse the repository at this point in the history
  • Loading branch information
anattolia committed Aug 28, 2024
1 parent 4759a4d commit 369b624
Show file tree
Hide file tree
Showing 44 changed files with 52 additions and 3 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
11 changes: 11 additions & 0 deletions aplicaciones/www/src/scss/_constantes.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
:root {
// Paleta
--colorFuente: #252424;
--blanco: #ffffff;

// Colores Cuenco
--verdeCuenco: #00bc96;
--azulClaroCuenco: #0074be;
--azulOscuroCuenco: #3949a4;
--magentaCuenco: #c30a93;
}
44 changes: 41 additions & 3 deletions aplicaciones/www/src/scss/estilos.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,50 @@
@import './normalizar';
@import './constantes';

:root {
--colorFuente: #252424;
@font-face {
font-family: Ancizar;
src: url('../../estaticos/fuentes/AncizarSans/AncizarSans-Regular_02042016.otf');
}

/* use */
body {
font-family: Ancizar, Arial, Helvetica, sans-serif;
}

main {
padding: 1em 5vw;
}

#menu {
width: 80vw;
display: flex;
padding: 0.5em;

.elementoMenu {
display: flex;
align-items: center;
background-color: var(--verdeCuenco);
padding: 0.5em 0.7em;
color: black;
border-radius: 5px;
margin: 0 0.4em;

&:hover {
color: var(--blanco);
background-color: var(--azulClaroCuenco);
}
}
}

// Página principal
#presentacion {
width: 70vw;
margin: 2em 0;
}

// Nodos listas
.contenedorElementos {
height: 100vh;
height: fit-content;
// opacity: 0;
// overflow: hidden;
transition: opacity 0.35s ease-in-out;
Expand Down

0 comments on commit 369b624

Please sign in to comment.