-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearchpage_style.css
More file actions
147 lines (145 loc) · 3.31 KB
/
searchpage_style.css
File metadata and controls
147 lines (145 loc) · 3.31 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
/*Tab start*/
section .tab{
padding: 20px 10px;
}
section .tab .search_field{
height: 45px;
width: 300px;
font-size: 20px;
}
section .tab .search_btn{
background-color: white;
height: 45px;
width: 100px;
font-size: 17px;
border-radius: 5px;
border: 1px solid;
}
/*Tab end*/
/*Search Results start*/
.searchresults_header{
padding: 5px 10px;
}
.searchresults_list{
display: grid;
grid-template-columns: repeat(auto-fit,25rem);
gap: 4.5rem;
align-items: flex-start;
justify-content: center;
padding-right: 20px;
padding-left: 20px
}
.searchresults_list .result_box{
background-color: white;
box-shadow: 0 0 12px 0 rgb(0 0 0 / 15%);
border-radius: 7px;
cursor: pointer;
}
/*Thumbnail image start*/
.searchresults_list .result_box .thumb{
height: 14rem;
position: relative;
}
.searchresults_list .result_box .thumb img{
height: 100%;
width: 100%;
top: 0px;
margin: 0;
border-radius: .5rem;
size-adjust: cover;
}
/*Thumbnail image end*/
/*Save button start*/
.searchresults_list .result_box .box .thumb .save{
position: absolute;
top: 1rem; right: 1rem;
}
.searchresults_list .result_box .thumb .save button{
position: absolute;
right: 0rem;
background-color: transparent;
padding: .7rem 1rem;
font-size: 2.8rem;
cursor: pointer;
border: 0;
z-index: 1;
}
.searchresults_list .result_box .thumb .save button svg{
height: 45px;
width: 45px;
}
.searchresults_list .result_box .thumb .save button svg .HeartIcon_fill{
fill:transparent
}
.searchresults_list .result_box .thumb .save svg:hover{
fill: rgb(240, 4, 4);
}
.searchresults_list .result_box .thumb .save .HeartIcon_fill:hover{
fill: rgb(240, 4, 4);
}
/*Save button end*/
/*Description start*/
.searchresults_list .result_box .info_container{
padding: 2rem 2rem 10px;
padding-top:0;
}
.searchresults_list .result_box .prix {
font-size: 1.5rem;
text-overflow: ellipsis;
overflow-x: hidden;
color: #333;
margin-top: 7px;
font-weight: 600;
}
.searchresults_list .result_box .prix h3{
margin-bottom: 0px;
}
/*Flex container start*/
.searchresults_list .result_box .flex{
display: block;
padding: 2px;
overflow: hidden;
text-overflow: ellipsis;
height: 25px;
white-space: nowrap;
color: #afa7a7;
}
.searchresults_list .result_box .flex span{
margin-top: 5px;
}
.searchresults_list .result_box span{
margin-right: 1rem;
padding: .5 1.5rem;
}
/*Flex container end*/
.searchresults_list .result_box .info_container .text h4{
margin-bottom: 5px;
font-size: 19px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.searchresults_list .result_box .info_container .text p{
overflow: hidden;
text-overflow: ellipsis;
height: 20px;
}
/*Description end*/
/*Button start*/
.btn.search{
display: flex;
justify-content: end;
padding-bottom: 15px;
}
.btn.search a.btn{
display: flex;
justify-content: center;
align-items: center;
width: 120px;
height: 30px;
border-radius: 5px;
margin-right: 30px;
font-size:18px;
}
/*Button end*/
/*Search Results end*/