diff options
| author | real-zephex <[email protected]> | 2024-03-16 15:32:44 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-16 15:32:44 +0530 |
| commit | 5fc30a26612f11c4a4ec5de1a98562712802f5df (patch) | |
| tree | a78b63473160e8a424cf7ae2a538adc64e98477a /src/app/search/search.css | |
| parent | minor fixes for vercel (diff) | |
| download | dramalama-5fc30a26612f11c4a4ec5de1a98562712802f5df.tar.xz dramalama-5fc30a26612f11c4a4ec5de1a98562712802f5df.zip | |
feature added: search anime by title
Diffstat (limited to 'src/app/search/search.css')
| -rw-r--r-- | src/app/search/search.css | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/src/app/search/search.css b/src/app/search/search.css new file mode 100644 index 0000000..d24293e --- /dev/null +++ b/src/app/search/search.css @@ -0,0 +1,79 @@ +.inputContainer { + display: flex; + margin: 30px auto; +} + +.searchContainer input { + border: none; + border-radius: 5px; + color: white; + outline: none; + background: none; + width: 100%; + font-family: "Lato"; + font-size: 16px; +} + +.searchContainer { + display: flex; + align-items: center; + margin: 0px auto; + background-color: #2c2c2c; + padding: 8px; + border-radius: 5px; + width: 20%; +} + +.searchIcon { + color: white; + margin-right: 5px; +} + +.animeEntry { + display: flex; + overflow-x: auto; +} + +.animeEntry::-webkit-scrollbar { + height: 7px; +} + +.animeEntry::-webkit-scrollbar-track { + background-color: #636363; + border-radius: 5px; +} + +.animeEntry::-webkit-scrollbar-thumb { + background-color: rgba(196, 196, 196, 0.692); + border-radius: 5px; + +} + +.anime { + display: flex; + justify-content: space-between; + align-items: center; + padding: 10px; + border-style: dotted; + border-color: #636363; + margin: 10px; + border-radius: 10px; + border-width: 4px; +} + +.anime p { + color: white; + width: 25vh; + font-family: "Lato"; + font-size: 18px; +} + +.animeImage { + border-radius: 10px; +} + +@media screen and (max-width: 768px) { + .searchContainer { + width: 70%; + } +}
\ No newline at end of file |