Skip to content

Instantly share code, notes, and snippets.

@etownhooligan
Created November 22, 2013 21:51
Show Gist options
  • Save etownhooligan/7607489 to your computer and use it in GitHub Desktop.
Save etownhooligan/7607489 to your computer and use it in GitHub Desktop.
A Pen by Brad Frost.
<a href="#" class="bullshit-btn">Some stupid bullshit you don't want to do</a>
<a href="#" class="tiny-btn">The actual thing you want to do</a>
@import "compass";
body {
font-family: Helvetica, sans-serif;
text-align: center;
padding: 1em;
}
a {
text-decoration: none;
}
.bullshit-btn {
display: block;
margin-bottom: 1em;
padding: 1em;
font-size: 5em;
background: blue;
color: white;
border-radius: 1em;
&:hover {
background: darkblue;
}
}
.tiny-btn {
font-size: 80%;
color: #999;
text-decoration: underline;
cursor: pointer;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment