Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. .container {
  2. display: block;
  3. justify-content:left;
  4. margin-left:20px;
  5. position:relative;
  6. }
  7. .noir {
  8. background-color: black;
  9. }
  10. .orange {
  11. background-color: orange;
  12. }
  13. .jaune {
  14. background-color: yellow;
  15. }
  16. .gris {
  17. background-color: grey;
  18. }
  19. .white {
  20. background-color: white;
  21. }
  22. .row {
  23. justify-content:center;
  24. }
  25. .row div {
  26. width: 8%;
  27. padding-bottom: 8%;
  28. }
  29. .noir,
  30. .orange,
  31. .jaune,
  32. .gris,
  33. .white {
  34. border: 1px solid white;
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement