Update style.css
Browse files
style.css
CHANGED
@@ -1,32 +1,28 @@
|
|
1 |
body {
|
2 |
-
background-color: #333;
|
3 |
font-family: Arial, sans-serif;
|
4 |
-
|
|
|
5 |
}
|
6 |
|
7 |
.container {
|
8 |
max-width: 400px;
|
9 |
margin: 40px auto;
|
10 |
-
|
11 |
-
background-color: #444;
|
12 |
-
border-radius: 10px;
|
13 |
-
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
14 |
}
|
15 |
|
16 |
h1 {
|
17 |
-
|
18 |
-
margin-
|
19 |
}
|
20 |
|
21 |
.timer {
|
22 |
-
font-size:
|
23 |
font-weight: bold;
|
24 |
-
|
25 |
-
margin-bottom: 10px;
|
26 |
}
|
27 |
|
28 |
.start-button {
|
29 |
-
background-color: #
|
30 |
color: #fff;
|
31 |
border: none;
|
32 |
padding: 10px 20px;
|
@@ -36,7 +32,7 @@ h1 {
|
|
36 |
}
|
37 |
|
38 |
.start-button:hover {
|
39 |
-
background-color: #
|
40 |
}
|
41 |
|
42 |
.start-button.active {
|
@@ -44,14 +40,13 @@ h1 {
|
|
44 |
color: #333;
|
45 |
}
|
46 |
|
47 |
-
.
|
48 |
-
font-size:
|
49 |
-
|
50 |
-
margin-bottom:
|
51 |
}
|
52 |
|
53 |
-
.
|
54 |
font-size: 18px;
|
55 |
-
|
56 |
-
margin-bottom: 10px;
|
57 |
}
|
|
|
1 |
body {
|
|
|
2 |
font-family: Arial, sans-serif;
|
3 |
+
background-color: #333;
|
4 |
+
color: #fff;
|
5 |
}
|
6 |
|
7 |
.container {
|
8 |
max-width: 400px;
|
9 |
margin: 40px auto;
|
10 |
+
text-align: center;
|
|
|
|
|
|
|
11 |
}
|
12 |
|
13 |
h1 {
|
14 |
+
font-size: 24px;
|
15 |
+
margin-bottom: 20px;
|
16 |
}
|
17 |
|
18 |
.timer {
|
19 |
+
font-size: 36px;
|
20 |
font-weight: bold;
|
21 |
+
margin-bottom: 20px;
|
|
|
22 |
}
|
23 |
|
24 |
.start-button {
|
25 |
+
background-color: #337ab7;
|
26 |
color: #fff;
|
27 |
border: none;
|
28 |
padding: 10px 20px;
|
|
|
32 |
}
|
33 |
|
34 |
.start-button:hover {
|
35 |
+
background-color: #23527c;
|
36 |
}
|
37 |
|
38 |
.start-button.active {
|
|
|
40 |
color: #333;
|
41 |
}
|
42 |
|
43 |
+
.click-counter {
|
44 |
+
font-size: 48px;
|
45 |
+
font-weight: bold;
|
46 |
+
margin-bottom: 20px;
|
47 |
}
|
48 |
|
49 |
+
.cps-display {
|
50 |
font-size: 18px;
|
51 |
+
margin-bottom: 20px;
|
|
|
52 |
}
|