-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.css
86 lines (72 loc) · 1.03 KB
/
main.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
* {
margin: 0;
padding: 0;
}
html, body, .main {
width: 100%;
height: 100%;
}
h1 {
margin: 8px;
}
a {
color: black;
}
.main {
position: fixed;
background-color: white;
overflow: hidden;
text-align: center;
font-family: helvetica, arial;
}
.title, .info {
position: absolute;
padding: 8px;
}
.title {
left: 0px;
right: 0px;
top: 0px;
}
.info {
left: 0px;
right: 0px;
bottom: 0px;
}
.game {
position: absolute;
background-color: black;
left: 0px;
right: 0px;
overflow: hidden;
}
.track, .record {
position: absolute;
top: 0px;
bottom: 0px;
}
.record {
position: absolute;
padding: 8px;
color: #808080;
text-align: left;
pointer-events: none;
}
.tile {
position: absolute;
pointer-events: none;
}
.canvas, .frame, .fill{
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
pointer-events: none;
}
.frame {
background-color: white;
}
.fill {
background-color: black;
}