Skip to content

Commit

Permalink
Merge pull request #56 from enflujo/carino-proyecto
Browse files Browse the repository at this point in the history
🐛 cariños-proyectos
  • Loading branch information
anattolia authored Apr 3, 2024
2 parents 2830dac + 0349c45 commit 84f2639
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/componentes/DescripcionProyecto.astro
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ datos.terminado = !!datos.fecha_publicacion;
display: flex;
align-items: flex-end;
flex: 1;
margin: 0.5em 0;
margin: 1.5em 0;
flex-wrap: wrap;

.interTitulo {
margin: 0 0.5em 0 0;
margin: 0 0.75em 0.25em 0;
width: auto;
line-height: 1.25;
}
Expand All @@ -70,7 +70,7 @@ datos.terminado = !!datos.fecha_publicacion;
width: 15px;
}
.repoNombre {
margin-left: 0.3em;
margin-left: 0.5em;
}
}
</style>
65 changes: 59 additions & 6 deletions src/pages/proyectos/[slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -164,20 +164,26 @@ if (proyectos && proyectos.length) {

#portada {
display: flex;
flex-direction: column;
justify-content: space-between;

.imagen,
.contenidoPortada {
flex-basis: 50%;
.imagen {
img {
max-height: 80vh;
width: auto;
}
}

.contenidoPortada {
padding: 3em 2em;
flex-basis: 50%;
padding: 2em 10%;
margin: auto;
}
}

.contenidoProyecto {
padding: 2em;

padding: 0em 2em;
.contenedorVideo169 {
width: 100%;
padding-top: 56.25%;
Expand All @@ -192,9 +198,40 @@ if (proyectos && proyectos.length) {
}
}
}



@media (min-width: $minTablet) {

.contenidoProyecto {
padding: 3em 4em;
}
}
@media (min-width: $minPantalla) {
#portada {
display: flex;
flex-direction: row;

.contenidoPortada {
flex-basis: 50%;
padding: 4em 5%;
margin: auto;
}
}
.contenidoProyecto {
padding: 3em 4em;
}
}





</style>

<style lang="scss" is:global>
@import '../../scss/_constantes.scss';

.contenidoProyecto {
ul {
list-style: circle;
Expand Down Expand Up @@ -233,4 +270,20 @@ if (proyectos && proyectos.length) {
margin: 1em 0;
}
}

@media (min-width: $minPantalla) {
.contenidoProyecto {


p {
padding: 10px 20px;
max-width: 900px;
margin-top: 0;
}

h2 {
padding: 20px;
}
}
}
</style>
1 change: 1 addition & 0 deletions src/scss/estilosGlobales.scss
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ h1 {

h2 {
font-size: 1.5em;
padding-top: 1em;
}

h3 {
Expand Down

0 comments on commit 84f2639

Please sign in to comment.