diff options
| author | zephex-alt <[email protected]> | 2024-05-06 21:37:34 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-05-06 21:37:34 +0000 |
| commit | e25a5d08b74b28dc1b2354fcb64cf225c1eab208 (patch) | |
| tree | 07bc5fddd788063153c4213e4b42c1797018003d /src/app/movies/styles/search.module.css | |
| parent | added MOVIES support. SERIES support coming soon! (diff) | |
| download | dramalama-e25a5d08b74b28dc1b2354fcb64cf225c1eab208.tar.xz dramalama-e25a5d08b74b28dc1b2354fcb64cf225c1eab208.zip | |
added MOVIES support. SERIES support coming soon!
Diffstat (limited to 'src/app/movies/styles/search.module.css')
| -rw-r--r-- | src/app/movies/styles/search.module.css | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/app/movies/styles/search.module.css b/src/app/movies/styles/search.module.css new file mode 100644 index 0000000..e5ed3ee --- /dev/null +++ b/src/app/movies/styles/search.module.css @@ -0,0 +1,57 @@ +.Main { + margin: 0 0.2rem 0 0.2rem; +} + +.InputContainer { + display: flex; + align-items: center; + background-color: #121212; + padding: 0.2rem; + width: 40vw; + border-radius: 0.5rem; +} + +.SearchIcon { + margin-left: 0.4rem; +} + +.InputContainer input { + background-color: transparent; + outline: none; + border: none; + padding: 0.4rem; + font-family: "Lexend Deca", serif; + margin-left: 0.2rem; + font-size: large; + color: white; + width: 100%; +} + +/* Search Results */ + +.MovieSearchResultsContainer { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); + grid-gap: 0.5rem; + align-items: center; + margin: 0.2rem 0.2rem 0 0.2rem; +} + +.MovieEntry { + display: flex; + align-items: center; + justify-content: space-between; + color: white; + backdrop-filter: blur(10px); + padding: 0.4rem; + background-color: #1212129f; +} + +.MovieEntry img { + border-radius: 0.5rem; +} + +.MovieEntry p { + margin: 0 0.2rem 0 0; + font-size: 18px; +} |