-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.css
103 lines (89 loc) · 1.35 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
#main {
display: grid;
grid-template-columns: repeat(3, 30%);
grid-gap: 20px;
width: 60%;
grid-row-gap: 20px;
}
#main > div {
width: 100%;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
img {
width: 95%;
}
h1 {
font-size: 15px;
text-align: center;
}
h2 {
text-align: center;
}
#main > div > button {
background-color: #90a4ae;
color: white;
margin-left: 19%;
margin-bottom: 2%;
padding: 2%;
width: 60%;
}
#totalDiv {
width: 35%;
float: right;
padding-top: 0px;
padding: 0px 80px;
height: 450px;
box-sizing: border-box;
vertical-align: top;
}
#totalDiv > h1 {
font-size: 22px;
color: red;
text-align: left;
}
#priceBox {
width: 70%;
border: 1px solid black;
height: 20px;
padding: 10px;
font-size: 25px;
color: green;
}
#btn {
width: 25%;
padding: 8px;
margin-top: 20px;
font-size: 15px;
color: white;
background-color: #ff9800;
border: 0px;
}
input {
width: 45%;
padding: 5px;
font-size: 15px;
}
.totalPrice {
width: 70%;
border: 1px solid black;
height: 20px;
margin-top: 20px;
padding: 10px;
font-size: 25px;
color: green;
margin-bottom: 20px;
}
p{
margin-bottom: -10px;
margin-top: 20px;
font-size: 20px;
}
#buyNow {
width: 80%;
margin-top: 60px;
padding: 10px;
font-size: 20px;
background-color: #5C6BC0;
color: white;
border: 0px;
}