-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart_checkout.css
110 lines (95 loc) · 1.74 KB
/
cart_checkout.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
body{
background-color:white;
font-family:roboto;
color:#474747;
}
.title_cart th{
border-bottom:0.5px solid rgb(192, 186, 186);
border-collapse: collapse;
}
.cart_container
{
margin-top:10%;
display:grid;
grid-template-columns: 5fr 2fr;
}
.cart_container .product_details_container
{
width:100%;
}
.cart_container .product_details_container table
{
width:inherit;
}
.cart_container .product_details_container table td
{
padding-bottom:20px;
}
.cart_container .product_details_container table td{
border-bottom:0.5px solid rgb(192, 186, 186);
border-collapse: collapse;
}
.cart_container .product_details_container table td,th{
text-align:center;
}
.cart_container .product_details_container table {
height:120px;
}
.product_cart_table
{
border-top:1px solid #d3cbcb;
border-right:0;
}
.total_amount_details
{
border:1px solid #d3cbcb;
width:100%;
min-height:450px;
}
.total_amount_details table
{
width:90%;
height:100%;
margin:0 5%;
}
.total_amount_details .Apply_coupon
{
border: #474747 1px solid;
width:100%;
height:45px;
background-color:white;
color:#474747;
border-radius:3px;
}
.total_amount_details .Apply_coupon:hover
{
background-color:#7e7676;
color:white;
cursor:pointer;
border:0;
}
.checkout_button
{
width:100%;
height:50px;
color:white;
background-color:#cc324b;
border-radius:3px;
border:0;
}
.checkout_button:hover
{
color:black;
border:2px solid #cc324b;
background-color:white;
cursor:pointer;
}
.product_info .class_cart a{
color:#474747;
text-decoration:none;
margin:5px;
}
.product_info .class_cart a:hover
{
color:orange;
}