Skip to content

Instantly share code, notes, and snippets.

View umimehar's full-sized avatar
👨‍🎓
Solving problems by building tools for humans

Umar umimehar

👨‍🎓
Solving problems by building tools for humans
View GitHub Profile
@umimehar
umimehar / bottomPageFoldShadow.css
Created January 10, 2019 06:01
A styles for adding shodows like a page is folded from corners
.bottomPageFoldShadow:after, .bottomPageFoldShadow:before{
content: "";
position: absolute;
bottom: 0;
display: block;
width: 70px;
height: 1px;
box-shadow: 0 11px 24px 0 rgba(0,0,0,.3), 0 2px 14px 4px rgba(0,0,0,.2);
}