Created
August 27, 2014 14:47
-
-
Save philwinkle/18b6613c62c8471c2d79 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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="#" class="button">Obnoxious button</a> |
This file contains 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
// ---- | |
// Sass (v3.4.1) | |
// Compass (v1.0.1) | |
// ---- | |
.button { | |
position: fixed; | |
top: 100px; | |
left: 100px; | |
color: #fff; | |
text-decoration: none; | |
text-transform: uppercase; | |
font-family: helvetica; | |
padding: 20px 45px; | |
background-color: #FB7F73; | |
border-radius: 15px; | |
letter-spacing: 3px; | |
} | |
.button:before { | |
content: "\2192"; | |
} | |
.button:after { | |
content: "\2190"; | |
} |
This file contains 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
.button { | |
position: fixed; | |
top: 100px; | |
left: 100px; | |
color: #fff; | |
text-decoration: none; | |
text-transform: uppercase; | |
font-family: helvetica; | |
padding: 20px 45px; | |
background-color: #FB7F73; | |
border-radius: 15px; | |
letter-spacing: 3px; | |
} | |
.button:before { | |
content: "\2192"; | |
} | |
.button:after { | |
content: "\2190"; | |
} |
This file contains 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="#" class="button">Obnoxious button</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment