-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (79 loc) · 1.36 KB
/
style.css
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
body{
font-family: sans-serif
}
.menu-item {
width: 250px;
height: 50px;
border-bottom: 1px solid #ececec;
list-style-type: none;
padding: 5px;
margin: 1rem;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
color: #424242;
}
.container {
display: flex;
}
.hover {
background: #f6f6f6;
border-radius: 5px;
}
.selected{
background: #9BCDD2;
border-radius: 5px;
}
.canvas {
display: none;
}
#map {
height: 600px;
width: 800px;
}
.elements-container{
display: flex;
flex-direction: column;
}
.map-container{
display: none;
flex-direction: column;
gap: .5rem;
padding:1rem;
}
.colorbar {
height: 20px;
width: 100%;
background: linear-gradient(to right, blue, red);
}
.color-label {
display: flex;
justify-content: space-between;
margin-top: 5px;
}
.zoom-btns{
position: absolute;
z-index: 2;
top: 8rem;
right: 16rem;
gap: .5rem;
display: none;
}
.zoom-btns button {
background-color: #fff;
border: 1px solid #bbb;
border-radius: 100%;
font-size: 1.5rem;
text-align: center;
display: flex;
cursor: pointer;
justify-content: center;
align-items: center;
padding: .5rem;
width: 40px;
height: 40px;
}
.zoom-btns button:hover {
background-color: #fafafa;
}