Guest User

Untitled

a guest
Apr 25th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. /**
  2. * Scrollable tiles
  3. */
  4.  
  5. main {
  6. margin: -25vw -10vw 0 -10vw;
  7. display: grid;
  8. grid-auto-rows: 30vw;
  9. grid-template-columns: 15vw repeat(3, 30vw) 15vw;
  10. grid-gap: 2px;
  11. transform: rotate(-2deg);
  12. }
  13.  
  14. div {
  15. background-color: #dddddd;
  16. }
  17.  
  18. article {
  19. padding: 30px;
  20. background-color: pink;
  21. }
Add Comment
Please, Sign In to add comment