style.css 557 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. * {
  2. box-sizing: border-box;
  3. margin: 0;
  4. padding: 0;
  5. }
  6. body {
  7. margin: 0;
  8. padding: 0;
  9. }
  10. button {
  11. width: 100%;
  12. font-size: 2em;
  13. }
  14. input,
  15. button,
  16. select {
  17. width: 100%;
  18. font-size: 2em;
  19. }
  20. table {
  21. border: 1px;
  22. border-collapse: collapse;
  23. }
  24. #checkbox {
  25. display: flex;
  26. justify-content: center;
  27. font-size: 30px;
  28. font-weight: bold;
  29. }
  30. #fill {
  31. transform: scale(2);
  32. cursor: pointer;
  33. width: 50px;
  34. margin-top: 11px;
  35. }
  36. td,
  37. th {
  38. border: 1px solid black;
  39. }
  40. #chat {
  41. padding-top: 20px;
  42. }
  43. /*div#content {*/
  44. /*display: none;*/
  45. /*}*/