Last active
August 29, 2015 14:18
-
-
Save TheEnigmaBlade/b7a57f509377f702d9d7 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
a[href="#no"]:before { | |
content: "AGAINST"; | |
color: red; | |
padding: 0 3px; | |
margin: 0px 5px 3px 0px; | |
border: 1px solid red; | |
font-size: x-small; | |
font-weight: bold; | |
border-radius: 3px; | |
box-shadow: 1px 1px 2px #888; | |
} | |
a[href="#yes"]:before { | |
content: "IN FAVOR"; | |
color: green; | |
padding: 0 3px; | |
margin: 0px 5px 3px 0px; | |
border: 1px solid green; | |
font-size: x-small; | |
font-weight: bold; | |
border-radius: 3px; | |
box-shadow: 1px 1px 2px #888; | |
} | |
a[href="#abstain"]:before { | |
content: "ABSTAIN"; | |
color: orange; | |
padding: 0 3px; | |
margin: 0px 5px 3px 0px; | |
border: 1px solid orange; | |
font-size: x-small; | |
font-weight: bold; | |
border-radius: 3px; | |
box-shadow: 1px 1px 2px #888; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment