-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
70 lines (64 loc) · 1.25 KB
/
Copy pathstyles.css
File metadata and controls
70 lines (64 loc) · 1.25 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
html, body {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
}
/* 지도 */
#map {
position: relative;
width: 100vw;
height: 90vh;
}
/* 시간 표시 */
#current-time {
position: fixed;
top: 10px;
left: 10px;
background-color: rgba(255, 255, 255, 0.8);
padding: 10px;
border-radius: 5px;
font-size: 18px;
font-weight: bold;
z-index: 1000;
}
/* 하위 조작 버튼 */
#controls {
position: fixed;
bottom: 10px;
left: 50%;
width: 50%;
transform: translateX(-50%);
background-color: rgba(255, 255, 255, 0.8);
padding: 10px;
border-radius: 5px;
font-size: 14px;
z-index: 1000;
display: flex;
align-items: center;
gap: 10px;
}
input[type=range] {
-webkit-appearance: none;
appearance: none;
background-color: #e0e0e0;
opacity: 0.8;
border-radius: 7.5px;
width: 70%;
height: 15px;
box-shadow: var(--box-shadow);
}
/** slider handle **/
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
border-radius: 7.5px;
width: 15%;
height: 15px;
background-color: yellowgreen;
box-shadow: var(--box-shadow);
cursor: pointer;
}
#toggle-animation {
background:yellowgreen;
border: none;
}