style.css 380 B

1234567891011121314151617181920212223242526272829303132333435
  1. html {
  2. box-sizing: border-box;
  3. }
  4. *,
  5. *::before,
  6. *::after {
  7. box-sizing: inherit;
  8. }
  9. td {
  10. width: 20px;
  11. background-color: grey;
  12. text-align: center;
  13. }
  14. table {
  15. padding: 10px;
  16. background-color: rgb(211, 208, 208);
  17. }
  18. input {
  19. margin-right: 10px;
  20. }
  21. .calc{
  22. display: flex;
  23. justify-content: center;
  24. }
  25. #result{
  26. text-align: center;
  27. color: aqua;
  28. font-size: 20px;
  29. }