Skip to content

Instantly share code, notes, and snippets.

@cimmanon
Created July 20, 2014 00:16
Show Gist options
  • Save cimmanon/f94cc841a48833b9dc7d to your computer and use it in GitHub Desktop.
Save cimmanon/f94cc841a48833b9dc7d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.0.rc.1)
// Compass (v1.0.0.alpha.20)
// ----
@mixin standout($background-colour: #F0F0F0, $top-margins: 5%, $bottom-margins: 0, $text-align-center: true) {
background: $background-colour;
margin-top: $top-margins;
margin-bottom: $bottom-margins;
@if $text-align-center == true {
text-align: center;
}
}
.Stand-Out {
@include standout(#CAAC27, 10%, 5%, true);
}
.Stand-Out {
background: #CAAC27;
margin-top: 10%;
margin-bottom: 5%;
text-align: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment