Skip to content

Commit

Permalink
add blur on hover on groups links
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniele Ciminieri committed Oct 14, 2024
1 parent ea3bca5 commit 3bba7a4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/routes/corsi/[slug]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,12 @@
{/if}

<style>
.group-item:hover {
background-color: var(--corso-color);
.group-item a p {
transition: all 0.3s ease-in-out;
}
.group-item:hover a p {
color: var(--corso-color);
filter: blur(2px);
}
.fw-big {
font-size: 4rem;
Expand Down

0 comments on commit 3bba7a4

Please sign in to comment.