-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
95 lines (94 loc) · 1.75 KB
/
styles.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
.c-item{
height: 500px;
}
.c-img{
height: 100%;
object-fit: cover;
filter: brightness(0.3);
}
#searchInput{
background-color: black;
color: #e4a11b;
border: 2px solid #e4a11b;
border-radius: 10px;
padding: 10px;
margin-bottom: 20px;
width: 250px;
font-size: 13px;
/* display: flex; */
justify-content: center;
align-items: center;
}
#filterButtons{
margin-bottom: 20px;
}
#filterButtons button{
padding: 10px 15px;
margin: 5px;
font-size: 16px;
cursor: pointer;
border: none;
background-color: #e4a11b;
color: black;
border-radius: 5px;
transition: background-color 0.3s;
}
#filterButtons button:hover{
background-color: black;
color: #e4a11b;;
}
#propertyContainer{
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.c-property{
background-color: white;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 15px;
width: 260px;
text-align: left;
}
.c-property img{
object-fit: cover;
border-radius: 10px;
width: 100%;
height: auto;
margin-bottom: 10px;
}
.c-property button{
background-color: black;
color: #e4a11b;
border-radius: 10px;
}
.c-property button:hover{
background-color: #e4a11b;
color: black;
border-radius: 10px;
}
.c-property h2{
background-color: black;
color: #e4a11b;
text-align: center;
border-radius: 10px;
}
.prev-button{
padding: 3px;
border-radius: 8px;
background-color: black;
color:#e4a11b;
}
.page-button{
padding: 3px;
border-radius: 8px;
background-color: black;
color:#e4a11b;
}
.nxtpage-button{
padding: 3px;
border-radius: 8px;
background-color: black;
color:#e4a11b;
}