| |
|
|
| body { |
| font-family: Arial, sans-serif; |
| background-color: #121212; |
| color: #ffffff; |
| display: flex; |
| justify-content: center; |
| align-items: center; |
| height: 100vh; |
| margin: 0; |
| } |
|
|
| .container { |
| text-align: center; |
| } |
|
|
| h1 { |
| margin-bottom: 20px; |
| color: #00bfff; |
| } |
|
|
| .timer { |
| font-size: 2em; |
| margin-bottom: 20px; |
| } |
|
|
| .start-button { |
| background-color: #1e90ff; |
| color: #ffffff; |
| border: none; |
| border-radius: 5px; |
| padding: 15px 30px; |
| font-size: 1.2em; |
| cursor: pointer; |
| transition: background-color 0.3s, color 0.3s; |
| } |
|
|
| .start-button:active { |
| background-color: #4682b4; |
| } |
|
|
| .start-button.white { |
| background-color: #ffffff; |
| color: #000000; |
| } |
|
|
| .click-counter { |
| font-size: 2em; |
| margin: 20px 0; |
| } |
|
|
| .cps-display { |
| font-size: 1.5em; |
| color: #00bfff; |
| } |
|
|