You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

calc.css 756B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .body #input {
  2. display: flex;
  3. flex-wrap: wrap;
  4. justify-content: center;
  5. }
  6. .body #input > input {
  7. justify-self: center;
  8. outline: none;
  9. padding: 16px;
  10. margin: 16px;
  11. font-size: 24px;
  12. border: 2px solid #2a2a2a;
  13. width: 128px;
  14. height: 64px;
  15. border-radius: 16px;
  16. text-align: center;
  17. }
  18. .body #output {
  19. font-size: 24px;
  20. text-align: center;
  21. }
  22. .body #output:empty {
  23. display: none;
  24. }
  25. .body #output::before {
  26. content: "Result:";
  27. color: #2a2a2a;
  28. padding-right: 0.5em;
  29. }
  30. .body #error {
  31. font-size: 24px;
  32. text-align: center;
  33. color: #e21c1c;
  34. }
  35. .body #error:empty {
  36. display: none;
  37. }
  38. .body #error::before {
  39. content: "Error:";
  40. color: #e94e4e;
  41. padding-right: 0.5em;
  42. }