mirror of
https://codeberg.org/vlw/vlw.se.git
synced 2025-09-13 21:13:40 +02:00
feat: add animated dashoffset to SVG spacers on index page (#44)
This PR adds a simple slow moving `dashoffset` animation to the SVG spacers on the `/index` page. <video src="https://blob.vlw.se/01974ec8-1da9-74b3-9c8b-0ef06ce6cd16.mp4" controls></video> Reviewed-on: https://codeberg.org/vlw/vlw.se/pulls/44
This commit is contained in:
parent
17bd93dca9
commit
d5cc7fa82c
1 changed files with 5 additions and 0 deletions
|
@ -49,6 +49,11 @@ vv-shell img {
|
||||||
|
|
||||||
.menu svg {
|
.menu svg {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
animation: dash 1500ms linear infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes dash {
|
||||||
|
to { stroke-dashoffset: 32; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ### Copy email button */
|
/* ### Copy email button */
|
||||||
|
|
Loading…
Add table
Reference in a new issue