Skip to content

Instantly share code, notes, and snippets.

@alxjrvs
Created October 8, 2014 14:55
Show Gist options
  • Save alxjrvs/072b311419631bcdc147 to your computer and use it in GitHub Desktop.
Save alxjrvs/072b311419631bcdc147 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
.button
Click
.button--error
Error
.button--success
Success
.button--pending
Pending
// ----
// 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;
}
}
.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;
}
}
.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