generated from microverseinc/readme-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d2b65d6
commit 4b31ec6
Showing
4 changed files
with
44 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
:root { | ||
--orange: #ff6b00; | ||
} | ||
|
||
.logo-box { | ||
animation: rotateLogo 1.5s ease-in; | ||
animation-delay: 0.5s; | ||
padding: 0.5rem 0 0.4rem 0; | ||
} | ||
|
||
@keyframes rotateLogo { | ||
0% { | ||
transform: rotate(-180deg); | ||
border-bottom: 1px solid var(--orange); | ||
} | ||
|
||
25% { | ||
border-bottom: 3px solid var(--orange); | ||
} | ||
|
||
50% { | ||
transform: rotate(360deg) scale(1.2); | ||
box-shadow: var(--orange) 2px 2px 20px 1px; | ||
} | ||
|
||
100% { | ||
transform: scale(1.1); | ||
box-shadow: var(--orange) 2px 2px 20px 1px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters