Created
November 20, 2018 14:54
-
-
Save AdithyaBhat17/442f5d9575489e3559a804f8b4e8e302 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| .hero-h1{ | |
| margin:30vh auto 25px; | |
| font-weight: bold; | |
| padding-bottom: 5px; | |
| position: relative; | |
| opacity: 0; | |
| animation: 1s fade-in 1s forwards; | |
| } | |
| .hero-h1:before{ | |
| content: ""; | |
| position: absolute; | |
| width: 50%; | |
| height: 1px; | |
| bottom: 0; | |
| left: 20%; | |
| border-bottom: 4px solid #f30000; | |
| opacity: 0.8; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment