-
Notifications
You must be signed in to change notification settings - Fork 3
/
payment.css
124 lines (117 loc) · 2.11 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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
span>a{
color: gray;
text-decoration: none;
}
form {
width: 28%;
height: auto;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
/* border: 1px solid red; */
/* background-color:pink; */
margin: auto;
margin-top: 80px;
/* margin-left: 336px; */
padding-top: 44px;
border-radius: 20px;
padding-bottom: 55px;
/* display: flex;
justify-content: center; */
}
form>h2 {
text-align: center;
color:black;
margin-bottom: 44px;
/* margin-top: 250px */
}
form>input {
margin-top: 20px;
display: block;
margin: auto;
width: 72%;
height: 50px;
border: 1px solid grey;
/* margin:20px 0px 20px 50px; */
padding-left:15px ;
font-size:medium;
margin-top: 17px;
/* border: 0px; */
}
form>button {
display: block;
margin: auto;
width: 77%;
height: 55px;
margin-top: 33px;
text-align: center;
color: white;
background-color: rgb(253, 0, 93);
border: 0px;
font-size: medium;
margin-bottom: -5px;
}
#navbar{
width:100%;
height:80px;
display: grid;
grid-template-columns: 20% 30% 20%;
background-color: white;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
justify-content: space-between;
position: sticky;
top: 0px;
}
#left img {
width: 50px;
}
#left {
height: 80px;
display: flex;
align-items: center;
justify-content: center;
}
#left>div {
display: flex;
align-items: center;
}
#right {
height: 80px;
display: grid;
grid-template-columns: repeat(2, 1fr);
justify-content: center;
}
#right>div:nth-child(1) {
display: flex;
justify-content: right;
align-items: center;
margin-right: 5px;
}
#right>div:nth-child(1)>img {
width: 25%;
height: 40%;
}
#centre{
display: flex;
align-items: center;
justify-content: center;
color: gray;
}
#centre>span>span{
color:
#79d8cd;
text-decoration: underline;
}
#submit{
width: 325px;
background-color: #ff3f6c;
color: white;
/* font-weight: bold; */
}
#secure{
display: flex;
align-items: center;
}