-
Notifications
You must be signed in to change notification settings - Fork 2
/
Wordle.css
107 lines (93 loc) · 1.96 KB
/
Wordle.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
* {
margin: 0;
padding: 0;
}
html,
body {
height: 100%;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
.box {
display: flex;
background-color: black;
height: 100%;
align-items: center;
flex-direction: column;
}
#game {
width: 100%;
max-width: 500px;
height: 100%;
display: flex;
flex-direction: column;
}
header {
border-bottom: 1px solid rgb(58, 58, 60);
}
.title {
color: gainsboro;
font-size: 2.5rem;
font-weight: bold;
margin: 0.4rem 0 0.4rem 0;
text-align: center;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
#board-container {
display: flex;
justify-content: center;
align-items: center;
flex-grow: 1;
overflow: hidden;
}
#board {
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-gap: 5px;
padding: 10px;
box-sizing: border-box;
}
.square {
border: 2px solid rgb(58, 58, 60);
min-width: 60px;
min-height: 60px;
font-size: 50px;
font-weight: bold;
color: gainsboro;
text-transform: uppercase;
display: flex;
justify-content: center;
align-items: center;
}
#keyboard-container {
height: 200px;
}
.keyboard-row {
display: flex;
justify-content: center;
width: 100%;
margin: 0 auto 8px;
touch-action: manipulation;
}
.keyboard-row button {
font-family: inherit;
font-weight: bold;
border: 0;
padding: 0;
height: 58px;
cursor: pointer;
background-color: rgb(129, 131, 132);
color: rgb(215, 218, 220);
flex-grow: 1;
text-transform: uppercase;
margin-right: 6px;
border-radius: 4px;
user-select: none;
}
.keyboard-row button.wide-button {
flex-grow: 1.5;
}
.spacer-half {
flex-grow: 0.5;
}