File size: 887 Bytes
c19ead2
d75122f
 
 
a941cc2
 
 
d75122f
 
 
 
 
 
c19ead2
 
d75122f
 
 
 
 
 
 
 
 
 
 
a941cc2
 
d75122f
 
 
 
 
 
 
c19ead2
 
a941cc2
d75122f
c19ead2
 
a941cc2
d75122f
 
c19ead2
 
d75122f
 
 
 
a941cc2
 
d75122f
 
 
 
a941cc2
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
body {
    background-color: #333;
    font-family: Arial, sans-serif;
    text-align: center;
}

.container {
    max-width: 400px;
    margin: 40px auto;
    padding: 20px;
    background-color: #444;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h1 {
    color: #fff;
    margin-top: 0;
}

.timer {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.start-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

.start-button:hover {
    background-color: #0069d9;
}

.start-button.active {
    background-color: #fff;
    color: #333;
}

.clicks-per-second {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.total-clicks {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}