Created
October 8, 2014 14:55
-
-
Save alxjrvs/072b311419631bcdc147 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
.button | |
Click | |
.button--error | |
Error | |
.button--success | |
Success | |
.button--pending | |
Pending |
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) | |
// Breakpoint (v2.5.0) | |
// ---- | |
//Easy Breakpoint management | |
@import "breakpoint"; | |
$small: min-width 200px; | |
$medium: min-width 500px; | |
$large: min-width 1024px; | |
.button { | |
height: 50px; | |
width: 100%; | |
@include breakpoint($small) { | |
width: 50%; | |
} | |
@include breakpoint($medium) { | |
color: red; | |
} | |
@include breakpoint($large) { | |
color: gold; | |
} | |
} |
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
.button { | |
height: 50px; | |
width: 100%; | |
} | |
@media (min-width: 200px) { | |
.button { | |
width: 50%; | |
} | |
} | |
@media (min-width: 500px) { | |
.button { | |
color: red; | |
} | |
} | |
@media (min-width: 1024px) { | |
.button { | |
color: gold; | |
} | |
} |
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
.button | |
Click | |
.button--error | |
Error | |
.button--success | |
Success | |
.button--pending | |
Pending |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment