aboutsummaryrefslogtreecommitdiff
path: root/src/app/anime/styles/info.module.css
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-05-11 19:14:29 +0530
committerGitHub <[email protected]>2024-05-11 19:14:29 +0530
commite8875b008268c5873454b120bfb358cb4180093f (patch)
tree2a0f8a15fb42f093e1d35f52eb3f7e14f1b0fbe5 /src/app/anime/styles/info.module.css
parentMerge pull request #24 from zephex-alt/master (diff)
parentadded anime history section (diff)
downloaddramalama-e8875b008268c5873454b120bfb358cb4180093f.tar.xz
dramalama-e8875b008268c5873454b120bfb358cb4180093f.zip
Merge pull request #25 from real-zephex/improvement-2
Improvement 2
Diffstat (limited to 'src/app/anime/styles/info.module.css')
-rw-r--r--src/app/anime/styles/info.module.css75
1 files changed, 75 insertions, 0 deletions
diff --git a/src/app/anime/styles/info.module.css b/src/app/anime/styles/info.module.css
new file mode 100644
index 0000000..4216b37
--- /dev/null
+++ b/src/app/anime/styles/info.module.css
@@ -0,0 +1,75 @@
+.main {
+ width: 50%;
+ margin: 60px auto;
+ color: white;
+}
+
+.AnimeHeroSection {
+ display: flex;
+ align-items: center;
+}
+
+.AnimeHeroSection strong {
+ color: var(--neon-yellow);
+}
+
+.AnimeHeroSection img {
+ width: auto;
+ height: auto;
+ padding: 0.5rem 0.7rem 0.5rem 0.7rem;
+ border-radius: 1rem;
+}
+
+.animeDescription {
+ max-height: 100px;
+ overflow: auto;
+ color: var(--light-sky);
+}
+
+.animeDescription::-webkit-scrollbar {
+ width: 3px;
+}
+
+.animeDescription::-webkit-scrollbar-thumb {
+ background-color: var(--nord-yellow);
+ border-radius: 1rem;
+}
+
+.AnimeHeroSection p {
+ margin: 0;
+}
+
+.animeTitle {
+ font-size: 28px;
+ color: var(--neon-green);
+}
+
+@media screen and (max-width: 1024px) {
+ .main {
+ width: 100%;
+ }
+
+ .AnimeHeroSection {
+ font-size: 14px;
+ }
+
+ .animeTitle {
+ font-size: 24px;
+ }
+
+ .AnimeHeroSection img {
+ padding: 0.4rem 0.4rem 0.4rem 0.4rem;
+ }
+}
+
+@media screen and (max-width: 425px) {
+ .AnimeHeroSection {
+ display: flex;
+ align-items: center;
+ flex-direction: column;
+ }
+
+ .animeTitle {
+ text-align: center;
+ }
+} \ No newline at end of file