-
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
9fd992f
commit 36f0168
Showing
22 changed files
with
282 additions
and
250 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
|
||
# misc | ||
.DS_Store | ||
.env | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
|
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,5 +1,5 @@ | ||
{ | ||
"name": "movies-info-site", | ||
"name": "movie-town", | ||
"version": "0.1.0", | ||
"private": true, | ||
"dependencies": { | ||
|
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
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,144 @@ | ||
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap"); | ||
|
||
html { | ||
font-size: 20px; | ||
} | ||
body { | ||
font-family: "Quicksand", sans-serif; | ||
color: white; | ||
background-color: #343434; | ||
margin: 0; | ||
} | ||
|
||
.app-container { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
.header { | ||
position: fixed; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
width: 90vw; | ||
top: 2%; | ||
padding: 0 1rem; | ||
border-radius: 4rem; | ||
margin-bottom: 1rem; | ||
z-index: 2; | ||
background-color: #555555; | ||
box-shadow: 0 5px rgb(70, 70, 70); | ||
} | ||
|
||
.title { | ||
font-weight: bold; | ||
padding: 0.5rem; | ||
cursor: pointer; | ||
} | ||
.search-box input { | ||
color: rgba(255, 255, 255, 0.5); | ||
background-color: rgba(70, 70, 70, 0.534); | ||
border-radius: 10px; | ||
padding: 5px 10px; | ||
outline: none; | ||
border: none; | ||
} | ||
.movie-container { | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
margin-top: 3rem; | ||
} | ||
|
||
.movie-card { | ||
position: relative; | ||
width: 10rem; | ||
margin: 0.5rem; | ||
border-radius: 5px; | ||
overflow: hidden; | ||
} | ||
|
||
.movie-poster img { | ||
max-width: 100%; | ||
height: 15rem; | ||
object-fit: cover; | ||
} | ||
|
||
.movie-info { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: flex-start; | ||
min-height: 100%; | ||
background-color: #7e7e7e2c; | ||
padding: 0.5rem; | ||
} | ||
|
||
.movie-info h1 { | ||
font-size: 0.7rem; | ||
} | ||
|
||
.movie-info span { | ||
font-size: 0.7rem; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
background: #7e7e7e2d; | ||
padding: 0.1rem; | ||
border-radius: 50%; | ||
width: 2rem; | ||
min-width: 2rem; | ||
height: 2rem; | ||
margin-left: 0.5rem; | ||
box-shadow: 2px 2px 5px rgb(51, 51, 51); | ||
} | ||
.overview { | ||
font-size: 0.7rem; | ||
background-color: grey; | ||
position: absolute; | ||
bottom: 0; | ||
right: 0; | ||
left: 0; | ||
overflow: auto; | ||
max-height: 100%; | ||
border-radius: 5px 5px 0 0; | ||
padding: 0 1rem 0; | ||
transform: translateY(105%); | ||
} | ||
|
||
.movie-card:hover .overview { | ||
transition: transform 0.5s ease-in-out; | ||
transform: translateY(0); | ||
} | ||
|
||
.tag { | ||
font-weight: bold; | ||
} | ||
.green { | ||
color: rgb(0, 255, 0); | ||
} | ||
|
||
.orange { | ||
color: orange; | ||
} | ||
|
||
.red { | ||
color: rgb(255, 66, 66); | ||
} | ||
|
||
::-webkit-scrollbar { | ||
width: 10px; | ||
} | ||
|
||
::-webkit-scrollbar-track { | ||
background-color: transparent; | ||
} | ||
|
||
::-webkit-scrollbar-thumb { | ||
background-color: #d6dee1; | ||
border-radius: 5px; | ||
} | ||
|
||
::-webkit-scrollbar-thumb:hover { | ||
background-color: #a8bbbf; | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.