Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. .polaroid {
  2. max-width: 300px;
  3. background: #fff;
  4. display: inline-block;
  5. margin: 0 0 27px 30px;
  6. width: auto;
  7. padding: 10px 10px 15px;
  8. text-align: center;
  9. font-family: "Marker Felt", sans-serif;
  10. text-decoration: none;
  11. color: #333;
  12. font-size: 18px;
  13. box-shadow: 0 3px 6px rgba(0, 0, 0, .25);
  14. transform: rotate(-3deg);
  15. transition: 0.5s;
  16. }
  17.  
  18. .polaroid.right {
  19. transform: rotate(3deg);
  20.  
  21. }
  22.  
  23. .polaroid:hover {
  24. transition: 0.5s;
  25. transform: rotate(0deg);
  26. max-width: 325px;
  27. margin: 0 0 0 10px;
  28. }
  29.  
  30. .polaroid img {
  31. max-width: 100%;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement