Socialify

Folder ..

Viewing index.css
192 lines (185 loc) • 3.7 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
html,
body {
	padding: 0;
	margin: 0;
}

body {
	font-family: -apple-system, 'Helvetica Neue', Helvetica, sans-serif;
}
#map {
    z-index: 0;
}
#hamburger {
    color: black;
    font-size: 24px;
    background-color: #fff;
    padding: 10px 20px;
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 2;
}
#sidebar {
    height: 100vh;
    background-color: #fff;
    width: 300px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    box-shadow: 5px 0px 10px -4px rgba(0,0,0,0.75);
    display: none;
    padding: 0px 30px 0px 30px;
    overflow-x: scroll;
}
.mapboxgl-ctrl-logo {
    display: none !important;
}
#copyright-notice {
    background-color: #fff;
    color: black;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    padding: 3px 10px 0px 10px;
    border-radius: 2px;
}
#copyright-notice p {
    font-size: 12px;
    line-height: 1px;
}
#SettingsLabel {
    position: fixed;
    padding: 20px 0px 20px 140px;
    margin-left: -30px;
    background-color: #fff;
    display: block;
    font-size: 24px;
    color: grey;
    margin-top: 0px;
    z-index: 1;
}
#settings {
    margin-top: 100px;
}
.label {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    color: grey;
    margin-bottom: 20px;
}
.frm-maptoggle:checked,
.frm-maptoggle:not(:checked) {
    position: absolute;
    left: -9999px;
}
.frm-maptoggle:checked + label,
.frm-maptoggle:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
.frm-maptoggle:checked + label:before,
.frm-maptoggle:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
.frm-maptoggle:checked + label:after,
.frm-maptoggle:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #3498db;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.frm-maptoggle:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.frm-maptoggle:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
#menu {
    padding-left: 20px;
    font-size: 12px;
    color: black;
    text-transform: uppercase;
    font-weight: 500;
    padding-bottom: 30px;
}
.listing-group {
    font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
    font-weight: 500;
    border-radius: 3px;
    color: #666666;
    font-size: 12px;
    padding-left: 20px;
    padding-bottom: 30px;
}

.listing-group input[type=checkbox]:first-child + label {
    border-radius: 0;
}

.listing-group label:last-child {
    border-radius: 3px;
    border: none;
}

.listing-group input[type=checkbox] {
    display: none;
}

.listing-group input[type=checkbox] + label {
    background-color: #fff;
    display: block;
    cursor: pointer;
    padding: 0px 0px 15px 0px;
}

.listing-group input[type=checkbox] + label {
    background-color: #fff;
    text-transform: uppercase;
}

.listing-group input[type=checkbox] + label:hover,
.listing-group input[type=checkbox]:checked + label {
    background-color: #fff;
}

.listing-group input[type=checkbox]:checked + label:before {
    content: '✔';
    margin-right: 5px;
}
#geocoder-container > div {
    min-width:50%;
    margin-left:25%;
}
.geocoder {
    position:absolute;
    z-index:1;
    width:50%;
    left:50%;
    margin-left:-25%;
    top:20px;
}
.mapboxgl-ctrl-geocoder { min-width:100%; }
.ab-label {
    font-size: 12px;
}