Advertisement
vincentperaud

CSS Damier

Feb 19th, 2020
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.48 KB | None | 0 0
  1. body {
  2.     padding: 20px;
  3. }
  4. .carre {
  5.     width: 50px;
  6.     height: 50px;
  7. }
  8. .cercle {
  9.     width: 40px;
  10.     height: 40px;
  11.     border-radius: 50%;
  12.     margin-top: 5px;
  13.     margin-left: 5px;
  14. }
  15. .noir {
  16.     background-color: black;
  17. }
  18. .caseNoire {
  19.     background-color: #2c3e50;
  20. }
  21. .caseJaune {
  22.     background-color: #f1c40f;
  23. }
  24. .pionNoir {
  25.     background-color: black;
  26. }
  27. .pionBlanc {
  28.     background-color: white;
  29. }
  30. .float {
  31.     float: left;
  32. }
  33. .clear {
  34.     clear: both;
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement