GarGerry commited on
Commit
9803ba4
·
verified ·
1 Parent(s): 12e936c

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +13 -7
style.css CHANGED
@@ -1,6 +1,6 @@
1
  body {
2
  font-family: Arial, sans-serif;
3
- background-color: #f0f8ff;
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: #ffffff;
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
- input {
24
- padding: 10px;
25
- font-size: 16px;
26
- margin-top: 10px;
27
- margin-bottom: 10px;
 
 
 
 
 
 
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 {