-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshippingAddress.css
executable file
·128 lines (116 loc) · 2 KB
/
shippingAddress.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
.image-logo img{
width: 15%;
margin: 3% 20%;
}
.shipping-address{
border: 1px solid grey;
width: 30%;
margin-left: 20%;
padding: 40px;
}
.shipping-layout{
font-size:16px;
gap: 10px;
color: #777;
font-weight: bold;
}
.shipping-layout>a{
font-size:16px;
gap: 10px;
color: #777;
text-decoration: none;
}
.information{
font-size:16px;
color:#333;
}
.express{
font-size:20px;
margin: 2% 20%;
font-weight: bold;
}
.payment-button button{
padding: 10px 30px;
margin: 10px;
}
.payment-button button:nth-child(1){
padding: 10px 30px;
margin: 10px;
color: white;
background-color:blue;
border: 0;
border-radius:5px;
cursor: pointer;
}
.payment-button button:nth-child(2){
padding: 10px 30px;
margin: 10px;
color: black;
background: #fad676; border: 0;
border-radius:5px;
cursor: pointer;
}
.payment-button button:nth-child(3){
padding: 10px 40px;
margin: 10px;
color: white;
background-color: black;
border: 0;
border-radius:5px;
cursor: pointer;
}
.payment-button button:hover:nth-child(1){
padding: 10px 30px;
margin: 10px;
color: white;
background-color:rgb(46, 46, 102);
border: 0;
border-radius:5px;
cursor: pointer;
}
.payment-button button:hover:nth-child(2){
padding: 10px 30px;
margin: 10px;
color: black;
background: #9b7612; border: 0;
border-radius:5px;
cursor: pointer;
}
.payment-button button:hover:nth-child(3){
padding: 10px 40px;
margin: 10px;
color: rgb(14, 8, 8);
background: #9b7612; border: 0;
border-radius:5px;
cursor: pointer;
}
#select{
padding: 10px 35px;
font-size:20px;
}
#states{
padding: 10px 33px;
font-size:20px;
margin-bottom: 20px;
}
#submit{
background-color: #889e7e;
cursor: pointer;
border: 0;
border-radius:5px;
padding: 15px 20px;
color: white;
}
#submit:hover{
background-color: #325f1d;
cursor: pointer;
border: 0;
border-radius:5px;
padding: 15px 20px;
color: white;
}
.return{
text-decoration: none;
color: #333;
margin-left: 20px;
}