-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* insercao da rota da agenda * troquei a ordem na navbar, inseri censo e redirecionei botao da landing * extract common tasks aliases * criando responsividade na noticia 6 e eliminando o ponto final nos titulos das noticias --------- Co-authored-by: Zoey de Souza Pessanha <[email protected]>
- Loading branch information
Showing
7 changed files
with
188 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,145 @@ | ||
.noticias-grid { | ||
.noticias-grid, | ||
.noticia-wrapper { | ||
max-width: 100vw !important; | ||
div { | ||
max-width: 100vw; | ||
} | ||
} | ||
} | ||
|
||
/* trocando gallery-carousel por land-carousel */ | ||
.land-carousel { | ||
margin-bottom: 70px; | ||
|
||
.glide1 { | ||
max-width: 100vw; | ||
max-height: 600px; | ||
} | ||
|
||
.glide__slide { | ||
max-width: 100%; | ||
height: 100%; | ||
|
||
img { | ||
width: 100%; | ||
height: 100%; | ||
max-width: 1100px; | ||
max-height: 600px; | ||
background-size: cover; | ||
margin: 0 auto; | ||
} | ||
} | ||
.glide__slides { | ||
margin: 0; | ||
padding: 0; | ||
list-style: none; | ||
} | ||
|
||
.glide__bullets { | ||
display: flex; | ||
justify-content: center; | ||
margin-top: 40px; | ||
} | ||
|
||
.glide__bullet { | ||
@apply bg-black-10; | ||
height: 10px; | ||
width: 10px; | ||
border-radius: 50%; | ||
margin: 0 5px; | ||
} | ||
|
||
.glide__bullet.active { | ||
@apply bg-blue-80; | ||
} | ||
} | ||
|
||
/* pegando o get-to-know do sobre e ajustando as notícias */ | ||
.get-to-know { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
gap: 56px; | ||
padding: 80px 40px; | ||
|
||
img { | ||
object-fit: cover; | ||
height: 465px; | ||
width: 50%; | ||
max-width: 668px; | ||
border-radius: 16px; | ||
flex-shrink: 1; | ||
} | ||
.know-content { | ||
display: flex; | ||
flex-direction: column; | ||
width: 50%; | ||
gap: 25px; | ||
} | ||
@media (max-width: 768px) { | ||
.get-to-know { | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
gap: 18px; | ||
padding: 40px 20px; | ||
} | ||
|
||
img { | ||
width: 100vw; | ||
} | ||
|
||
.know-content { | ||
width: 100vw; | ||
padding: 0px 20px; | ||
margin-top: 40px; | ||
} | ||
} | ||
} | ||
/* até aqui */ | ||
|
||
.phases { | ||
display: flex; | ||
align-items: flex-start; | ||
justify-content: center; | ||
gap: 56px; | ||
padding: 80px 40px; | ||
} | ||
|
||
.noticia-text { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
width: 100%; | ||
gap: 25px; | ||
} | ||
|
||
|
||
/* Estilo para telas pequenas (móveis) */ | ||
@media (max-width: 768px) { | ||
.phases { | ||
display: flex; | ||
align-items: flex-start; | ||
justify-content: center; | ||
gap: 18px; | ||
padding: 40px 20px; | ||
} | ||
.noticia-text { | ||
width: 100vw; | ||
padding: 0px 20px; | ||
margin-top: 40px; | ||
} | ||
} | ||
@media (min-width: 360px) and (max-width: 567px) { | ||
.phases { | ||
display: flex; | ||
align-items: flex-start; | ||
justify-content: center; | ||
gap: 9px; | ||
padding: 20px 10px; | ||
} | ||
.noticia-text { | ||
width: 100vw; | ||
padding: 0px 10px; | ||
margin-top: 20px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters