styles.css 338 B

1234567891011121314151617181920212223242526272829303132333435
  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. td,
  25. th {
  26. border: 1px solid black;
  27. }
  28. /*div#content {*/
  29. /*display: none;*/
  30. /*}*/