-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (91 loc) · 1.65 KB
/
style.css
File metadata and controls
92 lines (91 loc) · 1.65 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
html, body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
height: 100%;
margin: 0;
padding: 0;
color: #111827;
background: #f8fafc;
}
#mainContent {
display: flex;
height: calc(100% - 130px);
}
#topbar {
height: 130px;
padding: 16px 20px;
backdrop-filter: blur(12px);
box-sizing: border-box;
background: #f3f3f3;
border-bottom: 1px solid #e2e8f0;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
position: relative;
}
#sidePanel {
width: 25%;
height: 100%;
box-sizing: border-box;
padding: 16px;
background: #ffffff;
border-left: 1px solid #e2e8f0;
overflow-y: auto;
}
#clearPointsButton {
position: absolute;
top: 10px;
right: 10px;
}
#interpolateButton:disabled {
background-color: #ccc;
color: #666;
cursor: not-allowed;
opacity: 0.6;
}
#interpolateButton {
position: absolute;
top: 60px;
right: 10px;
}
#sliderLabel {
position: absolute;
top: 105px;
right: 170px;
}
#slider {
position: absolute;
top: 105px;
right: 45px;
width: 120px;
}
#output {
position: absolute;
top: 105px;
right: 10px;
}
#map {
width: 75%;
height: 100%;
}
.elevationTextBox {
display: none;
}
.pointRow, #statusText {
margin-bottom: 18px;
}
#statusText {
font-weight: bold;
}
button {
font: inherit;
font-weight: 400;
border: none;
border-radius: 10px;
padding: 10px 14px;
background: #e6214c;
color: white;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
transition: all 0.2s ease;
}
button:hover {
transform: translateY(-1px);
opacity: 0.8;
}