Created
October 9, 2014 20:51
-
-
Save mariohernandez/9d363b3d3e63822943d4 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// Sass (v3.4.4) | |
// Compass (v1.0.1) | |
// ---- | |
.read-more-button | |
display: inline-block | |
padding: 8px 25px | |
color: white | |
text-decoration: none | |
background: blue | |
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #79bbff),color-stop(100%, #378de5)) | |
background-image: gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #79bbff),color-stop(100%, #378de5)) | |
border-radius: 4px |
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
.read-more-button { | |
display: inline-block; | |
padding: 8px 25px; | |
color: white; | |
text-decoration: none; | |
background: blue; | |
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #79bbff), color-stop(100%, #378de5)); | |
background-image: gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #79bbff), color-stop(100%, #378de5)); | |
border-radius: 4px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment