forked from Ajay-bhagal/team_12
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.css
140 lines (135 loc) · 2.54 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
/* div{
border: 0.5px solid rgb(180, 176, 176);
} */
#heading{margin-top: 8%;}
body{
padding: 40px;
}
#parent {
display: grid;
grid-template-columns: 70% 30%;
}
.product {
border: 0.5px solid rgb(180, 176, 176);
margin: auto;
display: grid;
grid-template-columns: 30% 70%;
margin-bottom: 8px;
}
.product img{
margin-top: 10px;
margin-left: 10px;
height: 90%;
width: 90%;
}
#quantity_p {
margin: 1px;
}
#delete{
margin-top: 20px;
margin-bottom: 0px;
display: grid;
grid-template-columns: 80px 100px;
/* border: 0.5px solid rgb(180, 176, 176); */
}
#delivery {
display: grid;
grid-template-columns: repeat(2, 1fr);
}
.delivery_border {
padding-left: 10px;
margin-right: 20px;
border: 0.5px solid rgb(180, 176, 176);
}
#sell_price{
margin-top: -15px;
}
#savings{
margin-top: 5px;
}
#quantity{
width: 60px;
height: 30px;
text-align: center;
border-radius: 5px;
}
.red{
color: red;
}
.line{
text-decoration: line-through;
}
input{
text-align: center;
height: 40px;
border-radius: 8px;
border: 1px solid black;
}
button{
background-color: white;
border: 1px solid black;
height: 40px;
border-radius: 8px;
}
#payment{
text-decoration: none;
color: white;
}
#apply:hover{
background-color: whitesmoke;
}
/* copy part */
#price_details {
display: flex;
margin-left: 10px;
/* align-items: center;
justify-content: space-around; */
}
#price_details > div {
/* height: 80%; */
/* width: 60%; */
gap: 10px;
/* padding-top: 20px; */
}
#price_details > div > div:first-child {
/* height: 30%;
width: 80%; */
margin: auto;
margin-bottom: 20px;
}
#price_details > div > div:last-child {
/* height: 60%;
width: 80%; */
margin: auto;
}
#price_details > div > div:last-child > div {
/* background-color: brown; */
display: grid;
grid-template-columns: repeat(2, 1fr);
}
.border {
border: 0.5px solid rgb(180, 176, 176);
padding: 20px;
padding-top: 0px;
margin-top: 30px;
}
#discount {
padding: 0px;
text-align: center;
}
#sbmt_div {
text-align: center;
padding-left: 24%;
padding-bottom: 15px;
}
#submit {
height: 40px;
border: 0px;
border-radius: 8px;
width: 150px;
background-color: rgb(56, 55, 55);
color: white;
}
#submit:hover {
background-color: black;
}