Update style.css
Browse files
style.css
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
body {
|
2 |
font-family: Arial, sans-serif;
|
3 |
-
background-color: #
|
4 |
display: flex;
|
5 |
justify-content: center;
|
6 |
align-items: center;
|
@@ -10,7 +10,7 @@ body {
|
|
10 |
|
11 |
.game-container {
|
12 |
text-align: center;
|
13 |
-
background-color: #
|
14 |
padding: 20px;
|
15 |
border-radius: 10px;
|
16 |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
@@ -20,11 +20,17 @@ h1 {
|
|
20 |
color: #333;
|
21 |
}
|
22 |
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
margin
|
27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
}
|
29 |
|
30 |
button {
|
|
|
1 |
body {
|
2 |
font-family: Arial, sans-serif;
|
3 |
+
background-color: #f0f0f0;
|
4 |
display: flex;
|
5 |
justify-content: center;
|
6 |
align-items: center;
|
|
|
10 |
|
11 |
.game-container {
|
12 |
text-align: center;
|
13 |
+
background-color: #fff;
|
14 |
padding: 20px;
|
15 |
border-radius: 10px;
|
16 |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
|
20 |
color: #333;
|
21 |
}
|
22 |
|
23 |
+
.color-options {
|
24 |
+
display: flex;
|
25 |
+
justify-content: space-around;
|
26 |
+
margin: 20px 0;
|
27 |
+
}
|
28 |
+
|
29 |
+
.color-box {
|
30 |
+
width: 100px;
|
31 |
+
height: 100px;
|
32 |
+
cursor: pointer;
|
33 |
+
border-radius: 5px;
|
34 |
}
|
35 |
|
36 |
button {
|