diff --git a/static/style.css b/static/style.css index a3eda6b9b981a1daa6cb33b42eb93d90c6765c9a..08850bac00d5c6a253f608b053f8bfd8707180c6 100644 --- a/static/style.css +++ b/static/style.css @@ -177,7 +177,9 @@ h2{ color: transparent; background-image: repeating-linear-gradient(-45deg, var(--darkpurple) 0, var(--darkpurple) 2px, var(--offwhite) 2px, var(--offwhite) 4px); } - +h2:hover{ + animation: dash; +} svg{ background:transparent } @@ -189,9 +191,9 @@ svg text{ /*letter-spacing:4px;*/ animation:effect 3s, dash 3s; } -/*svg text:hover{ - fill: -}*/ +svg text:hover{ + fill: var(--darkpurple) +} @keyframes effect{ 0%{ @@ -220,4 +222,8 @@ svg text{ } } - +@keyframes dashy { + to { + stroke-dashoffset: 1000; + } +}