style.css 367 B

1234567891011121314151617181920212223242526272829303132
  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, button, select{
  15. width: 100%;
  16. font-size: 2em;
  17. }
  18. table {
  19. border: 1px;
  20. border-collapse: collapse;
  21. }
  22. td,th {
  23. border: 1px solid black;
  24. }
  25. /*div#content {*/
  26. /*display: none;*/
  27. /*}*/