Skip to content

Commit

Permalink
added animation to homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
amohapatra123 committed Jan 11, 2021
1 parent c3029ce commit b7bb332
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion client/src/Styles/homepage.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,14 @@ body {
background-color: #121212fa;
}
h1 {
text-shadow: 2px 2px blueviolet;
animation: glow 2s linear infinite;
}

@keyframes glow {
from {
text-shadow: none;
}
to {
text-shadow: 2px 2px blueviolet;
}
}

0 comments on commit b7bb332

Please sign in to comment.