-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.css
164 lines (143 loc) · 2.78 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
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
159
160
161
162
163
164
body {
margin: 0px;
padding: 0px;
font-family: 'Roboto', sans-serif;
background-color: #f2f2f2;
}
header {
width: 100%;
height: 60px;
padding: 0px;
margin: 0px;
display: flex;
align-items: center;
justify-content: start;
}
header button {
margin: 0px;
padding: 0px;
height: 60px;
width: 100px;
border: none;
background-color: transparent;
font-size: 15px;
}
header button:hover {
background-color: #444444;
color: white;
transition: 0.6s;
}
header p {
margin: 0px 0px 0px 10px;
padding: 0px;
font-size: 18px;
font-weight: 600;
}
#parent {
height: 80vh;
width: 100%;
margin: 0px;
padding: 0px;
display: flex;
align-items: center;
justify-content: center;
}
#left {
height: 100%;
width: 60%;
margin: 0px;
padding: 0px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #f2f2f2;
}
#right {
height: 100%;
width: 40%;
margin: 0px;
padding: 0px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#amount,
#right h2,
button,
input {
margin: 0px 0px 10px 0px;
width: 80%;
height: 50px;
padding: 0px;
}
#right h2 {
font-size: 2rem;
}
#right input {
background-color: transparent;
border: 1px solid grey;
padding: 0px 0px 0px 10px;
outline: none;
}
#amount {
display: flex;
align-items: center;
justify-content: space-between;
}
#amount p {
margin: 0px;
padding: 0px;
}
#right button {
border: none;
outline: none;
background-color: #ff3b21;
color: #fff;
font-size: 1.2rem;
cursor: pointer;
transition: all 0.3s ease;
}
#productp {
height: 100px;
width: 92%;
padding: 0px;
margin: 10px 0px 0px 0px;
background-color: #f2f2f2;
display: flex;
align-items: center;
justify-content: space-between;
border: 1px solid grey;
}
#productdetails {
width: 30%;
}
#productdetails p {
margin: 10px 0px 10px 20px;
padding: 0px;
}
#fillers {
width: 30%;
margin: 0px;
padding: 0px;
}
#fillers p {
margin: 10px 0px 10px 20px;
padding: 0px;
}
#image {
width: 70px;
margin: 0px;
padding: 0px;
display: flex;
align-items: center;
justify-content: center;
}
#image img {
margin: 0px;
padding: 0px;
width: 50px;
height: 70px;
object-fit: cover;
}