-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayments.css
67 lines (63 loc) · 984 Bytes
/
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
#paycontainer {
margin-top: 100px;
height: 400px;
width: 50%;
color: black;
padding: 20px;
}
.fo {
font-size: 25px;
margin-right: 30px;
margin-left: 10px;
margin-top: 10px;
color: black;
}
.name,
.card,
.cvv,
.expiery,
.phone {
height: 40px;
width: 80%;
margin-top: 20px;
font-size: 16px;
border-radius: 5px;
color: black;
border: 1px solid #9e9999;
/* padding-left: 10px; */
}
.name {
margin-left: 30px;
padding-left: 10px;
}
.cvv {
margin-left: 50px;
padding-left: 10px;
}
.expiery {
margin-left: 18px;
/* padding-left: 10px; */
}
.phone {
margin-left: 20px;
}
.gotp{
margin-top: 40px;
height: 40px;
width: 20%;
margin-left: 20%;
background-color: black;
border-radius: 5px;
border: 1px solid #eaeaea;
border: 1px solid black;
color: white;
}
.gotp:hover{
background-color: #9a9a9a;
color: white;
font-weight: 550;
font-size: 15px;
}
*{
font-family: Verdana, Geneva, Tahoma, sans-serif;
}