-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
105 lines (88 loc) · 1.81 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
100
101
102
103
104
body { margin: 0; padding: 0; }
#map { position: absolute; top: 0; bottom: 0; width: 100%; }
.layer-icon {
width: 20px;
height: 20px;
display: inline-block;
margin-right: 5px;
}
.bookmarks {
position:relative;
right: 10px;
background-color: rgb(227,229,230);
padding: 10px;
border-radius: 4px;
font-family: Arial, sans-serif;
z-index: 1;
width:100%;
height:100%;
font-size: 14px;
}
.switch-container {
display: flex;
align-items: center;
margin-right: 1px; /* Add margin to the right */
}
.switch-container div:last-child {
margin-left: 1px; /* Add margin to the left for the text */
}
.popup-image-container {
margin-top: 10px;
text-align: center;
}
.popup-image {
max-width: 100%;
height: auto;
}
.rounded-rect {
background: rgb(227,229,230);
border-radius: 10px;
box-shadow: 0 0 50px -25px black;
top:1px;
}
.flex-center {
position: absolute;
display: flex;
justify-content: center;
align-items: center;
}
.flex-center.right {
right: 0px;
}
.sidebar-content {
position: absolute;
width: 90%;
font-family: Arial, Helvetica, sans-serif;
color: gray;
}
.sidebar-toggle {
position: absolute;
width: 2em; /* Increased width */
height: 2.5em; /* Increased height */
font-size: 1.5em; /* Increased font size */
overflow: visible;
display: flex;
justify-content: center;
align-items: center;
top:auto;
left:auto;
}
.sidebar-toggle.right {
left: -1.8em;
}
.sidebar-toggle:hover {
color: #0aa1cf;
cursor: pointer;
}
.sidebar {
transition: transform 1s;
z-index: 1;
width: 215px;
height: 300px;
}
.right.collapsed {
transform: translateX(215px);
}
.bookmarks div[style*="font-weight: bold"] {
margin-top: 10px; /* Adjust this value to increase/decrease the space */
}