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
82
83
84
85
86
| .div-icon {
| padding: 0 !important;
| }
|
| .public-map-popup {
| position: absolute;
| bottom: 80px;
| pointer-events: all;
| display: block;
| transform-origin: left bottom;
| transform: translate(-50%, 0px);
| border-radius: 5px;
| z-index: auto;
|
| &::after {
| content: "";
| position: absolute;
| bottom: -80px;
| left: calc(50% - 3px);
| display: block;
| width: 3px;
| height: 80px;
| // 0px 0px 6px rgb(255, 179, 0, 0.8)
| background: linear-gradient(to bottom, rgb(255, 179, 0, 0.8), rgb(255, 179, 0, 0.2));
| // border-right: 3px solid #fff;
| }
|
| .marsBlueGradientPnl {
| padding: 4px 8px;
| text-align: center;
| margin: 0;
| color: #fff;
| -webkit-border-radius: 5px;
| -moz-border-radius: 5px;
| border-radius: 5px;
| line-height: 32px;
| width: 112px;
| -webkit-user-select: none;
| -moz-user-select: none;
| -ms-user-select: none;
| user-select: none;
| word-wrap: break-word;
| font-size: 14px;
| background: linear-gradient(rgb(7 10 203 / 75%), rgb(16 238 220));
| }
|
| .map-name {
| width: 112px;
| line-height: 24px;
| text-align: center;
| color: #FFEB3B;
| word-wrap: break-word;
| font-size: 14px;
| font-weight: bold;
| }
|
| .map-icon {
| margin: auto;
| display: flex;
| align-items: center;
| justify-content: center;
| width: 36px;
| height: 36px;
| background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 20%, rgb(255, 179, 0, 0.9) 100%);
| border-radius: 50%;
| box-shadow: 0px 0px 10px rgb(255, 179, 0, 1);
|
| img {
| width: 24px;
| height: 24px;
| }
| }
| }
|
| .widget.location-bar {
| position: absolute;
| left: 620px !important;
| bottom: 120px !important;
| font-size: 14px;
| color: #fff;
| background: #0009;
| padding: 2px 5px;
| border-radius: 2px;
| user-select: none;
| display: flex;
| }
|
|