-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
110 lines (100 loc) · 1.76 KB
/
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
body{
font-family: Arial, Helvetica, sans-serif;
text-align: center;
background-color: rgb(207, 127, 167);
background-size: cover;
}
header {
background-color: transparent;
width: 100%;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
hr{
width: 500px;
}
h1 {
margin: 0;
letter-spacing: 100px;
color: aliceblue;
}
h2 {
color: aliceblue;
}
#title{
font-size: 38px;
font-weight: bold;
letter-spacing: 2px;
}
#board{
width: 350px;
height: 420px;
margin: 0 auto;
margin-top: 3px;
display: flex;
flex-wrap: wrap;
}
.tile{
border: 2px solid lightgray;
width: 60px;
height: 60px;
margin: 2.5px;
color: white;
font-size: 36px;
font-weight: bold;
display: flex;
justify-content: center;
align-items: center;
}
.keyboard-row {
width: 400px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
}
.key-tile{
border: 1px solid lightgray;
border-radius: 2px;
background-color: #d3d6da;
width: 36px;
height: 50px;
margin: 1px;
gap: 3rem;
border-radius: 2px;
font-size: 20px;
font-weight: bold;
display: flex;
justify-content: center;
align-items: center;
}
.enter-key-tile{
background-color: #d3d6da;
border: 1px solid lightgray;
border-radius: 5px;
width: 76px;
height: 50px;
margin: 1px;
border-radius: 2px;
font-size: 20px;
font-weight: bold;
display: flex;
justify-content: center;
align-items: center;
}
.correct{
background-color: #6aaa64;
color: white;
border-color: white;
}
.present{
background-color: #c9b458;
color: white;
border-color: white;
}
.absent{
background-color: #9e8092;
color: white;
border-color: white;
}