diff --git a/hackstoga/index.html b/hackstoga/index.html index f502cd9..6849155 100644 --- a/hackstoga/index.html +++ b/hackstoga/index.html @@ -67,9 +67,20 @@

hackStoga

Sign Up

-

- Sign-ups will be available soon. Check back closer to the event date. -

+ +

What is a Hackathon?

diff --git a/hackstoga/signup/index.html b/hackstoga/signup/index.html new file mode 100644 index 0000000..21b9507 --- /dev/null +++ b/hackstoga/signup/index.html @@ -0,0 +1,15 @@ + + + Redirecting... + + + +

Redirecting to + https://forms.gle/3cbh3s2VLeZSG6ee8

+ + + diff --git a/style/theme.css b/style/theme.css index d67b64b..eafb83b 100644 --- a/style/theme.css +++ b/style/theme.css @@ -112,7 +112,7 @@ a:hover { position: relative; overflow: hidden; cursor: pointer; - transition: background-color 0.2s; + transition: background-color 0.2s, transform 0.2s; } .animated-button:before, @@ -127,31 +127,32 @@ a:hover { 135deg, rgba(255, 227, 104, 0) 0%, rgba(255, 227, 104, 0) 48%, - rgba(255, 227, 104, 0.5) 50%, + rgba(255, 227, 104, 0.65) 50%, rgba(255, 227, 104, 0) 52%, rgba(255, 227, 104, 0) 100% ); - animation: gold-lines 4s linear infinite; + animation: gold-lines 6s linear infinite; } .animated-button:after { - animation-delay: 4s; + animation-delay: -2s; } .animated-button:hover { background-color: var(--anchor-hover); + transform: scale(1.05); } .animated-button:hover:before, .animated-button:hover:after { - animation-duration: 2s; + animation-duration: 3s; + animation-delay: 0; } @keyframes gold-lines { 0% { transform: translateX(-100%); } - 100% { transform: translateX(100%); }