-
Notifications
You must be signed in to change notification settings - Fork 1
/
paymentnew.css
158 lines (157 loc) · 2.48 KB
/
paymentnew.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
color: #91e012;
}
body{
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container{
min-height: 100vh;
min-width: 100vw;
background-image: url('');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
display: flex;
justify-content: center;
align-items: center;
}
.left{
width: 25%;
font-weight: bold;
}
.left p{
padding: 30px 20px;
}
.methods{
padding: 10px 0;
}
.methods div{
padding: 7px 20px;
cursor: pointer;
font-size: 15px;
}
.methods div:hover{
box-shadow: 0 0 10px rgba(4, 180, 157, 0.196);
}
.methods div::after{
content: '';
display: inline-block;
color: rgb(9, 204, 211);
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
border-width: 4px 0 4px 4px;
border-left-color: var(--fondy-success);
margin-left: 10px;
}
.fa-solid{
margin-right: 10px;
font-size: 22px;
color: #9dda0f;
}
.center{
width: 50%;
border-right: 1px solid #9dda0f;
border-left: 1px solid #9dda0f;
height: 70vh;
}
.center a{
width: 100%;
padding: 15px;
display: flex;
justify-content: center;
align-items: center;
}
.right{
width: 25%;
}
.right p{
padding: 30px 20px;
font-weight: bold;
}
.details{
padding: 20px 20px;
}
.right a{
display: flex;
align-items: center;
justify-content: center;
padding: 15px;
}
.card-details{
padding: 20px 80px;
}
.card-details .c-number{
width: 100%;
border: 1px solid #9dda0f;
border-radius: 3px;
padding: 0 12px;
margin-top: 10px;
height: 50px;
display: flex;
align-items: center;
justify-content: space-between;
}
input{
border: none;
border-radius: 3px;
outline: none;
}
.c-details{
display: flex;
width: 100%;
justify-content: space-between;
margin: 20px 0;
}
.cc-exp{
border: 1px solid #9dda0f;
border-radius: 3px;
height: 50px;
margin-top: 10px;
padding: 12px;
width: 150px;
}
.c-details .cvv-box{
border: 1px solid #9dda0f;
margin-top: 10px;
padding: 12px;
height: 50px;
border-radius: 3px;
display: flex;
justify-content: space-between;
width: 108px;
}
.cc-cvv{
width: 60px;
}
.email input{
width: 100%;
border: 1px solid #aaa;
border-radius: 3px;
padding: 12px;
height: 50px;
margin-top: 10px;
}
button{
width: 100%;
border: none;
height: 50px;
border-radius: 3px;
margin-top: 30px;
font-size: 18px;
color: #e3f30a;
background-color: rgb(15, 198, 211);
}
button:hover{
background-color: #444;
color: white;
cursor: pointer;
}