forked from Harshitr10/Raahi_endeavour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaymentPage.css
130 lines (114 loc) · 2.09 KB
/
paymentPage.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
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: #d3e9fc;
font-family: "Source Sans Pro", sans-serif;
}
.container {
max-width: 620px;
margin: 150px auto 100px;
}
.card-image {
width: 425px;
position: absolute;
top: -125px;
left: 100px;
z-index: 1;
}
.card-image-shadow {
position: absolute;
width: 410px;
height: 253px;
top: -113px;
left: 107px;
border-radius: 15px;
box-shadow: -5px 10px 32px 0px #000;
z-index: 0;
}
.form {
border-radius: 15px;
background-color: #fff;
min-width: 100%;
padding-top: 165px;
position: relative;
box-shadow: -5px 7px 32px 0px rgba(0, 0, 0, 0.35);
}
form {
padding: 15px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.flex-row {
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.flex-column {
width: 100%;
display: flex;
flex-direction: column;
flex-wrap: wrap;
}
input.card-number,
input.card-name,
input.card-cvv,
table {
width: 100%;
}
input {
padding: 10px;
height: 40px;
font-size: 18px;
border: 1px solid #ccc;
border-radius: 5px;
outline-color: #4183f5;
}
input:not(.card-cvv, .card-submit),
table {
margin-bottom: 20px;
}
label {
display: block;
}
.table-column select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
padding-left: 15px;
width: 45%;
height: 40px;
margin-right: 10px;
border: 1px solid #ccc;
border-radius: 5px;
background: url("https://img.icons8.com/external-those-icons-lineal-color-those-icons/24/000000/external-arrow-arrows-those-icons-lineal-color-those-icons-1.png");
background-size: 15px;
background-repeat: no-repeat;
background-position-x: 125px;
background-position-y: center;
font-size: 18px;
outline-color: #4183f5;
}
.table-column:last-child {
width: 40%;
}
.card-submit {
width: 100%;
margin: 0 auto;
color: #fff;
font-size: 18px;
height: 50px;
border: none;
border-radius: 5px;
background-color: #2364d2;
transition: background-color 250ms ease-in-out;
}
.card-submit:hover {
background-color: #4183f5;
}