Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/improve combates UI #1252

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/pages/combates/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { combates } from '@/consts/pageTitles'
<div class="flex w-full flex-col items-center text-center">
<div id="landing" class="absolute top-0 flex w-full flex-col items-center py-30">
<h3
class="text-theme-seashell animate-fade-in animate-delay-300 mt-4 -skew-3 text-6xl leading-[100%] font-medium [text-shadow:_5px_5px_10px_rgb(0_0_0_/_50%)] tracking-wider brightness-125 transition-all duration-300"
class="text-theme-seashell animate-fade-in animate-delay-300 mt-4 -skew-3 text-6xl leading-[100%] font-medium tracking-wider brightness-125 transition-all duration-300 [text-shadow:_5px_5px_10px_rgb(0_0_0_/_50%)]"
>
<strong>LISTA DE LOS</strong>
<br /><strong>COMBATES</strong>
Expand All @@ -23,20 +23,20 @@ import { combates } from '@/consts/pageTitles'

<div
id="combats-container"
class="relative top-96 mx-auto mt-10 mb-72 grid max-w-7xl grid-cols-1 gap-4 p-6 md:grid-cols-2 md:gap-8"
class="relative top-96 mx-auto mt-10 mb-72 flex max-w-7xl flex-wrap justify-center gap-4 p-6 md:gap-8"
>
{
COMBATS.map(({ id, number, fighters, title }) => (
<a
class="inline-block"
class="flex-[0_1_calc(100%)] md:flex-[0_1_calc(50%-1rem)]"
href={`combates/${id}`}
title={`Ir al combate ${number} de ${title}`}
>
<div class="group animate-fade-in animate-delay-200 relative flex h-[40vh] w-full sm:h-[50vh]">
{fighters.map((fighter, index) => (
<img
src={`/images/fighters/big/${fighter}.webp`}
class={`z-20 h-full w-1/2 object-contain ${index === 0 ? 'ml-5 lg:ml-10' : '-ml-10 lg:-ml-20'} mask-fade-bottom size-96 transition-transform duration-300 group-hover:scale-110`}
class={`z-20 h-full w-1/2 object-contain p-4 drop-shadow-[0_0_10px_var(--color-theme-turquoise)] ${index === 0 ? 'ml-5 lg:ml-10' : '-ml-10 lg:-ml-20'} mask-fade-boxer size-96 transition-transform duration-300 group-hover:scale-110`}
alt={`Imagen de ${fighter}`}
loading="lazy"
decoding="async"
Expand Down
6 changes: 5 additions & 1 deletion src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,8 @@ html {

@utility mask-fade-bottom {
mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}
}

@utility mask-fade-boxer {
mask-image: linear-gradient(to bottom, black 50%, transparent 80%);
}