Skip to content

Instantly share code, notes, and snippets.

@shotastage
Created September 7, 2016 00:59
Show Gist options
  • Save shotastage/101c622f69fb48195ff142730e9a0540 to your computer and use it in GitHub Desktop.
Save shotastage/101c622f69fb48195ff142730e9a0540 to your computer and use it in GitHub Desktop.
Sass Basic Variables
$default-color: #fff;
$default-background: #333;
.button {
display: inline-block;
width: 120px;
height: 55px;
background: $default-background;
color: $default-color;
border-radius: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment