Skip to content

Instantly share code, notes, and snippets.

@chriscoyier
Created September 28, 2016 22:13
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 chriscoyier/ab1a8052f9404a17118366a78e6685fd to your computer and use it in GitHub Desktop.
Save chriscoyier/ab1a8052f9404a17118366a78e6685fd to your computer and use it in GitHub Desktop.
mAwodR
@mixin button($bg, $color, $size) {
background-color: $bg;
color: $color;
@if ($size == "large") {
font-size: 2em;
padding: 2em;
} @else if ($size == "medium") {
font-size: 1.5em;
padding: 1.5em;
} @else {
font-size: 1em;
padding: 1em;
}
}
$red: red;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment