-
Notifications
You must be signed in to change notification settings - Fork 0
/
starena.css
76 lines (62 loc) · 876 Bytes
/
starena.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
body {
background-color: #555555;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
color: white;
text-align: center;
}
h1 {
font-size: 24px;
}
a {
text-decoration: none;
color: #C2AA6D;
}
a:visited {
text-decoration: none;
color: #C2AA6D;
}
a:hover {
text-decoration: underline;
color: white;
}
p {
width: 50%;
margin-left: auto;
margin-right: auto;
}
#main {
border: 3px solid black;
display: inline-block;
margin-right: 150px;
background-color: #080808;
}
#log {
position: absolute;
width: 400px;
right: 0px;
top: 0px;
}
.log-entry {
text-align: left;
font-size: 12px;
margin-bottom: 10px;
}
#code {
margin-top: 20px;
}
#code-input {
width: 600px;
height: 300px;
}
.canvas-game {
position: absolute;
z-index: 0;
}
.canvas-dino {
position: absolute;
z-index: 1;
}
.canvas-health {
position: absolute;
z-index: 2;
}