-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
68 lines (59 loc) · 1.11 KB
/
styles.css
File metadata and controls
68 lines (59 loc) · 1.11 KB
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
61
62
63
64
65
66
67
68
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: black;
color: rgb(253, 59, 0);
}
#game {
max-width: 400px;
margin: 50px auto;
}
button {
padding: 10px;
font-size: 16px;
cursor: pointer;
margin-top: 10px;
background-color: rgb(50, 50, 50);
color: white;
border: none;
border-radius: 5px;
}
button:hover {
background-color: rgb(70, 70, 70);
}
#feedback {
font-size: 18px;
color: red;
margin-bottom: 10px;
}
#colorGrids {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
.colorGrid {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 10px;
}
.letterSquare {
width: 60px;
height: 60px;
border: 2px solid #ffffff;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
margin-right: 10px;
color: rgb(255, 255, 255);
border-radius: 5px;
background-color: rgb(30, 30, 30);
}
.correctLetter {
color: rgb(219, 255, 57);
}
.correctPosition {
background-color: rgb(0, 133, 0);
}