-
Notifications
You must be signed in to change notification settings - Fork 0
/
paypage.css
81 lines (65 loc) · 1.09 KB
/
paypage.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
/*payment start*/
header{
width:100vw;
min-height: 100vh;
background:white;
font-size: 1.2rem;
display: flex;
justify-content: center;
align-items: center;
}
.container{
background: #76448A;
max-width: 800px;
min-height: 500px;
display: flex;
justify-content: space-between;
align-items: flex-start;
padding: 0.5rem 1.5rem;
margin-left: 300px;
margin-top: 100px;
}
.left{
flex-basis:50%;
}
.right{
flex-basis: 50%;
}
.mainForm{
display: flex;
gap: 100px;
}
form{
padding:1rem;
}
form input[type="text"]{
width:100%;
padding:0.5rem 0.7rem;
margin:0.5rem 0;
outline:none;
}
#zip{
display:flex;
margin-top: 0.5rem;
}
#zip select{
padding:0.5rem 0.7rem;
}
#zip input[type="number"]{
padding:0.5rem 0.7rem;
margin-left:5px;
}
button[type="submit"]{
width:100%;
padding:0.7rem 1.5rem;
background:#34495e;
color:white;
border:none;
outline:none;
margin-top:1rem;
cursor:pointer;
}
button[type="submit"]:hover{
background: #2e3e50;
}
/*payment end*/