-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
67 lines (67 loc) · 1.07 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
body {
font-family: 'Helvetica Neue', Helvetica, Verdana, sans-serif;
margin: 0;
background: black;
overflow: hidden;
}
canvas {
position: absolute;
top: 0px;
left: 0px;
}
#coordinates, #info, #biginfo, #controls {
opacity: 0.8;
position: absolute;
background: black;
border: 1px solid lime;
color: white;
text-align: center;
}
#controls {
top: 0px;
right: 0px;
opacity: 0.5;
height: auto;
width: auto;
border-top: none;
border-right: none;
}
#controls .button {
float: left;
font-size: 3em;
font-weight: bold;
padding: 1px 15px;
cursor: pointer;
color: silver;
}
#controls .button:hover {
color: white;
background: gray;
}
#coordinates, #info, #biginfo {
bottom: 0px;
height: 20px;
border-bottom: none;
}
#coordinates {
opacity: 0.8;
position: absolute;
right: 0px;
width: 200px;
border-right: none;
}
#info {
opacity: 0.8;
position: absolute;
right: 201px;
width: 400px;
border-right: none;
}
#biginfo {
opacity: 0.8;
position: absolute;
left: 0px;
right: 602px;
border-right: none;
border-left: none;
}