-
-
Save gists-app-test/3706981 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import "bootstrap/_mixins"; | |
@mixin ribbon() { | |
position: absolute; | |
top: 35px; | |
right: 0; | |
background: #9E0800; | |
color: #fff; | |
line-height: inherit; | |
padding: 5px 30px; | |
z-index: 2; | |
@include box-shadow(5px 5px 5px #333); | |
@if direction() == ltr { | |
@include rotate(25deg); | |
} @else { | |
@include rotate(335deg); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment