-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
50 lines (44 loc) · 874 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
body{
background-color: rgb(250, 242, 242);
}
.grid {
display:flex;
flex-wrap: wrap;
height: 420px;
width: 420px;
background-color: rgb(0, 0, 0);
margin: auto;
justify-content: center;
align-content: center;
}
.grid div{
border: solid rgb(68, 65, 65) 2px;
width: 100px;
height: 100px;
background-color: rgb(83, 200, 128);
text-align: center;
vertical-align: middle;
line-height: 100px;
font-weight: bold;
font-size: 52px;
}
.scoreContainer {
margin-top: 60px;
font-weight: bold;
text-align: center;
font-size: 30px;
}
.header {
font-size: 60px;
margin-top: 50px;
text-align: center;
font-weight: bold;
}
.instructions{
text-align: center;
margin: auto;
}
#result{
text-align: center;
margin: auto;
}