File size: 854 Bytes
97c507a c19ead2 d75122f 97c507a a941cc2 85ba8d1 c19ead2 d75122f 85ba8d1 97c507a d75122f 97c507a 85ba8d1 d75122f a941cc2 97c507a d75122f 97c507a c19ead2 97c507a c19ead2 97c507a c19ead2 85ba8d1 97c507a a941cc2 85ba8d1 97c507a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
/* styles.css */
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;
}
|