diff options
| author | real-zephex <[email protected]> | 2024-04-30 09:43:00 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-30 09:43:00 +0530 |
| commit | df1e72a7efc7f7df773e022753a6808a26989300 (patch) | |
| tree | d28d3f9c32b7e2fca6bad3caffde3a93384a953c /src/app/anime/recent/recent.module.css | |
| parent | Merge pull request #5 from zephex-alt/master (diff) | |
| parent | small fixes (diff) | |
| download | dramalama-df1e72a7efc7f7df773e022753a6808a26989300.tar.xz dramalama-df1e72a7efc7f7df773e022753a6808a26989300.zip | |
Merge pull request #6 from zephex-alt/master
Fixes and Improvements - 2
Diffstat (limited to 'src/app/anime/recent/recent.module.css')
| -rw-r--r-- | src/app/anime/recent/recent.module.css | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/src/app/anime/recent/recent.module.css b/src/app/anime/recent/recent.module.css index 47929ed..c7877da 100644 --- a/src/app/anime/recent/recent.module.css +++ b/src/app/anime/recent/recent.module.css @@ -5,10 +5,9 @@ .RecentText p {
font-size: 28px;
- margin: 5px;
+ margin: 0;
color: var(--soft-purple);
- font-family: "Poppins";
- font-weight: 500;
+ font-family: "Lexend Deca", serif;
}
.RecentText span {
@@ -20,11 +19,6 @@ overflow-x: auto;
}
-.Recent img {
- width: auto;
- height: 280px;
-}
-
.RecentContainer:hover .RecentEntries {
opacity: 0.4;
}
@@ -48,16 +42,16 @@ margin: 4px;
background-color: #1f1f1fbb;
padding: 0.5rem;
- border-radius: 1rem;
+ border-radius: 0.5rem;
transition: opacity 400ms ease, transform 400ms ease;
-
}
.RecentEntries p {
text-align: center;
margin: 5px auto;
- width: 140px;
- font-family: "Atkinson Hyperlegible";
+ width: auto;
+ max-width: 180px;
+ font-family: "Lexend Deca", serif;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
@@ -74,6 +68,5 @@ }
.RecentImage {
- border-radius: 1rem;
- aspect-ratio: auto;
-}
\ No newline at end of file + border-radius: 0.5rem;
+}
|