1
0

counter.css 395 B

1234567891011121314151617181920212223242526
  1. html body {
  2. font-family: Arial, sans-serif;
  3. margin: 20px;
  4. padding: 0;
  5. display: flex;
  6. justify-content: center;
  7. font-size: 2rem;
  8. height: 100vh;
  9. background-color: #f0f0f0;
  10. }
  11. #controls {
  12. display: flex;
  13. justify-content: center;
  14. align-items: center;
  15. margin-top: 20px;
  16. }
  17. button {
  18. padding: 5px 10px;
  19. margin: 0 5px;
  20. }
  21. input {
  22. width: 50px;
  23. }