-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.css
executable file
·56 lines (49 loc) · 885 Bytes
/
demo.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
body,
html {
border: 0;
padding: 0;
margin: 0;
}
#map {
width: 100vw;
height: 100vh;
background: grey;
}
#rtsControlUI {
position: absolute;
top: 0;
right: 0;
}
#urlTemplateUI {
position: fixed;
top: 60px;
left: 10px;
background: #000;
color: #cbdace;
}
#urlTemplate {
margin: 2px;
width: 300px;
resize: none;
field-sizing: content;
border: 2px;
background-color: #808080;
color: #f0f0f0;
}
[data-title]:hover:after {
visibility: visible;
}
[data-title]:after {
content: attr(data-title);
background-color: #808080;
color: #f0f0f0;
position: absolute;
padding: 4px 8px 4px 8px;
visibility: hidden;
right: 100%;
white-space: nowrap;
}
.info {
color: #ffffff;
text-decoration: none !important;
}