Created
September 23, 2017 20:45
-
-
Save Sanix-Darker/dc7a1a473238809f46bbb102b7619d9e to your computer and use it in GitHub Desktop.
[CSS] Nice box Shadows
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
.top-box | |
{ | |
box-shadow: inset 0 7px 9px -7px rgba(0,0,0,0.4); | |
} | |
.left-box | |
{ | |
box-shadow: inset 7px 0 9px -7px rgba(0,0,0,0.4); | |
} | |
.right-box | |
{ | |
box-shadow: inset -7px 0 9px -7px rgba(0,0,0,0.4); | |
} | |
.bottom-box | |
{ | |
box-shadow: inset 0 -7px 9px -7px rgba(0,0,0,0.4); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment