Created
October 19, 2014 10:55
-
-
Save czajkovsky/11891f9ec00c91f1fdad 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.product-btn.product-btn--pic{ href: '#' } | |
Get your insurance checkup |
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.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
$primary-color: #007e7f; | |
$primary-bg-color: #c2f1ef; | |
.product-btn { | |
color: $primary-color; | |
background: $primary-bg-color; | |
text-decoration: none; | |
padding: 16px 15px 16px 50px; | |
border-radius: 5px; | |
display: block; | |
&:hover { background: darken($primary-bg-color, 5%); } | |
&--pic { | |
// bg styles go here | |
} | |
} |
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
.product-btn { | |
color: #007e7f; | |
background: #c2f1ef; | |
text-decoration: none; | |
padding: 16px 15px 16px 50px; | |
border-radius: 5px; | |
display: block; | |
} | |
.product-btn:hover { | |
background: #adecea; | |
} |
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 class='product-btn product-btn--pic' href='#'> | |
Get your insurance checkup | |
</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment