-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpayment.css
More file actions
111 lines (110 loc) · 2.14 KB
/
payment.css
File metadata and controls
111 lines (110 loc) · 2.14 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
101
102
103
104
105
106
107
108
109
110
111
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root{
--text-color :#7580b5;
}
body{
display: flex;
min-height: 100vh;
background-color: #4e567d;
align-items: center;
justify-content: center;
}
.container{
width: 350px;
background: #180148;
padding: 30px;
position: relative;
}
h6{
font-size: 20px;
color: var(--text-color);
}
span{
position: absolute;
right: 34px;
top: 28px;
font-size: 18px;
color: var(--text-color);
}
h1{
padding: 30px 0px;
font-size: 40px;
color: var(--text-color);
}
form label{
color: var(--text-color);
text-transform: uppercase;
position: relative;
font-size: 10px;
word-spacing: 4px;
}
form select{
width: 100%;
outline: none;
border:none;
border-bottom: 1px solid rgb(223, 223, 223);
text-transform: capitalize;
padding-top: 3px;
color: var(--text-color);
padding-bottom: 3px;
font-size: 18px;
margin-left: -3px;
margin-bottom: 20px;
background-color:transparent;
}
form #cardno{
width: 100%;
outline: none;
border:none;
border-bottom: 1px solid rgb(223, 223, 223);
padding-top: 5px;
margin-bottom: 20px;
padding-bottom: 5px;
padding-right: 30px;
color: var(--text-color);
font-size: 18px;
background-color:transparent;
}
form label img{
position: absolute;
left: 264px;
top:17px;
width: 20px;
height: 20px;
}
.float{
display: flex;
}
#validtill, #cvv{
border: none;
border-bottom: 1px solid rgb(207, 207, 207);
outline: none;
width: 130px;
padding-top: 14px;
margin-bottom: 56px;
color: var(--text-color);
background-color:transparent;
font-size: 18px;
}
p{
margin-left: 25px;
margin-bottom: 56px;
margin-top: -20px;
font-size: 16px;
text-transform: none;
}
button{
border: none;
outline: none;
background: #7f87b3;
color: rgb(31, 30, 30);
width: 100%;
height:40px;
padding: 10px;
text-align: center;
font-weight: bold;
}