Skip to content

Instantly share code, notes, and snippets.

@prof3ssorSt3v3
Created November 11, 2014 19:26
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 prof3ssorSt3v3/5144036b030eac42175a to your computer and use it in GitHub Desktop.
Save prof3ssorSt3v3/5144036b030eac42175a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
@mixin test($fs, $box...){
font-size:$fs;
box-shadow:$box;
}
@mixin other($clr:black){
outline:1px solid $clr;
}
header{
@include test(4rem, 2px 2px 4px rgba(128,0,66,.32) );
background-color:#e4e4e4;
@include other(red);
}
footer{
@include test(1rem, 2px 2px 4px rgba(128,0,66,.32));
background-color:#999;
@include other;
}
header {
font-size: 4rem;
box-shadow: 2px 2px 4px rgba(128, 0, 66, 0.32);
background-color: #e4e4e4;
outline: 1px solid red;
}
footer {
font-size: 1rem;
box-shadow: 2px 2px 4px rgba(128, 0, 66, 0.32);
background-color: #999;
outline: 1px solid black;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment