Skip to content

Instantly share code, notes, and snippets.

@tbremer
Created November 4, 2013 21:54
Show Gist options
  • Select an option

  • Save tbremer/7309808 to your computer and use it in GitHub Desktop.

Select an option

Save tbremer/7309808 to your computer and use it in GitHub Desktop.
A Pen by Tom Bremer.
<span class="test">AWESOME SPAN</span>
*{
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