Skip to content

Instantly share code, notes, and snippets.

@laras126
Created August 14, 2014 20:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save laras126/c7941119fb3324d8e371 to your computer and use it in GitHub Desktop.
Save laras126/c7941119fb3324d8e371 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="hello">
<a class="btn btn--dark" href="#">Hi there!</a>
<a class="btn btn--med" href="#">Ok bye!</a>
</div>
// ----
// Sass (v3.3.14)
// Compass (v1.0.0.rc.1)
// ----
$primary-color: #4a8bbd;
$secondary-color: #61ce3c;
@import url("http://fonts.googleapis.com/css?family=Open+Sans");
@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);
}
@import url("http://fonts.googleapis.com/css?family=Open+Sans");
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;
}
<div class="hello">
<a class="btn btn--dark" href="#">Hi there!</a>
<a class="btn btn--med" href="#">Ok bye!</a>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment