This commit is contained in:
Tomas Dvorak
2025-10-19 17:16:57 +02:00
parent e9a63073e5
commit 77213f4e83
76 changed files with 9728 additions and 935 deletions
+15 -4
View File
@@ -168,12 +168,22 @@ html {
position: absolute;
left: 0; right: 0; bottom: 0;
padding: 18px;
background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.75) 100%);
color: var(--text-on-primary, #fff);
background: linear-gradient(
to bottom,
transparent 0%,
color-mix(in srgb, var(--primary) 60%, transparent) 40%,
color-mix(in srgb, var(--primary) 92%, black) 100%
);
color: #ffffff;
transition: padding 0.3s ease, background 0.3s ease;
}
.hero-card:hover .overlay {
background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.85) 100%);
background: linear-gradient(
to bottom,
transparent 0%,
color-mix(in srgb, var(--primary) 70%, transparent) 30%,
color-mix(in srgb, var(--primary) 95%, black) 100%
);
}
.next-match {
@@ -424,7 +434,8 @@ html {
.blog-list .card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 32px rgba(0,0,0,0.12),
0 4px 12px rgba(0,0,0,0.08);
0 4px 12px rgba(0,0,0,0.08),
0 0 0 2px var(--primary);
border-color: var(--primary);
}