-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (44 loc) · 802 Bytes
/
Copy pathstyle.css
File metadata and controls
45 lines (44 loc) · 802 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
.grid{
width: 220px;
height: 400px;
display: flex;
flex-wrap: wrap;
background-color: grey;
}
.container{
display: flex;
}
#start-button{
font: FR73;
background-color: gold;
color:red;
}
#start-button:hover{
color:gold;
background-color: red;
}
.grid div{
height: 20px;
width: 20px;
border-style: solid;
border-color: whitesmoke;
border-width: 1px 1px 1px 1px;
}
.tetromino{
background-color: cadetblue;
}
.mini-grid{
margin-left: 50px;
width:100px;
height: 100px;
display: flex;
flex-wrap: wrap;
background-color: gray;
}
.mini-grid div{
height: 20px;
width: 20px;
border-style: solid;
border-color: whitesmoke;
border-width: 1px 1px 1px 1px;
}