-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcartPage.css
More file actions
159 lines (131 loc) · 2.32 KB
/
cartPage.css
File metadata and controls
159 lines (131 loc) · 2.32 KB
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
body{
margin: 0;
}
#header{
background-color: #142357;
color: white;
display: flex;
justify-content: space-between;
}
.subhead{
display: flex;
gap: 10px;
align-items: center;
margin: 0px 20px;
}
.subhead a{
color: orange;
cursor: pointer;
text-decoration: none;
font-size: 1.5rem;
}
#midBody{
display: flex;
}
#orderSummary{
padding: 20px;
}
#subOrderSummary{
display: flex;
color: #fff;
border-radius: 15px;
background: #c4c4c4;
}
.order_summary_tab_active{
width: 200px;
display: inline-block;
padding: 12px 0;
background: #7BBB29;
border-right: 2px solid #fff;
border-radius: 15px;
text-align: center;
}
.billing_tab{
width: 400px;
display: inline-block;
padding: 12px 0;
text-align: center;
}
table{
border-bottom: 1px solid rgba(105, 105, 105, 0.301);
width: 100%;
color: rgba(0, 0, 255, 0.616);
}
#midBody{
padding: 0 150px;
}
#promocodePrice{
display: flex;
margin: 50px 10px;
justify-content: space-between;
}
#promocode{
border-radius: 15px;
background-color: rgba(128, 128, 128, 0.158);
width: 190px;
height: 80px;
padding: 15px;
}
#promocode h4{
color: blue;
font-size: 13px;
margin-left: 25px;
margin-top: 0px;
}
#promocode input{
border-radius: 14px;
border: none;
border-top: 1px solid grey;
padding: 5px;
}
#promocode button{
border: 2px solid white;
background-color: orange;
padding: 5px;
border-radius: 14px;
margin-top: 25px;
margin-left: 90px;
}
#subTotal{
display: flex;
gap: 20px;
width: 100%;
margin-right: 20px;
color: rgb(59, 55, 55);
}
#grandTotal{
display: flex;
gap: 20px;
margin-right: 20px;
}
#grandTotal p,#subTotal p{
border-bottom: 1px solid limegreen;
width: 80px;
margin-top: auto;
}
#buttons{
display: flex;
justify-content: space-between;
}
#btn1{
border: none;
background-color: orange;
padding: 15px;
border-radius: 15px;
color: white;
font-size: 16px;
font-weight: 600;
}
#btn2{
border: none;
background-color: rgba(0, 128, 0, 0.836);
padding: 15px;
border-radius: 15px;
color: white;
font-size: 16px;
font-weight: 600;
}
#table_body{
color: black;
font-size: 13px;
}