Guest User

Untitled

a guest
Jan 23rd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. /**
  2. * The first commented line is your dabblet’s title
  3. */
  4.  
  5. ul {
  6. list-style: none;
  7. padding: 0;
  8. margin: 0;
  9. border: 4px solid #fff;
  10. display: inline-grid;
  11. grid-template-columns: repeat(3, 100px);
  12. grid-template-rows: repeat(3, 100px);
  13.  
  14. grid-gap: 4px;
  15. background: #fff;
  16. }
  17. li { background: #cdcdcd; }
  18. .hi { outline: 4px solid #33f; }
  19. html { height: 100%; }
  20. body {
  21. background: #f06;
  22. background: linear-gradient(45deg, #f06, yellow) no-repeat;
  23. background-size: 100% 100%;
  24. min-height: 100%;
  25. }
Add Comment
Please, Sign In to add comment