aboutsummaryrefslogtreecommitdiff
path: root/src/app/anime/styles
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-05-11 09:15:12 +0530
committerreal-zephex <[email protected]>2024-05-11 09:15:12 +0530
commitb69507f771d09ac07f679c8eabf420e7558f9b7c (patch)
tree92d73713cc03b7bdf3e3f07c0f95b116b0aae121 /src/app/anime/styles
parentadjustments to the cache system (diff)
downloaddramalama-b69507f771d09ac07f679c8eabf420e7558f9b7c.tar.xz
dramalama-b69507f771d09ac07f679c8eabf420e7558f9b7c.zip
some minor fixes
Diffstat (limited to 'src/app/anime/styles')
-rw-r--r--src/app/anime/styles/info.module.css28
-rw-r--r--src/app/anime/styles/search.module.css15
2 files changed, 38 insertions, 5 deletions
diff --git a/src/app/anime/styles/info.module.css b/src/app/anime/styles/info.module.css
index 4e65bdd..4216b37 100644
--- a/src/app/anime/styles/info.module.css
+++ b/src/app/anime/styles/info.module.css
@@ -9,21 +9,29 @@
align-items: center;
}
+.AnimeHeroSection strong {
+ color: var(--neon-yellow);
+}
+
.AnimeHeroSection img {
- padding: 0.5rem 0.7rem 0rem 0;
+ 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: 4px;
+ width: 3px;
}
.animeDescription::-webkit-scrollbar-thumb {
- background-color: gray;
+ background-color: var(--nord-yellow);
border-radius: 1rem;
}
@@ -50,6 +58,18 @@
}
.AnimeHeroSection img {
- padding: 0.4rem 0.4rem 0 0;
+ 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
diff --git a/src/app/anime/styles/search.module.css b/src/app/anime/styles/search.module.css
index 7c7957f..d3564f7 100644
--- a/src/app/anime/styles/search.module.css
+++ b/src/app/anime/styles/search.module.css
@@ -1,6 +1,7 @@
.SearchBarContainer {
padding: 1rem 0 0.8rem 0;
- width: 40%;
+ display: flex;
+ align-items: center;
}
.SearchInputContainer {
@@ -9,6 +10,18 @@
background-color: #121212;
padding: 0.5rem;
border-radius: 0.5rem;
+ width: 40%;
+}
+
+.animeHistoryButton {
+ font-family: "Lexend Deca", serif;
+ outline: none;
+ border: none;
+ background-color: #121212;
+ color: white;
+ margin: 0 0 0 0.4rem;
+ padding: 0.5rem;
+ cursor: pointer;
}
.SearchInputContainer input {