-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
89 lines (76 loc) · 1.37 KB
/
Copy pathstyles.css
File metadata and controls
89 lines (76 loc) · 1.37 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
body {
display: flex;
flex-direction: column;
align-items: center;
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
.game-container {
margin: 20px;
}
.grid {
display: grid;
grid-template-rows: repeat(4, 1fr);
gap: 25px;
margin-bottom: 50px;
align-items: center;
}
.row {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 5px;
}
.tile {
width: 60px;
height: 60px;
border: 2px solid #d3d6da;
display: flex;
justify-content: center;
align-items: center;
font-size: 2em;
font-weight: bold;
text-transform: uppercase;
}
.keyboard {
display: flex;
flex-direction: column;
align-items: center;
padding-right: 25px;
gap: 10px;
}
.keyboard-row {
display: flex;
gap: 5px;
}
.key {
padding: 15px;
border: none;
border-radius: 4px;
background-color: #d3d6da;
font-weight: bold;
cursor: pointer;
}
.correct {
background-color: #6aaa64;
color: white;
border-color: #6aaa64;
}
.present {
background-color: #c9b458;
color: white;
border-color: #c9b458;
}
.absent {
background-color: #787c7e;
color: white;
border-color: #787c7e;
}
.key.correct {
background-color: #6aaa64 !important;
}
.key.present {
background-color: #c9b458 !important;
}
.key.absent {
background-color: #787c7e !important;
}