-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpayment.css
More file actions
100 lines (99 loc) · 1.85 KB
/
payment.css
File metadata and controls
100 lines (99 loc) · 1.85 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
body {
font-family: proxima nova, sans-serif;
}
#payment-box {
/* border: 1px solid red; */
width: 40%;
margin: auto;
text-align: center;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#payment-upper {
/* border: 2px solid blue; */
padding: 20px;
}
#payment-middle {
/* border: 2px solid green; */
background-color: #fafafa;
padding: 20px;
}
#payment-bottom {
/* border: 2px solid pink; */
}
#payment-upper input[type="number"] {
padding: 15px;
max-width: 50px;
border-radius: 8px;
border: 1px solid;
margin-bottom: 30px;
}
#card {
border: 1px solid black;
background-color: white;
width: 90%;
margin: auto;
padding: 30px 0px 30px 0px;
border-radius: 12px;
margin-bottom: 30px;
}
#card input[type="number"] {
display: block;
margin: auto;
padding: 8px 150px;
margin-bottom: 20px;
}
#card button {
padding: 13px 205px;
border-radius: 8px;
background-color: #0069ff;
border: none;
color: white;
font-size: 15px;
font-weight: 700;
}
#labe {
margin-bottom: 10px;
text-align: left;
margin-left: 40px;
}
#payment-bottom p:first-child {
color: grey;
font-weight: 600;
}
#payment-bottom p:nth-child(2) {
font-size: small;
margin-bottom: 30px;
}
#payment-bottom p:nth-child(2) a {
font-size: small;
text-decoration: none;
}
#payment-button {
display: flex;
justify-content: space-around;
}
#payment-button button:first-child {
padding: 10px 100px;
border-radius: 20px;
border: 1px solid;
background-color: white;
margin-bottom: 30px;
}
#payment-button button:nth-child(2) {
padding: 10px 100px;
border-radius: 20px;
border: 1px solid;
background-color: #0069ff;
border: 1px solid #0069ff;
color: white;
font-weight: 700;
margin-bottom: 30px;
}
#payment-upper p:last-child {
color: grey;
font-size: 14px;
}
#payment-upper p:nth-last-child(3) {
color: grey;
font-size: 14px;
}