-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
430 lines (344 loc) · 7.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
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
/* Custom CSS */
/* ############# Home Page ####################### */
.navbar .account .account-options {
display: none;
}
.navbar .account .account-options.logged-in {
display: block;
}
.navbar .account .log-in {
display: inline;
}
.navbar .account .log-in.logged-in {
display: none;
}
.navbar .nav-pills .nav-link.active {
background-color: rgb(108, 117, 125);
color: wheat;
}
.dropdown-menu {
right: 0;
left: unset;
}
.dropdown-item.welcome-text:hover {
background-color: transparent;
}
.profile-pic {
border: 1px solid black;
border-radius: 50%;
overflow: hidden;
height: 40px;
width: 40px;
}
.profile-pic > img {
display: block;
height: inherit;
width: auto;
}
.text-tertiary {
color: lightblue;
}
.carousel-item {
height: 60vh;
width: 100%;
overflow: hidden;
}
.carousel-item > img {
height: 100%;
}
.carousel-control:hover {
background-color: rgba(0, 0, 0, 0.2)!important;
}
.carousel-indicators > button {
background-color: gray;
height: 4px;
width: 15px;
border: none;
}
.carousel-indicators > button.active {
background-color: black;
}
#featured-listings > h2 {
text-align: center;
}
.featured-content {
display: grid;
grid-template-rows: 1fr 1fr 1fr;
gap: 20px;
justify-content: center; /* Centers content vertically */
align-items: center; /* Centers content horizontally */
}
.listing-card ul.listing-details,
.house-listing ul.listing-details {
display: flex;
gap: 10px;
margin: 0;
padding: 0;
font-size: 0.8rem;
list-style: none;
font-weight: bold;
text-transform: uppercase;
}
.listing-card .listing-address {
margin: 0;
}
.card-img > img {
width: 100%;
height: auto;
}
.listing-card > .card-body {
display: flex;
justify-content: space-between;
}
.listing-card .tools {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.bookmark-icon {
position: absolute;
top: 14px;
right: 14px;
height: 50px;
width: 50px;
width: 30px;
height: 30px;
}
.bookmark-icon > svg:hover {
transform: scale(1.2);
}
.bookmark-icon > svg.filled {
fill: #1C274D;
}
.bookmark-icon > svg:active {
pointer-events: none;
}
.bookmark-icon > svg:active * {
pointer-events: none;
}
.bookmark-icon > svg.filled path:last-of-type {
stroke: white;
}
#featured-listings > .listing-card {
width: 400px;
}
#featured-listings > a {
display: block;
width: -moz-fit-content;
width: fit-content;
}
#featured-listings .card-img-top {
height: 200px;
overflow: hidden;
}
footer div.links > * {
text-align: center;
}
footer div.links a {
color: wheat;
text-decoration: none;
}
/* ################ SIGN IN PAGE #################### */
.form-signin > div{
width: 90vw;
padding: 10px;
border-radius: 20px;
}
.form-signin a.submit {
display: block;
}
/* ############### Listings Page ######################### */
.section {
min-height: 100vh; /* Sets the minimum height to 100% of the viewport height */
display: flex;
flex-direction: column;
justify-content: center; /* Centers content vertically */
align-items: center; /* Centers content horizontally */
/* padding-top: 80px; Add padding to account for fixed navbar */
}
#main-listing {
display: grid;
grid-template-columns: 250px auto;
grid-template-rows: 45px auto;
}
#main-listing > #main-content {
flex: 1;
grid-column: 1 / 3;
}
/* #main-listing {
position: relative;
overflow: hidden;
} */
#toolbar {
grid-column: 2 / 3;
}
#filter-toggle {
width: -moz-fit-content;
width: fit-content;
}
#sidebar {
display: none;
width: 250px;
padding: 5px;
padding-top: 0;
padding-left: 15px;
}
/* Spacing for each form element */
.filters label,
.filters input,
.filters select {
display: block; /* Make each element take its own line */
width: 90%; /* Adjust the width as needed */
margin-bottom: 15px; /* Space between elements */
padding: 5px; /* Padding inside each element */
}
.filter-section-header {
display: block;
font-size: 1rem;
font-weight: bold;
padding-left: 0!important;
margin-bottom: 8px!important;
width: fit-content;
}
label[for="proximity"] {
width: fit-content;
}
#proximity {
width: 150px;
}
#min,
#max,
label[for="min"],
label[for="max"] {
width: fit-content;
}
#min,
#max {
height: 30px;
width: 65px;
}
.filter-btn-group {
gap: 8px!important;
}
.btn-group > .btn {
padding: 0;
font-size: 0.9rem;
border-radius: 0.25rem;
width: 30px;
}
.btn-group > .lease {
width: 60px;
}
.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
border-top-right-radius: 0.25rem;
border-bottom-right-radius: 0.25rem;
}
.btn-group>.btn:nth-child(n+3) {
border-top-left-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.btn-group>.btn:not(:first-child) {
margin-left: 0;
}
.check, .check-label {
width: fit-content!important;
}
.check-label {
margin-right: 8px;
}
#amenities > button > svg {
position: relative;
top: -4px;
}
.modal-dialog {
margin: 0;
height: 100vh;
/* max-width: 300px; */
}
.modal-content {
height: 100%;
}
.modal-body {
overflow-y: auto;
}
/* Style for group headings/labels */
#sidebar h4 {
margin-top: 20px;
margin-bottom: 10px;
}
/* Additional styling as needed */
#toolbar {
height: 45px;
}
#toolbar .sort:hover {
transform: translateY(2px);
border: black solid 1px;
}
/* Style for House Listings */
.house-listing {
border: 1px solid #ddd;
margin: 10px;
padding: 10px;
border-radius: 5px;
display: flex; /* Adjust layout to flex to accommodate smaller image size */
align-items: center; /* Align items vertically */
}
.house-listing .card-body {
display: grid;
grid-template-columns: auto;
grid-template-rows: auto auto;
}
.house-listing .amenities {
display: grid;
row-gap: 5px;
grid-template-columns: auto auto;
grid-template-rows: repeat(4, auto);
font-size: 0.9rem;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.house-listing img {
height: auto; /* Adjust for thumbnail size */
width: 100%; /* Maintain aspect ratio */
border-radius: 5px;
margin-right: 15px; /* Add some space between image and text */
}
/* Additional styling adjustments as needed */
/* Medium devices (large phones, portrait tablets, 600px and up) */
@media only screen and (min-width: 600px) {
.form-signin > div{
width: 70vw;
}
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.form-signin > div{
width: 45vw;
}
.house-listing .card-body {
display: grid;
grid-template-columns: 2fr 1fr;
grid-template-rows: auto;
}
.house-listing .card-body .options > div {
padding-top: 35px;
}
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
.form-signin > div{
width: 30vw;
}
.featured-content {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: auto
}
#main-listing > #main-content {
flex: 1;
grid-column: 2 / 3;
}
#sidebar {
display: block!important;
grid-row: 1 / 3;
}
}