-
Notifications
You must be signed in to change notification settings - Fork 1
/
product_details.css
103 lines (81 loc) · 1.43 KB
/
product_details.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.scontainer{
margin: 0px 30px 0px 30px;
}
#search input{
padding-left: 3rem;
}
#search button{
position: relative;
right: 15rem;
}
nav .dropdown button{
border: none;
text-decoration: none;
background:white;
}
.dropdown{
margin-top: 0.5rem;
font-size: 18px;
}
.banner{
width: 100%;
background-image: url('headphones4.jpg');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
height: 13rem;
}
.filters{
display: flex;
gap: 20px;
}
.item img{
margin-bottom: 10px;
width: 220px;
height: 200px;
}
.content {
font-weight: 600;
width: 220px;
}
.item{
line-height: 10px;
}
.items{
display: flex;
justify-content: space-between;
}
.banner h1{
color: rgb(36, 82, 54);
}
.filters{
display: flex;
}
#sortby{
width: 100%;
display: flex;
justify-content: end;
}
.item img{
border-radius: 20px;
box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.filters button{
color: black;
border: none;
background-color: rgb(214, 211, 211);
}
.item button:hover{
background-color: rgb(36, 82, 54);
}
nav ul li a{
font-weight: 700 !important;
}
.item:hover{
transform: scale(1.02);
}