Guest User

Untitled

a guest
Oct 20th, 2018
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. /*Sexy paper shadow*/
  2. .post {
  3. position:relative;
  4.  
  5. width: 500px;
  6. height: 400px;
  7. background-color: #ECEAe2;
  8. padding: 30px;
  9. width: 500px;
  10. height: 100px;
  11. margin: 0 auto;
  12. top: 30px;
  13. }
  14.  
  15. .post::before,
  16. .post::after {
  17. content:"";
  18. position:absolute;
  19. z-index:-1;
  20. bottom:15px;
  21. left:10px;
  22. width:50%;
  23. height:10px;
  24. max-width:300px;
  25.  
  26. -webkit-box-shadow:0 15px 15px rgba(0, 0, 0, 0.4);
  27. -moz-box-shadow:0 15px 15px rgba(0, 0, 0, 0.4);
  28. box-shadow:0 15px 15px rgba(0, 0, 0, 0.4);
  29. -webkit-transform:rotate(-3deg);
  30. -moz-transform:rotate(-3deg);
  31. -o-transform:rotate(-3deg);
  32. transform:rotate(-3deg);
  33. }
  34. .post::after{
  35. right:10px;
  36. left:auto;
  37. -webkit-transform:rotate(3deg);
  38. -moz-transform:rotate(3deg);
  39. -o-transform:rotate(3deg);
  40. transform:rotate(3deg);
  41. }
Add Comment
Please, Sign In to add comment