diff --git a/src/App.css b/src/App.css index ef64d5b..a769acb 100644 --- a/src/App.css +++ b/src/App.css @@ -51,19 +51,8 @@ ul { position: absolute; width: 30%; z-index: -9999; - opacity: 0.1; - animation: fadeInOut 10s ease-in-out infinite, drift 8s linear infinite; -} - -@keyframes fadeInOut { - 0%, - 100% { - opacity: 0.1; - } - - 50% { - opacity: 2; - } + opacity: 1; + animation: drift 8s linear infinite; } @keyframes drift { diff --git a/src/components/Header.js b/src/components/Header.js index efc87ca..6a269fa 100644 --- a/src/components/Header.js +++ b/src/components/Header.js @@ -23,7 +23,7 @@ const Header = () => {

R - + N

@@ -71,7 +71,7 @@ const Header = () => {

R - + N

Software Solutions

diff --git a/src/css/header.css b/src/css/header.css index ab1a525..49349c8 100644 --- a/src/css/header.css +++ b/src/css/header.css @@ -161,3 +161,17 @@ opacity: 1; cursor: pointer; } + +.rotate-icon { + animation: rotateAnimation 4s linear infinite; +} + +@keyframes rotateAnimation { + from { + transform: rotate(0deg); + } + + to { + transform: rotate(360deg); + } +}