Skip to content

Instantly share code, notes, and snippets.

@laras126
Created August 15, 2014 12:57
Show Gist options
  • Save laras126/75ac05abccc78d47171c to your computer and use it in GitHub Desktop.
Save laras126/75ac05abccc78d47171c to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.0.rc.1)
// ----
$primary-color: #4a8bbd;
$secondary-color: #61ce3c;
@mixin button($color) {
background: $color;
@extend %btn;
&:hover {
background: darken($color, 20%);
}
}
%btn {
padding: 1em 2em;
border-radius: 10px;
border: 0;
}
input {
&[type="submit"] {
@include button($primary-color);
}
@media (min-width: 481px) {
color: green;
}
}
.btn-main {
@include button($primary-color);
@media (min-width: 481px) {
color: green;
}
}
.btn-secondary {
@include button($secondary-color);
}
input[type="submit"], .btn-main, .btn-secondary {
padding: 1em 2em;
border-radius: 10px;
border: 0;
}
input[type="submit"] {
background: #4a8bbd;
}
input[type="submit"]:hover {
background: #2b5576;
}
@media (min-width: 481px) {
input {
color: green;
}
}
.btn-main {
background: #4a8bbd;
}
.btn-main:hover {
background: #2b5576;
}
@media (min-width: 481px) {
.btn-main {
color: green;
}
}
.btn-secondary {
background: #61ce3c;
}
.btn-secondary:hover {
background: #3a8321;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment