diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-11-29 00:17:03 +0100 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-11-29 00:17:28 +0100 |
| commit | 1db44ca4d01d8180a1adaf69f2f0f9a1ce953221 (patch) | |
| tree | 9c6a7f71488d08ee2c271d6fe7df9695373f099d /src/partials | |
| parent | 72f4b03ea2648b7c9de1d4bf2f0899a278537167 (diff) | |
Improve styles
Diffstat (limited to 'src/partials')
| -rw-r--r-- | src/partials/Header.astro | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/partials/Header.astro b/src/partials/Header.astro index 5fc8010..77c8166 100644 --- a/src/partials/Header.astro +++ b/src/partials/Header.astro @@ -84,10 +84,21 @@ import t from "../i18n/es.json"; font-weight: 700; font-variation-settings: "wdth" 87.5,"wght" 700,"GRAD" 150; text-decoration: none; - color: $accent; + background: linear-gradient(135deg, #0066cc 0%, #0099ff 50%, #00ccff 100%); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; + transition: filter 0.2s ease; + + &:hover { + filter: brightness(1.1); + } .brand-accent { - color: $accentDark; + background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0080ff 100%); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + background-clip: text; } } } |
