diff options
| author | real-zephex <[email protected]> | 2024-05-08 10:13:36 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-05-08 10:13:36 +0530 |
| commit | 5dcca245b34037eb15505ffd1d1b23213bedad9c (patch) | |
| tree | feb9a8d943a7c91076d5ff691fba653dc5b4d36c /src/app/anime/top-airing/trending.module.css | |
| parent | Delete .github/workflows/eslint.yml (diff) | |
| parent | minor css fixes and added a new source for movies (diff) | |
| download | dramalama-5dcca245b34037eb15505ffd1d1b23213bedad9c.tar.xz dramalama-5dcca245b34037eb15505ffd1d1b23213bedad9c.zip | |
Merge pull request #22 from zephex-alt/master
New movie source - autoembed.cc
Diffstat (limited to 'src/app/anime/top-airing/trending.module.css')
| -rw-r--r-- | src/app/anime/top-airing/trending.module.css | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/src/app/anime/top-airing/trending.module.css b/src/app/anime/top-airing/trending.module.css index 2abaf4b..cd1a672 100644 --- a/src/app/anime/top-airing/trending.module.css +++ b/src/app/anime/top-airing/trending.module.css @@ -1,14 +1,19 @@ -.TrendingText p {
- font-size: 36px;
+.TrendingText h1 {
margin: 0px 0px 0.5rem 0.5rem;
- font-weight: 400;
- color: var(--soft-purple);
text-align: center;
+ color: transparent;
+ background: linear-gradient(90deg,
+ var(--neon-green) 40%,
+ var(--light-green) 60%,
+ var(--neon-yellow) 80%,
+ var(--soft-purple) 100%);
+ background-size: 60% 50%;
+ background-clip: text;
}
.trending {
display: grid;
- grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-gap: 0.5rem;
align-items: center;
margin-left: 0.5rem;
@@ -42,7 +47,7 @@ .trendingEntries p {
text-align: center;
width: auto;
- max-width: 190px;
+ max-width: 160px;
margin: 0.5rem 0 0 0;
overflow: hidden;
white-space: nowrap;
@@ -51,6 +56,7 @@ .trendingEntries img {
border-radius: 0.4rem;
+ box-shadow: 0 0 10px 5px rgba(18, 18, 18, 0.863);
}
@media screen and (max-width: 768px) {
@@ -70,4 +76,4 @@ .trendingEntries img {
width: auto;
}
-}
+}
\ No newline at end of file |