-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.css
78 lines (75 loc) · 1.7 KB
/
payment.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
*{
margin: 0px;
padding: 0px;
}
#form{
padding-top: 5px;
width: 35%;
height: 400px;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
margin: auto;
margin-top: 100px;
background-color: #F4F7F3;
}
#form>h1{
text-align: center;
color: rgb(55, 45, 45);
margin-top: 20px;
}
.input{
width: 80%;
height: 40px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
border: 0px;
margin: auto;
margin-top: 30px;
margin-left: 45px;
border-radius: 10px;
padding-left: 10px;
}
#card{
width: 80%;
height: 40px;
margin: auto;
margin-top: 30px;
margin-left: 45px;
border-radius: 10px;
}
.option{
width: 30%;
height: 100%;
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
border: 0px;
margin: auto;
border-radius: 10px;
padding-left: 10px;
}
.cvv{
width: 29%;
height: 100%;
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
border: 0px;
margin: auto;
border-radius: 10px;
margin-left: 25.5px;
padding-left: 10px;
}
#submit{
width: 120px;
font-size: 40px;
cursor: pointer;
margin: auto;
margin-left: 180px;
margin-top: 50px;
padding: 10px 20px 10px 20px;
border-radius: 10px;
border: 0px;
color: white;
font-family: Poppins sans-serif;
font-weight: 700;
background-color:rgb(163, 180, 155);
}
#submit:hover{
background-color: black;
color: white;
}