-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmens_product.css
158 lines (140 loc) · 2.71 KB
/
mens_product.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
#product-page-header {
width: 100%;
height: 50px;
border: 1px solid transparent;
display: flex;
align-items: center;
background: #ffffff;
border-bottom: 1px solid #dddddd;
}
.back-link {
font-family: sans-serif;
font-size: 12px;
letter-spacing: 0.4;
color: #2d2d2d;
text-decoration: none;
margin-left: 13px;
margin-right: 13px;
}
.arrow {
font-size: 10px;
}
#product-details {
width: 100%;
height: 190px;
background: #ffffff;
border: 1px solid transparent;
}
#product-page-heading-h1 {
font-family: sans-serif;
font-size: 24px;
letter-spacing: 1.4px;
font-weight: 700;
color: #000000;
text-align: center;
}
#product-detail-para {
font-family: sans-serif;
font-size: 14px;
letter-spacing: 0.4px;
color: #2d2d2d;
line-height: 24px;
text-align: center;
height: 100px;
padding-left: 10%;
padding-right: 10%;
}
#btn-main-div {
width: 100%;
height: 50px;
background-color: rgb(255, 255, 255);
border: 1px solid transparent;
display: flex;
justify-content: center;
align-items: center;
}
.product-page-btn {
background: #d2d2d2;
font-family: sans-serif;
font-size: 10px;
font-weight: 900;
color: #2d2d2d;
letter-spacing: 1.7px;
padding: 7px 10px;
border-radius: 25px;
text-decoration: none;
margin: 10px;
}
#filter-div {
width: 100%;
height: 80px;
background-color: #ffffff;
border: 1px solid transparent;
display: flex;
justify-content: space-evenly;
align-items: center;
border-top: 1px solid grey;
border-bottom: 1px solid grey;
}
select {
margin-top: 10px;
padding: 10px 50px;
border-top: 1px solid #808080;
border-bottom: 1px solid #808080;
border-left: transparent;
}
/* Product list container */
#product-list-container {
width: 100%;
height: fit-content;
border: 2px solid tomato;
}
#container {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 20px;
}
#p_main {
display: flex;
justify-content: space-between;
margin-left: 5px;
margin-right: 5px;
}
#container>div {
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
#product-image {
width: 100%;
border-bottom: 1px solid lightgrey;
}
#add-button {
display: flex;
justify-content: center;
margin: auto;
padding: 10px 80px;
border-radius: 50px;
background: #018849;
color: white;
font-weight: bold;
border: none;
margin-bottom: 10px;
}
#add-button:hover {
background: lightgrey;
border: 1px solid black;
color: black;
cursor: pointer;
}
#name-h1 {
/* background: black; */
font-family: sans-serif;
font-size: 16px;
font-weight: 500;
letter-spacing: 1.3;
color: #2d2d2d;
text-align: center;
line-height: 25px;
margin-top: 5px;
margin-bottom: 5px;
}