diff options
| author | real-zephex <[email protected]> | 2024-04-13 09:42:25 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-04-13 09:42:25 +0530 |
| commit | 9444f1162ff40842afe1c2a01cf0a32db19a6376 (patch) | |
| tree | cf0b51014fb42c83e062e7a22b0d0ea44d7888ff /src/app/anime/history/continueWatching/cw.module.css | |
| parent | minor fixes (diff) | |
| download | dramalama-9444f1162ff40842afe1c2a01cf0a32db19a6376.tar.xz dramalama-9444f1162ff40842afe1c2a01cf0a32db19a6376.zip | |
feature added: anime history is now stored locally on the device.
Diffstat (limited to 'src/app/anime/history/continueWatching/cw.module.css')
| -rw-r--r-- | src/app/anime/history/continueWatching/cw.module.css | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/src/app/anime/history/continueWatching/cw.module.css b/src/app/anime/history/continueWatching/cw.module.css new file mode 100644 index 0000000..d8062ac --- /dev/null +++ b/src/app/anime/history/continueWatching/cw.module.css @@ -0,0 +1,59 @@ +.main { + width: 99%; + margin: 80px auto; +} + +.mainText { + color: var(--light-green); + font-family: "Poppins", serif; + font-size: 24px; +} + +.animeContainer { + font-family: "Poppins", serif; + font-size: 18px; + margin: 0px; +} + +.animeEntry { + display: flex; + align-items: center; + justify-content: space-between; + padding: 5px; + margin-bottom: 0.5rem; + border-radius: 1rem; + background-color: #1f1f1f; +} + +.animeEntry img { + width: auto; + height: auto; + max-height: 40dvh; + border-radius: 0.8rem; +} + +.titleContainer { + color: white; + margin-left: 0.2rem; +} + +.titleContainer h3 { + margin: 0px; +} + +.EpisodeCount { + color: var(--soft-purple); + margin: 0px; +} + +.date { + color: var(--neon-yellow); + margin: 0px; +} + +@media screen and (max-width: 768px) { + .animeContainer { + font-size: 14px; + + } +}
\ No newline at end of file |