-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.css
87 lines (77 loc) · 1.28 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
79
80
81
82
83
84
85
86
87
.payment{
width: 100%;
height: 100%;
background-color: #fff;
position: relative;
top: 0;
left: 0;
}
.topLogo img{
margin-top: 30px;
margin-left: 30px;
}
.paymentBox{
position: absolute;
left: 150px;
background-color: white;
width: 70%;
height: 580px;
padding: 2%;
}
#cardHead{
font-size: 20px;
font-weight: 400;
text-align: center;
margin-top: 20px;
}
#details{
margin: auto;
width: 60%;
padding: 5%;
line-height: 2;
}
#details #form{
display: flex;
flex-direction: column;
width: 80%;
margin: auto;
}
#details #form input{
border: none;
border-bottom: 1px solid #ccc;
padding: 2% 0;
margin-bottom: 2%;
font-size: 18px;
}
input:focus{
outline: none;
}
button{
width: 80%;
margin: auto;
padding: 2%;
font-size: 20px;
background: #00bcd4;
border: none;
color: #fff;
border-radius: 10px;
}
::placeholder{
color: #b36916;
}
@media only screen and (max-width: 400px){
.paymentBox{
position: absolute;
left: 20px;
width: 90%;
border-radius: 10px;
margin-top: 15px;
}
#details #form{
width: 100%;
margin: auto;
}
button{
width: 100%;
}
}