-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
955374d
commit e54efe0
Showing
15 changed files
with
397 additions
and
45 deletions.
There are no files selected for viewing
Binary file not shown.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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,4 +1,3 @@ | ||
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap"); | ||
* { | ||
padding: 0; | ||
margin: 0; | ||
|
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 |
---|---|---|
@@ -0,0 +1,77 @@ | ||
.container { | ||
position: relative; | ||
padding: 1rem; | ||
max-width: 1880px; | ||
margin: 0 auto; | ||
} | ||
|
||
.gallery-wrapper { | ||
overflow-x: auto; /* Faz a rolagem ficar no elemento div gallery-wrapper que é pai da gallery, ou seja se o gallery for maior a barra de rolagem é exibida*/ | ||
} | ||
|
||
.gallery { | ||
display: flex; | ||
flex-flow: row nowrap; | ||
gap: 0.5rem; | ||
} | ||
|
||
.arrow-left2, | ||
.arrow-left, | ||
.arrow-right { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
right: auto; | ||
bottom: 0; | ||
font-size: 1rem; | ||
line-height: 250px; | ||
width: 40px; | ||
text-align: center; | ||
color: #fff; | ||
cursor: pointer; | ||
border: none; | ||
background: linear-gradient(to left, transparent 0%, rgb(201, 77, 77) 200%); | ||
opacity: 0.3; | ||
transition: all 200ms ease-in-out; | ||
} | ||
|
||
.arrow-right { | ||
left: auto; | ||
right: 0; | ||
background: linear-gradient( | ||
to right, | ||
transparent 0%, | ||
rgb(201, 77, 77) 200% | ||
); | ||
} | ||
|
||
.arrow-left2:hover, | ||
.arrow-right:hover, | ||
.arrow-left:hover { | ||
opacity: 1; | ||
} | ||
|
||
.item2, | ||
.item { | ||
height: 15rem; | ||
width: auto; | ||
flex-shrink: 0; /* Para não diminuir para caber*/ | ||
opacity: 0.6; | ||
transition: all 200ms ease-in-out; | ||
} | ||
|
||
.current-item2, | ||
.current-item { | ||
opacity: 1; | ||
} | ||
|
||
/* Hide scrollbar for Chrome, Safari and Opera */ | ||
.gallery-wrapper::-webkit-scrollbar { | ||
display: none; | ||
} | ||
|
||
/* Hide scrollbar for IE, Edge and Firefox */ | ||
.gallery-wrapper { | ||
-ms-overflow-style: none; /* IE and Edge */ | ||
scrollbar-width: none; /* Firefox */ | ||
} |
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,18 +1,82 @@ | ||
.content { | ||
padding-top: 4.68rem; /*Ajuste isso de acordo com a altura da sua barra de navegação */ | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.films-list{ | ||
/* Inicio sec-filme */ | ||
.sec-filme { | ||
min-height: 100vh; | ||
background-repeat: no-repeat; | ||
background-size: cover; /* Redimensiona a imagem para caber */ | ||
background-color: rgba(0, 0, 0); | ||
display: flex; | ||
flex-direction: row; | ||
gap: 1rem; | ||
flex-direction: column; | ||
justify-content: flex-end; | ||
} | ||
|
||
.title-film { | ||
font-family: "Roboto", sans-serif; | ||
font: 3rem bold; | ||
padding: 2rem 1rem; | ||
background-color: rgba(0, 0, 0, 0.4); | ||
} | ||
|
||
.text-list{ | ||
.description-resume { | ||
padding: 1rem 1rem; | ||
max-width: 30rem; | ||
max-height: 5rem; | ||
overflow: hidden; /* ... */ | ||
text-overflow: ellipsis; | ||
white-space: nowrap; | ||
} | ||
|
||
.btn-play { | ||
padding: 0.8rem; | ||
margin: 1rem; | ||
width: 5rem; | ||
text-align: center; | ||
background-color: rgba(189, 16, 16, 0.527); | ||
color: rgba(255, 255, 255); | ||
border-radius: 0.5rem; | ||
transition: 1.02; | ||
} | ||
|
||
.btn-play:hover { | ||
cursor: pointer; | ||
transform: scale(1.06); | ||
} | ||
|
||
/* Inicio sec-episodio */ | ||
.sec-episodio { | ||
min-height: 50vh; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: space-evenly; | ||
} | ||
|
||
.visualizacao { | ||
padding: 1rem 0rem; | ||
} | ||
|
||
.episod, | ||
.description { | ||
padding: 1rem 2rem; | ||
} | ||
|
||
.link-epsod { | ||
display: flex; | ||
} | ||
|
||
.text-list:hover, | ||
.link-epsod:hover { | ||
color: rgb(243, 26, 26); | ||
} | ||
|
||
.sec-related { | ||
padding: 2rem; | ||
} | ||
|
||
.images-list{ | ||
height: 10rem; | ||
width: auto; | ||
.subtitle { | ||
font-size: 1.5em !important ; | ||
padding: 1rem 0; | ||
} |
Oops, something went wrong.