-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
50 lines (43 loc) · 795 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
body {
margin: 0;
padding: 0;
background: linear-gradient(black, rgb(55, 0, 55), rgb(28, 0, 73), rgb(20, 0, 32) );
text-align: center;
}
#wrapper {
display: inline-block;
margin: 20px;
}
#left-div {
display: inline-block;
vertical-align: top;
margin: 0 20 20 20;
padding: 20;
border: solid 1px white;
width: 286px;
height: 572.325px;
}
#logo {
width: 200px;
height: auto;
width: 300px;
}
#game-container {
position: relative;
display: inline-block;
}
#background {
z-index: -1;
}
#game-canvas {
position: absolute;
}
#score-div,
#lines-div {
color: white;
font-size: 23px;
font-weight: bold;
font-family: "Lucida Console", "Courier New", monospace;
text-align: center;
margin: 15 0;
}