-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (110 loc) · 1.99 KB
/
Copy pathstyle.css
File metadata and controls
121 lines (110 loc) · 1.99 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
html,
body {
margin: 0;
background: radial-gradient(circle,rgb(255, 255, 255) 50%, rgb(174, 187, 221) 90%);
}
#map {
width: 100vw;
height: 100vh;
}
#series-slider {
position: absolute;
z-index: 2;
top: 0;
width: 90vw;
left: 0;
right: 0;
margin: auto;
filter: drop-shadow(0px 0px 10px #ffffff);
margin-top: 15px;
}
#picking-display {
position: absolute;
bottom: 0;
left: 0;
right: 0;
margin: auto;
z-index: 2;
width: fit-content;
font-size: 3em;
font-family: monospace;
color: #ffffff;
font-weight: 600;
filter: drop-shadow(0px 0px 10px #000A);
margin-bottom: 80px;
}
#date-display {
position: absolute;
top: 0;
left: 0;
right: 0;
margin: auto;
z-index: 2;
width: fit-content;
font-size: 3em;
font-family: monospace;
color: #ffffff;
font-weight: 600;
filter: drop-shadow(0px 0px 10px #000A);
margin-top: 30px;
}
#opacity-slider {
position: absolute;
left: 0;
top: 0;
bottom: 0;
height: 200px;
margin: auto;
writing-mode: vertical-lr;
direction: rtl;
appearance: slider-vertical;
width: 16px;
vertical-align: bottom;
filter: drop-shadow(0px 0px 10px #ffffff);
margin-left: 10px;
}
#demo-list {
z-index: 2;
position: absolute;
bottom: 0;
right: 0;
margin-bottom: 50px;
margin-right: 12px;
display: flex;
flex-direction: column;
row-gap: 10px;
}
#demo-list a {
width: 250px;
font-family: sans-serif;
font-size: 20px;
text-align: center;
padding: 6px 12px;
text-decoration: none;
color: #555;
background-color: #ffffff;
border-radius: 4px;
filter: drop-shadow(0 0 10px #00000054);
}
#demo-list a.selected-demo {
background-color: #0077c7;
color: #FFF;
font-weight: 600;
}
#demo-dropdown {
z-index: 2;
position: absolute;
bottom: 0;
right: 0;
left: 0;
margin: auto;
margin-bottom: 30px;
width: fit-content;
font-size: 20px;
background: #ffffff;
padding: 4px;
border: none;
border-radius: 4px;
color: #2c7ade;
filter: drop-shadow(0px 0px 10px #002d66);
}