Skip to content

Instantly share code, notes, and snippets.

@ZakharDay
Created March 17, 2015 11:58
Show Gist options
  • Save ZakharDay/bcb5ac7f9703d8cb1b2d to your computer and use it in GitHub Desktop.
Save ZakharDay/bcb5ac7f9703d8cb1b2d to your computer and use it in GitHub Desktop.
$green: #00ff80
@mixin square($size: 100%)
width: $size
height: $size
html, body
@include square
.greenButton
background-color: $green
color: white
&:hover
background-color: darken(white, 10%)
color: $green
.icon
@include square(16px)
background-image: url(images/icon.png)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment