-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.css
77 lines (70 loc) · 1.17 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
*{padding:0; margin:0; box-sizing: border-box; font-family:sans-serif;}
header{
width: 100vw;
min-height: 100vh;
background: #34495e;
font-size: 1.2rem;
display: flex;
justify-content: center;
align-items: center;
}
.container{
background: white;
max-width: 800px;
min-height: 450px;
display: flex;
justify-content:space-between;
align-items: flex-start;
padding: 0.5rem 1.5rem;
}
.left{
flex-basis: 50%;
}
.right{
flex-basis: 50%;
}
form{
padding: 1rem;
}
h3{
margin-top: 1rem;
color:#2c3e50;
}
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;
}
input[type="submit"]{
width: 100%;
padding: 0.7rem 1.5rem;
background: #34495e;
color: white;
border: none;
outline: none;
margin-top: 1rem;
cursor: pointer;
}
input[type="submit"]:hover{
background: #2c3e50;
}
@media only screen and (max-width: 770px){
.container{
flex-direction: column;
}
body{
overflow-x: hidden;
}
}