-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathstyle.css
81 lines (70 loc) · 1.11 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
76
77
78
79
80
81
html {
height: 100%;
}
body {
background: #000;
color: #eee;
font-family: sans-serif;
font-size: 9pt;
padding: 0;
margin: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.cesium {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
}
#toolbar {
margin: 5px;
padding: 2px 5px;
position: absolute;
background: rgba(42, 42, 42, 0.8);
padding: 4px;
bottom: 46px;
border-radius: 4px;
}
#toolbar input {
vertical-align: middle;
padding-top: 2px;
padding-bottom: 2px;
}
#toolbar table tr {
transform: translateY(0);
transition: transform 0.4s ease-out;
}
#toolbar table tr.up {
transform: translateY(33px);
transition: none;
}
#toolbar table tr.down {
transform: translateY(-33px);
transition: none;
}
#footer{
position: absolute;
left: 69px;
top: 50px;
}
#logo{
position: absolute;
top: 5px;
left: 5px;
}
#logo img{
width: 472px;
}
#kml{
position: absolute;
margin: 5px;
padding: 2px 5px;
position: absolute;
/*background: rgba(42, 42, 42, 0.8);*/
padding: 4px;
bottom: 125px;
border-radius: 4px;
}