diff options
| author | real-zephex <[email protected]> | 2024-04-26 23:52:18 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-04-26 23:52:18 +0530 |
| commit | 1da0ad8fa76b9d66e30c7e784e2dcaac061d9bb0 (patch) | |
| tree | f5068e60287800cfabf44bb71116a794d1759037 /src/app/anime/search/search.module.css | |
| parent | UI tweaks for the manga page (diff) | |
| download | dramalama-1da0ad8fa76b9d66e30c7e784e2dcaac061d9bb0.tar.xz dramalama-1da0ad8fa76b9d66e30c7e784e2dcaac061d9bb0.zip | |
minor ui fix
Diffstat (limited to 'src/app/anime/search/search.module.css')
| -rw-r--r-- | src/app/anime/search/search.module.css | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/src/app/anime/search/search.module.css b/src/app/anime/search/search.module.css index 81cd9e5..d1b4c53 100644 --- a/src/app/anime/search/search.module.css +++ b/src/app/anime/search/search.module.css @@ -33,7 +33,7 @@ outline: none;
background: none;
width: 100%;
- font-family: "Atkinson Hyperlegible";
+ font-family: "Atkinson Hyperlegible", serif;
font-size: 16px;
}
@@ -57,12 +57,13 @@ overflow-x: auto;
}
-.animeEntry:hover .anime {
- opacity: 0.4;
+.animeEntry .anime {
+ opacity: 0.5;
}
.animeEntry:hover .anime:hover {
opacity: 1;
+ background-color: #292929;
}
.animeEntry::-webkit-scrollbar {
@@ -85,26 +86,22 @@ justify-content: space-between;
align-items: center;
padding: 5px;
- border-style: dotted;
- border-color: #636363;
margin: 10px 10px 0px 0px;
- border-radius: 10px;
- border-width: 4px;
- transition: opacity 200ms ease-in;
- background-color: #353535a6;
+ border-radius: 0.5rem;
+ transition: opacity 200ms ease-in, background-color 200ms linear;
+ background-color: #242424d0;
}
.anime p {
color: white;
width: 20dvw;
- font-family: "Atkinson Hyperlegible";
+ font-family: "Atkinson Hyperlegible", serif;
font-size: 18px;
}
.animeImage {
- border-radius: 10px;
- margin-left: 20px;
+ border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
|