-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (45 loc) · 799 Bytes
/
style.css
File metadata and controls
55 lines (45 loc) · 799 Bytes
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
/* add styles here */
.container {
display: flex;
}
/* we want our squares to be 20x20px
a 10x20 grid (10 squares wide x 20 squares tall)
*/
/* style only the element with id=grid */
.grid {
width: 200px;
height: 400px;
display: flex;
flex-wrap: wrap;
background-color: aliceblue;
border: solid;
}
/* all divs in the element .grid */
.grid div {
height: 20px;
width: 20px;
/* background-color: red; */
}
.tetromino {
background-color: blue;
}
.mini-grid {
margin-left: 50px;
width: 80px;
height: 80px;
display: flex;
flex-wrap: wrap;
background-color: aliceblue;
border: solid;
}
.mini-grid div {
height: 20px;
width: 20px;
}
#start-button {
margin-bottom: 20px;
}
#p-score {
font-weight: bolder;
font-size: large;
}