-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (61 loc) · 1.08 KB
/
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
67
68
69
70
71
72
73
74
75
* {
box-sizing: border-box;
}
body {
font-size: 100%;
}
.wrapper {
display: table;
width: 600px;
position: relative;
font-family: 'VT323', monospace;
background-color: black;
color: rgb(247, 245, 199);
}
.container {
display: table-cell;
vertical-align: top;
}
.canvas-container {
position: relative;
min-width: 320px;
}
#game-layer {
width: 100%;
vertical-align: top;
z-index: 0;
}
#title {
width:100%;
font-size: 36px;
text-align: center;
line-height: 1em;
position: absolute;
z-index: 1;
}
.widebar {
width:100%;
font-size: 18px;
line-height: 1em;
text-align: left;
padding-left: 5px;
}
#menu {
text-align: center;
width: 100%;
position: absolute;
bottom: 1em;
z-index: 3;
}
#start_button {
background-color: black;
color: rgb(247, 245, 199);
font-family: 'VT323', monospace;
font-size: 20px;
padding: 2px;
text-align: center;
text-decoration: none;
display: inline-block;
border-width: 1px;
border-color: rgb(247, 245, 199);
}