-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
48 lines (44 loc) · 926 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
body {
background-color: black;
}
.grid {
display: flex;
flex-wrap: wrap;
width: 500px;
height: 500px;
position: absolute;
top: 50%;
left: 50%;
-moz-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
.grid div {
display: flex;
width: 100px;
height: 100px;
background-color: silver;
font-size: 55px;
text-align: center;
font-weight: bold;
border: solid 8px;
border-radius: 15px;
justify-content: center;
align-items: center;
}
.score-container {
display: flex;
background-color: grey;
justify-content: space-evenly;
font-size: 30px;
color: black;
font-weight: bold;
}
#instructions {
display:flex;
flex-wrap: wrap;
height: 60px;
color: white;
justify-content: center;
align-items: center;
}