forked from nikhil-pillare/GULMOHAR-flower_shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.css
141 lines (111 loc) · 1.93 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
header{
width: 100vw;
min-height: 100vh;
/* background: #34495E; */
font-size: 1.2rem;
display: flex;
justify-content: center;
align-items: center;
}
.container{
background:rgb(241, 239, 239);
max-width: 800px;
min-height: 500px;
display: flex;
justify-content: space-between;
align-items: flex-start;
padding: 0.5rem 1.5rem;
}
.left{
flex-basis: 30%;
}
.right{
flex-basis: 30%;
}
form{
padding: 1rem;
}
form input[type="text"]{
width: 100%;
padding: 0.5rem 0.7rem;
margin: 0.5rem 0;
outline: none;
}
#Pin-code{
display: flex;
margin-top: 0.5rem;
}
.sec{
margin-left: 10px;
}
#Pin-code select{
padding: 0.5rem 0.7rem;
}
#Pin-code input[type="number"]{
padding: 0.5rem 0.7rem;
}
.right img{
width: 100%;
height: 45px;
}
.btn{
width: 100%;
padding: 0.7rem 1.5rem;
background: green;
color: white;
border: none;
outline: none;
margin-top: 2.2rem;
cursor: pointer;
}
@media only screen and (max-width: 770px){
.container{
flex-direction: column;
}
}
/* Estilos esteticos no necesarios */
* {
font-family: Arial, Helvetica, sans-serif;
}
.content {
height: 100vh;
display: flex;
justify-content: center;
flex-direction: column;
}
p {
text-align: center;
font-size: 1.5rem;
margin-top: 0;
}
.text {
font-size: 1rem;
}
.text span:last-child {
font-family: 'Courier New', Courier, monospace;
font-size: 1.2rem;
font-weight: bold;
color: #0d6efd;
}
.block {
display: block;
}
/* .btn {
color: #fff;
background-color: #0d6efd;
border-color: #0d6efd;
font-size: 1.5rem;
padding: 0.5rem 2rem;
margin: 0 auto 2rem;
border: 0;
} */
/* .btn:active,
.btn:hover {
color: #fff;
background-color: #0b5ed7;
border-color: #0a58ca;
}
input {
width: 15rem;
margin: 0 auto 2rem;
} */