Skip to content

Instantly share code, notes, and snippets.

@cimmanon
Created December 17, 2015 00:53
Show Gist options
  • Save cimmanon/67200465171d73ff3c60 to your computer and use it in GitHub Desktop.
Save cimmanon/67200465171d73ff3c60 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<ul>
<li>Foo</li>
</ul>
// ----
// Sass (v3.4.20)
// Compass (v1.0.3)
// ----
@mixin social_icon ($font, $color: white, $top: null) {
position: relative;
@if $top != null {
top: $top;
} @else {
top: ($font*1.6-$font)/2;
}
font-size: $font;
color: $color;
}
.social-icon-small {
@include social_icon(20px);
}
.social-icon-small {
position: relative;
top: 6px;
font-size: 20px;
color: white;
}
<ul>
<li>Foo</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment