-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMap.css
More file actions
82 lines (72 loc) · 1.21 KB
/
Map.css
File metadata and controls
82 lines (72 loc) · 1.21 KB
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
canvas {
display: block;
}
.map-loading-overlay {
background: var(--theme-background);
position: fixed;
top: 0px;
bottom: 0;
right: 0;
left: -40px;
z-index: 1000;
opacity: 1;
pointer-events: none;
transition: opacity 200ms ease-out;
}
.map-loading-message {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.map-loading-message {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.quote, p.loading-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
p.loading-text {
text-align: center;
font-size: 10px;
padding: 6px;
letter-spacing: .5em;
text-transform: uppercase;
border: 1px solid rgb(36, 36, 36);
width: 150px;
border-radius: 2px;
animation: breathing 1.2s ease-in infinite;
}
.quote {
top: 110%;
width: 400px;
color: var(--theme-primary);
font-size: 14px;
font-style: italic;
padding: 20px;
text-align: center;
}
p.quote-author {
position: relative;
margin-top: 25px;
color: var(--theme-primary);
text-align: right;
font-size: 11px;
}
@keyframes breathing {
0% {
color: #fff;
}
50% {
color: rgb(78, 78, 78);
}
100% {
color: #fff;
}
}