gists/2012.scss.folded-corner.scss

19 lines
391 B
SCSS
Raw Normal View History

2025-05-03 18:48:38 +02:00
// folded box
@mixin folded ($size: 10px, $y: 30px, $background: $grey4) {
line-height: $y;
height: $y;
margin-left: ($size * -1);
text-indent: $size;
position: relative;
&:before {
border-left: $size solid $pagebg;
border-top: $size solid darken($background, 80%);
float: left;
content: '';
position: absolute;
bottom: ($size * -1);
left: 0;
}
}