-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.css
124 lines (106 loc) · 1.94 KB
/
search.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
#filters{
/* border: 2px solid red; */
background-color: rgba(255, 255, 255, 0.6);
margin: 0.75rem;
padding: 1rem;
max-width: 30%;
min-width: 250px;
display: flex;
flex: 1;
flex-direction: column;
border-radius: 5px;
}
.stars{
display: flex;
flex-direction: column;
}
/* For the rating stars, class from https://fontawesome.com/ */
.checked {
color: orange;
}
div{
margin: 10px 5px;
}
h1 {
margin-left: 4px;
}
h4{
margin: 10px 0;
padding: 0;
}
.slider {
font-size: 14px;
}
form > div{
margin: 25px 0;
}
input[type=text], input[type=password], input[type=email], select {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
border:1px solid rgb(204,204,204);
box-sizing: border-box;
border-radius: 5px;
font-family: 'Inter', sans-serif;
font-size: 14px;
}
button {
background-color: rgb(234, 182, 118);
color: black;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
border-radius: 5px;
width: 50%;
margin: 5px;
}
button:hover {
opacity: 0.8;
}
button:active{
opacity: 0.5;
}
.buttonwrapper{
display: flex;
}
.container {
display: flex;
flex-direction: row;
height: 100vh;
}
.productwrapper {
flex: 1;
background-color: rgba(255, 255, 255, 0.6);
margin: 0.75rem;
padding: 1rem;
border-radius: 5px;
display: flex;
min-width: 190px;
flex-wrap: wrap;
justify-content: space-evenly;
overflow-y: scroll;
}
.product {
background-color: aliceblue;
border: 1px solid;
min-width: 45%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
box-shadow: 10px 10px 15px 0px rgba(0,0,0,0.1);
}
h3{
/* border: 1px solid; */
flex: 1;
max-height: 20%;
display: flex;;
justify-content: center;
}
p{
margin: 10px;
text-align: justify;
font-size: 14px;
}