-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (57 loc) · 975 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
.container {
display: flex;
}
body {
background-color: rgb(32, 18, 8);
color: white
}
.minigrid {
width: 80px;
height: 80px;
background-color: #c28d8d;
display: flex;
flex-wrap: wrap;
border-style: solid;
margin-top: 45px;
margin-left: 20px;
}
h3 {
height: 30px;
margin-left: 20px;
}
.grid {
width: 200px;
height: 400px;
display: flex;
flex-wrap: wrap;
background-color: yellow;
border-style: solid;
margin-top: 40px;
margin-bottom: 20px;
margin-left: 15%;
}
.minigrid .empty {
height: 18px;
width: 18px;
border-style: solid;
border-color: black;
border-width: 0.5px;
}
.grid .empty {
height: 18px;
width: 18px;
border-style: solid;
border-color: black;
border-width: 0.5px;
}
.occupied {
height: 19px;
width: 19px;
border-style: None;
}
.grid .bottom {
border-style: none;
}
.tetraminos {
background-color: #2bcc8e;
}