-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpayments.css
142 lines (142 loc) · 2.47 KB
/
payments.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
.bg {
background-color: #6c7bee;
width: 480px;
overflow: hidden;
margin: 0 auto;
box-sizing: border-box;
padding: 40px;
font-family: "Roboto";
margin-top: 40px;
}
.card {
background-color: #fff;
width: 100%;
float: left;
margin-top: 40px;
border-radius: 5px;
box-sizing: border-box;
padding: 80px 30px 25px 30px;
text-align: center;
position: relative;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.card__success {
position: absolute;
top: -50px;
left: 145px;
width: 100px;
height: 100px;
border-radius: 100%;
background-color: #60c878;
border: 5px solid #fff;
}
.card__success i {
color: #fff;
line-height: 100px;
font-size: 45px;
}
.card__msg {
text-transform: uppercase;
color: #55585b;
font-size: 18px;
font-weight: 500;
margin-bottom: 5px;
}
.card__submsg {
color: #959a9e;
font-size: 16px;
font-weight: 400;
margin-top: 0px;
}
.card__body {
background-color: #f8f6f6;
border-radius: 4px;
width: 100%;
margin-top: 30px;
float: left;
box-sizing: border-box;
padding: 30px;
}
.card__avatar {
width: 50px;
height: 50px;
border-radius: 100%;
display: inline-block;
margin-right: 10px;
position: relative;
top: 7px;
}
.card__recipient-info {
display: inline-block;
}
.card__recipient {
color: #232528;
text-align: left;
margin-bottom: 5px;
font-weight: 600;
}
.card__email {
color: #838890;
text-align: left;
margin-top: 0px;
}
.card__price {
color: #232528;
font-size: 70px;
margin-top: 25px;
margin-bottom: 30px;
}
.card__price span {
font-size: 60%;
}
.card__method {
color: #d3cece;
text-transform: uppercase;
text-align: left;
font-size: 11px;
margin-bottom: 5px;
}
.card__payment {
background-color: #fff;
border-radius: 4px;
width: 100%;
height: 100px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
}
.card__credit-card {
width: 50px;
display: inline-block;
margin-right: 15px;
}
.card__card-details {
display: inline-block;
text-align: left;
}
.card__card-type {
text-transform: uppercase;
color: #232528;
font-weight: 600;
font-size: 12px;
margin-bottom: 3px;
}
.card__card-number {
color: #838890;
font-size: 12px;
margin-top: 0px;
}
.card__tags {
clear: both;
padding-top: 15px;
}
.card__tag {
text-transform: uppercase;
background-color: #f8f6f6;
box-sizing: border-box;
padding: 3px 5px;
border-radius: 3px;
font-size: 10px;
color: #d3cece;
}