-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (95 loc) · 1.95 KB
/
Copy pathstyle.css
File metadata and controls
111 lines (95 loc) · 1.95 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
h3{
font-family: 'Orbitron', sans-serif;
}
button {
font-family: 'Orbitron', sans-serif;
background-color: rgb(103, 95, 211);
border-radius: 5px;
}
body {
background: radial-gradient(rgb(192, 192, 240), rgb(132, 132, 224))
}
.header{
display: block;
/* flex-wrap: nowrap; */
text-align: center;
/* background-color: black; */
/* flex-wrap: wrap; */
/* justify-content: center; */
}
.container{
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: 5%;
}
.grid{
width: 200px;
height: 400px;
display: flex;
flex-wrap: wrap;
background-color: rgb(192, 192, 240);
border-style: solid;
border-radius: 5px;
/* border-color: black; */
}
.grid div{
height: 20px;
width: 20px;
/* border-color: black; */
/* border-style: solid; */
/* border-width: .5px; */
/* background-color: red; */
}
.grid #grid-bottom{
border-color: "";
border-style: "";
border-width: "";
background-color: '';
}
.rightside{
display: block;
margin-left: 5%;
/* flex-wrap: nowrap; */
}
.miniGrid{
/* margin-left: 20px; */
width: 100px;
height: 120px;
display: flex;
flex-wrap: wrap;
background-color: gray;
border-style: solid;
border-color: black;
border-radius: 5px;
}
.miniGrid div{
height: 20px;
width: 20px;
/* border-style: solid; */
/* border-color: black; */
}
.score{
text-align: center;
/* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
border-style: solid;
border-color: black;
border-radius: 10px;
margin-top: 20%;
/* background-color: blue; */
}
.difficulty{
display: block;
border-color: black;
border-style: solid;
border-radius: 5px;
margin-top: 5%;
text-align: center;
}
.difficulty button{
/* display: block; */
/* justify-content: right; */
}
.tetromino{
/* border-radius: 2px; */
}