-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame-styles.css
More file actions
61 lines (50 loc) · 819 Bytes
/
game-styles.css
File metadata and controls
61 lines (50 loc) · 819 Bytes
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
58
59
60
.heading{
margin-top: 150px;
text-align: center;
}
body{
text-align: center;
padding: 20px;
}
#sign-container img {
width: 200px;
margin: 20px;
border: 2px solid #ccc;
border-radius: 8px;
}
#options {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin: 20px 0;
}
.option-btn {
margin: 10px;
padding: 10px 15px;
border: none;
border-radius: 6px;
background: #CFF27E;
cursor: pointer;
color:black;
}
#feedback {
font-weight: bold;
margin-top: 15px;
}
#next-btn {
margin-top: 20px;
padding: 10px 15px;
border: none;
border-radius: 6px;
background: #F08CAE;
cursor: pointer;
}
#next-btn:disabled {
cursor: not-allowed;
}
#new-game{
background-color:#F08CAE ;
padding: 10px 15px;
border-radius:5px;
cursor: pointer;
}