-
Notifications
You must be signed in to change notification settings - Fork 2
/
mens.css
133 lines (129 loc) · 2.32 KB
/
mens.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: linear-gradient(
to right,
rgb(210, 238, 240),
rgb(241, 174, 231),
rgb(152, 152, 234)
);
}
.container {
display: grid;
}
.heading {
padding-top: 100px;
display: block;
font-family: "Montserrat", sans-serif;
font-weight: bold;
text-align: center;
}
.heading p {
margin: 10px auto;
padding: 0 16px;
}
.text {
margin-top: 80px;
margin-left: 0px;
font-size: 17px;
}
.box {
display: flex;
font-family: "Montserrat", sans-serif;
min-height: 100vh;
color: #555;
}
.products {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 20px;
}
.product {
box-shadow: 2px 2px 12px rgb(255, 253, 253);
margin-right: 20px ;
padding: 10px 10px 20px 10px;
text-align: center;
height: 100%;
}
.product:hover>img{
box-shadow: 2px 2px 14px rgb(82, 82, 82);
}
.product img {
object-fit: cover;
width: 100%;
height: 400px;
display: block;
}
.title {
text-align: center;
padding-top: 20px;
padding-bottom: 20px;
font-family: "Montserrat", sans-serif;
font-weight: bold;
text-transform: uppercase;
}
.product :hover {
cursor: pointer;
}
.product .qty {
text-align: center;
}
.product .button {
margin: 6px auto;
display: block;
width: 60%;
border: none;
text-align: center;
padding: 10px;
background-color: #3e628f;
color: white;
font-size: 18px;
cursor: pointer;
box-shadow: 3px 3px 0px rgb(17, 17, 18);
}
.product .button:active {
box-shadow: 0px 0px 0px white;
transform: translateY(3px);
}
.product .button i {
padding-left: 10px;
}
.filter {
margin: 0 20px;
}
#reset {
margin-left: 5rem;
border: 1px solid black;
}
#search {
margin-top: 10px;
width: 250px;
height: 50px;
margin-left: 8px;
}
.filter select {
width: 250px;
height: 30px;
margin-left: 8px;
margin-top: 10px;
}
#reset {
width: 80px;
height: 25px;
background-color: white;
border: none;
}
#filterby {
font-size: 15px;
margin-left: 10px;
margin-top: 10px;
}
#format {
font-size: 15px;
}
.filter-2 {
margin: 5px;
}