diff options
| author | real-zephex <[email protected]> | 2024-03-25 11:33:09 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-25 11:33:09 +0530 |
| commit | 9202a2b6790e57dc35d0563d014e89d981a65e37 (patch) | |
| tree | f2258b96400d6df9753c2c52531ba7f8897b9fa3 /src/app/manga/manga.module.css | |
| parent | fix: requests are revalidated after 30 mins. this prevents stale data from be... (diff) | |
| download | dramalama-9202a2b6790e57dc35d0563d014e89d981a65e37.tar.xz dramalama-9202a2b6790e57dc35d0563d014e89d981a65e37.zip | |
feature added: mangas are now available
Diffstat (limited to 'src/app/manga/manga.module.css')
| -rw-r--r-- | src/app/manga/manga.module.css | 145 |
1 files changed, 145 insertions, 0 deletions
diff --git a/src/app/manga/manga.module.css b/src/app/manga/manga.module.css new file mode 100644 index 0000000..7e4a5ba --- /dev/null +++ b/src/app/manga/manga.module.css @@ -0,0 +1,145 @@ +@import url('https://fonts.googleapis.com/css2?family=Glass+Antiqua&family=Inter&display=swap'); + +.Main { + max-width: 90%; + margin: 10px auto; +} + +.Hero { + display: flex; + align-items: center; + justify-content: space-between; +} + +.ImageContainer { + display: flex; + flex-direction: column; +} + +.ImageContainer img { + margin: 0px 4px 4px 4px; + border-radius: 8px; + animation: zoomer 1s alternate-reverse infinite ease; +} + +@keyframes zoomer { + to { + transform: scale(1.01); + } +} + +.WelcomeContainer button { + font-family: "Inter"; + font-size: 16px; + margin-top: 8px; + padding: 6px; + border-radius: 5px; + border: none; + outline: none; + background-color: var(--neon-green); + cursor: pointer; +} + +.WelcomeText { + font-family: "Kanit"; + color: white; + font-size: 50px; + text-shadow: #FC0 2px 2px 50px; + margin-right: 10px; +} + + +.SelfPromoContainer { + display: flex; + justify-content: space-around; + font-family: "Lato"; + color: white; + /* margin-top: 20px; */ +} + +.SelfPromoContainer p { + font-family: "Quicksand"; + color: white; + text-align: center; +} + + +@media screen and (max-width: 1024px) { + + .HorizontalImageContainer img { + width: auto; + height: auto; + } + + .VerticalImageContainer img { + width: 265px; + } +} + +@media screen and (max-width: 768px) { + + .HorizontalImageContainer img { + width: 95%; + height: auto; + } + + .VerticalImageContainer img { + width: 46.5%; + height: 300px; + } +} + +.SearchBar { + display: flex; + align-items: center; + border-radius: 4px; + background: #1f1f1f; + margin-top: 5px; + width: 55%; +} + +.SearchBar input { + background: none; + outline: none; + border: none; + margin-left: 5px; + padding: 4px; + width: 100%; + color: white; + font-family: "Kanit"; + font-size: 16px; +} + +@media screen and (max-width: 425px) { + + .Hero { + flex-direction: column; + } + + .WelcomeContainer { + display: flex; + align-items: center; + flex-direction: column; + margin-bottom: 10px; + } + + .WelcomeText { + font-size: 32px; + } + + .HorizontalImageContainer img { + margin-top: 20px; + width: 100%; + height: auto; + } + + .VerticalImageContainer img { + display: none; + } + + .SearchBar { + width: 80%; + } +} + +/* Search Bar from searchBar.jsx */
\ No newline at end of file |