Skip to content

Instantly share code, notes, and snippets.

@bruno2ms
Created July 21, 2014 13:54
Show Gist options
  • Save bruno2ms/0e383c3798fe7c92bab2 to your computer and use it in GitHub Desktop.
Save bruno2ms/0e383c3798fe7c92bab2 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="area-botoes"></div>
// ----
// Sass (v3.3.10)
// Compass (v1.0.0.alpha.20)
// ----
@import "compass";
%default-box-shadow{
@include box-shadow();
}
%default-border-radius{
@include border-radius();
}
%panel{
display: block;
@extend %default-box-shadow;
@extend %default-border-radius;
}
%text-right{
text-align: right;
}
.area-botoes{
@extend %panel;
@extend %text-right;
}
.area-botoes { -moz-box-shadow: 0px 0px 5px #333333; -webkit-box-shadow: 0px 0px 5px #333333; box-shadow: 0px 0px 5px #333333; }
.area-botoes { -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }
.area-botoes { display: block; }
.area-botoes { text-align: right; }
<div class="area-botoes"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment