style.css 517 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. body {
  2. font-family:sans-serif;
  3. overflow:scroll;
  4. margin:0px;
  5. padding:0px;
  6. }
  7. .controls {
  8. position:fixed;
  9. top:0px;
  10. left:0px;
  11. padding:5px;
  12. width:100px;
  13. height:100%;
  14. background-color:white;
  15. text-align:center;
  16. }
  17. button, input {
  18. margin:5px;
  19. }
  20. input[type="number"] {
  21. width:50px;
  22. }
  23. #board {
  24. margin-left:120px;
  25. }
  26. table {
  27. border-collapse:collapse;
  28. }
  29. td {
  30. min-width:10px;
  31. min-height:10px;
  32. width:10px;
  33. height:10px;
  34. border:1px solid white;
  35. }