-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinnerPage.css
110 lines (100 loc) · 1.98 KB
/
innerPage.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
#heading{
width:80%;
margin: auto;
margin-top: 60px;
color: rgb(24, 24, 24);
}
#optionsForSort{
width:80%;
margin: auto;
padding-top: 10px;
padding-bottom : 15px;
background-color: white;
display: flex;
gap: 1.4% ;
border-bottom: 1px solid rgba(56, 55, 55, 0.479);
position: sticky;
top:0;
}
#container{
width: 80%;
display: grid ;
grid-template-columns: repeat(4, 24%);
/* border: 1.5px solid red; */
margin: auto;
column-gap : 1.4%;
row-gap : 20px;
font-family: Lato,sans-serif;
}
#optionsForSort > select{
width : 33.33% ;
height: 55px;
padding: 10px;
border-radius: 6px;
padding-right: 10px;
font-size: 15px;
}
select option {
margin: 40px;
background: rgba(0, 0, 0, 0.3);
color: #fff;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}
#maindiv {
height: 300px ;
box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
border-radius: 8px;
line-height: 15px;
padding: 2%;
color:rgba(41, 40, 40, 0.904);
}
#maindiv:hover{
box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
cursor: pointer;
}
#picture{
width: 45%;
height: 55%;
margin: auto;
margin-left: 25%;
margin-bottom: 8%;
border-top-right-radius: 8px;
border-top-left-radius: 8px;
}
p{
margin:0;
padding:0;
line-height: 15px;
margin-left : 10px;
margin-right : 10px;
}
#nameofprod{
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
font-size: 14px;
font-weight: 500;
color : black;
}
#brandofprod{
font-size: 12px;
font-weight: 500;
}
#sub1div{
display: flex;
justify-content: space-between;
font-size: 12px;
margin-top: 5%;
padding-right: 4%;
}
#cost{
font-size: 14px;
margin-top: 25%;
font-weight: 700;
}
#div2{
display:flex ;
}