Guest User

Untitled

a guest
Oct 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. /* CSS Shadows */
  2. body {
  3. background: grey;
  4. padding: 100px;
  5. }
  6. div {
  7. background: white;
  8. height: 300px;
  9. position: relative;
  10. width: 400px;
  11. /* BEGIN CRAZINESS */
  12. -webkit-filter: drop-shadow(0 2px 4px hsla(0,0%,0%,1));
  13. /* END CRAZINESS */
  14. /*box-shadow: 0 2px 4px hsla(0,0%,0%,1);
  15. */
  16.  
  17. }
  18. div:after,
  19. div:before {
  20. background-size: 50px 50px;
  21. content: '';
  22. height: 100%;
  23. position: absolute;
  24. top: 0;
  25. width: 50px;
  26. }
  27. div:after {
  28. background-image: -webkit-linear-gradient(-45deg, transparent 50%, white 50%);
  29. left: -50px;
  30. }
  31.  
  32. div:before {
  33. background-image: -webkit-linear-gradient(-45deg, white 50%, transparent 50%);
  34. right: -50px;
  35. }
Add Comment
Please, Sign In to add comment