Created
May 20, 2015 02:12
-
-
Save winkerVSbecks/2081363aed740db2a782 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.13) | |
// Compass (v1.0.3) | |
// ---- | |
@mixin btn-gen($bg, $color, $border, $hover-bg, $hover-border, $hover-color) { | |
background-color: $bg; | |
color: $color; | |
border: 1px solid $border; | |
&:hover, | |
&:focus { | |
background-color: $hover-bg; | |
border-color: $hover-border; | |
color: $hover-color; | |
} | |
} | |
// Basic | |
$btn: ( | |
color : #95a5a6, | |
bg : rgba(0, 0, 0, 0), | |
border : #95a5a6, | |
hover-color : darken(#95a5a6, 20%), | |
hover-bg : rgba(0, 0, 0, 0), | |
hover-border : darken(#95a5a6, 20%) | |
); | |
.btn { | |
@include btn-gen($btn...); | |
} |
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
.btn { | |
background-color: transparent; | |
color: #95a5a6; | |
border: 1px solid #95a5a6; | |
} | |
.btn:hover, .btn:focus { | |
background-color: transparent; | |
border-color: #617374; | |
color: #617374; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment