Skip to content

Instantly share code, notes, and snippets.

@Ondreas
Created October 5, 2013 14:22
Show Gist options
  • Save Ondreas/6841506 to your computer and use it in GitHub Desktop.
Save Ondreas/6841506 to your computer and use it in GitHub Desktop.
<style type="text/css">
.ribbon {
background: #eee;
border-left: 1px dashed #aaa;
border-right: 1px dashed #aaa;
border-radius: 5px 5px 0 0;
box-shadow: 5px 0 0 #eee,
-5px 0 0 #eee;
height: 120px;
margin: 0 5px;
position: relative;
width: 90px;
-webkit-filter: drop-shadow(0 2px 5px hsla(0,0%,0%,.5));
}
.ribbon:after,
.ribbon:before {
border-top: 15px solid #eee;
content: '';
height: 0;
position: absolute;
top: 100%;
width: 0;
}
.ribbon:after {
border-left: 50px solid transparent;
right: -6px;
}
.ribbon:before {
border-right: 50px solid transparent;
left: -6px;
}
</style>
<div class="ribbon"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment