diff --git a/about.html b/about.html index c6a407d..4047914 100644 --- a/about.html +++ b/about.html @@ -1,21 +1,21 @@
-Learn more about my projects!
+Learn more \ No newline at end of file diff --git a/mainstyle.css b/mainstyle.css index d8d56d1..c1ace1c 100644 --- a/mainstyle.css +++ b/mainstyle.css @@ -26,6 +26,8 @@ a { } a:hover { + animation-name: fadein; + animation-duration: 300ms; background-color: darkblue; } @@ -56,9 +58,21 @@ a:hover { } } +@keyframes rotateMenu { + 0% { + transform: rotateX(-90deg) + } + 70% { + transform: rotateX(20deg) + } + 100% { + transform: rotateX(0deg) + } +} + .dropdown:hover .dropdown-menu { display: block; - animation: growDown 300ms ease-in-out forwards; + animation: rotateMenu 300ms ease-in-out forwards; }