Advertisement
Guest User

Chess Styles

a guest
Sep 3rd, 2024
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.37 KB | None | 0 0
  1. .chess-game-space-black{
  2.     text-align: center;
  3.     line-height: 30px;
  4.     height: 30px;
  5.     width: 30px;
  6.     border: 1px solid;
  7.     margin-left: 1px;
  8.     background-color: #ccab7c;
  9. }
  10.  
  11. .chess-game-space-white{
  12.     text-align: center;
  13.     line-height: 30px;
  14.     height: 30px;
  15.     width: 30px;
  16.     border: 1px solid;
  17.     margin-left: 1px;
  18.     background-color: white;
  19. }
  20.  
  21. .game-row-1{
  22.     display: flex;
  23.     align-items: center;
  24.     justify-content: center;
  25.     border: red solid 1px;
  26. }
  27.  
  28. .inner-wrapper{
  29.     width: 30%;
  30. }
  31.  
  32. .game-row-2{
  33.     display: flex;
  34.     justify-content: center;
  35.     align-items: center;
  36.     margin-top: 1px;
  37.     border: aqua solid 2px;
  38. }
  39.  
  40. .game-row-3{
  41.     display: flex;
  42.     justify-content: center;
  43.     align-items: center;
  44.     margin-top: 1px;
  45. }
  46.  
  47. .game-row-4{
  48.     display: flex;
  49.     justify-content: center;
  50.     align-items: center;
  51.     margin-top: 1px;
  52. }
  53.  
  54. .game-row-5{
  55.     display: flex;
  56.     justify-content: center;
  57.     align-items: center;
  58.     margin-top: 1px;
  59. }
  60.  
  61. .game-row-6{
  62.     display: flex;
  63.     justify-content: center;
  64.     align-items: center;
  65.     margin-top: 1px;
  66. }
  67.  
  68. .game-row-7{
  69.     display: flex;
  70.     justify-content: center;
  71.     align-items: center;
  72.     margin-top: 1px;
  73. }
  74.  
  75. .game-row-8{
  76.     display: flex;
  77.     justify-content: center;
  78.     align-items: center;
  79.     margin-top: 1px;
  80. }
  81.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement