Skip to content

Instantly share code, notes, and snippets.

@ZakharDay
Last active August 29, 2015 14:17
Show Gist options
  • Select an option

  • Save ZakharDay/1a61d3d1df756063297d to your computer and use it in GitHub Desktop.

Select an option

Save ZakharDay/1a61d3d1df756063297d 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