A Pen by Tom Bremer on CodePen.
Created
November 4, 2013 21:54
-
-
Save tbremer/7309808 to your computer and use it in GitHub Desktop.
A Pen by Tom Bremer.
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
| <span class="test">AWESOME SPAN</span> |
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
| *{ | |
| font-family: Helvetica; | |
| } | |
| .test{ | |
| margin: 0px; | |
| padding: 0px; | |
| padding-bottom: 3px; | |
| color: #D00; | |
| font-weight: 900; | |
| font-size: 24px; | |
| letter-spacing: 0px; | |
| } | |
| .test:after{ | |
| font-weight: 100; | |
| margin-left: 30px; | |
| content: "After Pseudo Class"; | |
| border: | |
| } | |
| .test:hover{ | |
| border: 0px; | |
| border-bottom: 0px solid #D00; | |
| } | |
| .test:hover:after{ | |
| padding: 0px; | |
| padding-bottom: 3px; | |
| margin-left: 30px; | |
| border: 0px; | |
| border-bottom: 1px dashed #000; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment