-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.css
108 lines (89 loc) · 1.76 KB
/
cart.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
*{
box-sizing: border-box;
}
body{
font-family: -apple-system, "Helvetica Neue", sans-serif, "Mier Book";
font-size: 16px;
font-weight: 400;
letter-spacing: 0.5px;
line-height: 1.5;
text-align: left;
}
#header {
position: sticky;
top: 0;
width: 100%;
background-color: #fff;
z-index: 999;
}
#upper{
width: 100%;
display: flex;
justify-content: space-around;
margin: auto;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
/* padding: 10px 10px; */
/* margin-right: 10px; */
}
#upper img{
width: 15%;
}
#upper a>h4{
color: black;
}
#search{
width: 40%;
height: 30%;
padding: 10px;
margin-top: 20px;
}
/* ---------------------------------------CART DATA------------------------------------------- */
#container{
padding-top: 30px;
width: 70%;
display: flex;
margin: auto;
}
#container h4{
color: rgb(51, 51, 51);
font-style: normal;
font-weight: 600;
font-size: 18px;
text-align: left;
line-height: 24px;
font-family: "Mier demi";
margin: 0px;
padding: 0px 12px 0px 0px;
}
#cart_div{
padding-top: 30px;
width: 50%;
height: 400px;
overflow-y: scroll;
scrollbar-width: none; /* FOR FIREFOX BROWSER*/
}
/* FOR OTHER BROWSERS */
::-webkit-scrollbar {
width: 0;
height: 0;
background-color: transparent;
}
#cart_div img{
border-radius: 10px;
width: 80%;
}
#price_detail h4{
color: rgb(51, 51, 51);
font-style: normal;
font-weight: 600;
font-size: 18px;
text-align: left;
line-height: 24px;
font-family: "Mier demi";
margin: 0px;
padding: 0px 12px 0px 0px;
}
#Price_detail div{
display: flex;
justify-content: space-between;
}