feat(Style): add animations and effects to landing page

added:

- float like group
- button hover effect
- link hover glow effect
- component zoom effect
This commit is contained in:
Alexander Navarro 2024-03-14 17:22:03 -03:00
parent 9f15e40d6e
commit d7a9817514
5 changed files with 92 additions and 7 deletions

View file

@ -144,3 +144,12 @@ li:not(:last-child) {
padding: var(--prj-spacing-3);
}
a {
transition: text-shadow 0.2s;
--anim-shadow-color: var(--prj-accent-bg);
&:hover {
text-shadow: 1px 1px 8px var(--anim-shadow-color);
}
}