Skip to content

Instantly share code, notes, and snippets.

@bigsan
Created November 5, 2012 07:58
Show Gist options
  • Save bigsan/4015910 to your computer and use it in GitHub Desktop.
Save bigsan/4015910 to your computer and use it in GitHub Desktop.
Less: inset shadow on top/bottom side
.shadow-top-inset(@length: 15px, @color: gray) {
box-shadow: inset 0 @length @length -@length @color;
}
.shadow-bottom-inset(@length: 15px, @color: gray) {
box-shadow: inset 0 -@length @length -@length @color;
}
.shadow-top-bottom-inset(@length: 15px, @color: gray) {
box-shadow:
inset 0 @length @length -@length @color,
inset 0 -@length @length -@length @color;
}
body {
margin: 0;
}
#block {
background: rgb(213, 211, 208);
height:150px;
padding:8px;
.shadow-top-bottom-inset;
}
#block2 {
background: rgb(242, 242, 242);
height: 150px;
}
#block3 {
background: rgb(0, 174, 238);
color:white;
height:150px;
padding:8px;
.shadow-top-inset;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment