-
Notifications
You must be signed in to change notification settings - Fork 0
/
tetris.css
64 lines (61 loc) · 1.07 KB
/
tetris.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
body {
margin: 0;
display: flex;
flex-direction: column;
background-color: black;
color: white;
align-items: center;
font-family: sans-serif;
background-image: url("https://venngage-wordpress.s3.amazonaws.com/uploads/2018/09/Colorful-Circle-Simple-Background-Image-1.jpg");
background-repeat: no-repeat;
background-size: cover;
}
.content {
display: flex;
/* color: #efef09; */
justify-content: space-between;
}
.header {
height: 20vh;
}
div {
text-align: center;
font-size: 15px;
}
.heading {
display: flex;
font-weight: bold;
align-items: center;
font-family: sans-serif;
}
.count {
margin: 50px;
font-size: 35px;
}
#score {
font-size: 35px;
display: inline-block;
margin: 5px;
}
canvas {
margin: 0;
display: block;
}
#tetris {
align-items: center;
}
.sidebar {
width: 20vw;
}
.sidebar ul {
text-align: left;
}
.sidebar ul li {
margin-top: 5px;
}
.sidebar-container {
display: flex;
margin-left: 40px;
flex-direction: column;
justify-content: space-between;
}