-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (58 loc) · 945 Bytes
/
style.css
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
h1, h2 {
text-align: center;
}
#game-board {
display: flex;
align-items: center;
flex-direction: column;
}
.letter-box {
border: 1px solid gray;
border-radius: 3px;
margin: 1px;
font-size: 2.5rem;
font-weight: 700;
color: black;
height: 3rem;
width: 3rem;
display: flex;
justify-content: center;
align-items: center;
text-transform: uppercase;
}
.filled-box {
border: 1px solid black;
color: black;
}
.letter-row {
display: flex;
}
#keyboard-cont {
margin: 1rem 0;
display: flex;
flex-direction: column;
align-items: center;
}
#keyboard-cont div {
display: flex;
}
.second-row {
margin: 0.5rem 0;
}
.keyboard-button {
font-size: 1rem;
font-weight: 700;
padding: 0.5rem;
margin: 0 2px;
cursor: pointer;
text-transform: uppercase;
}
.dark-mode {
background-color: black;
.letter-box {
color: white;
}
.filled-box {
color: white;
}
}