-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpayment.css
More file actions
139 lines (121 loc) · 2.38 KB
/
Copy pathpayment.css
File metadata and controls
139 lines (121 loc) · 2.38 KB
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
body {
font-family: 'Roboto', sans-serif!important;
margin:0;
padding:0;
box-sizing: border-box;
}
.mainscreen
{
min-height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
background-color: #DFDBE5;
background-image: url("https://wallpaperaccess.com/full/3063067.png");
color:#963E7B;
}
.card {
width: 60rem;
margin: auto;
background: white;
position:center;
align-self: center;
top: 50rem;
border-radius: 1.5rem;
box-shadow: 4px 3px 20px #3535358c;
display:flex;
flex-direction: row;
}
.leftside {
background: #030303;
width: 25rem;
display: inline-flex;
align-items: center;
justify-content: center;
border-top-left-radius: 1.5rem;
border-bottom-left-radius: 1.5rem;
}
.product {
object-fit: cover;
width: 20em;
height: 20em;
border-radius: 100%;
}
.rightside {
background-color: #ffffff;
width: 35rem;
border-bottom-right-radius: 1.5rem;
border-top-right-radius: 1.5rem;
padding: 1rem 2rem 3rem 3rem;
}
p{
display:block;
font-size: 1.1rem;
font-weight: 400;
margin: .8rem 0;
}
.inputbox
{
color:#030303;
width: 100%;
padding: 0.5rem;
border: none;
border-bottom: 1.5px solid #ccc;
margin-bottom: 1rem;
border-radius: 0.3rem;
font-family: 'Roboto', sans-serif;
color: #615a5a;
font-size: 1.1rem;
font-weight: 500;
outline:none;
}
.expcvv {
display:flex;
justify-content: space-between;
padding-top: 0.6rem;
}
.expcvv_text{
padding-right: 1rem;
}
.expcvv_text2{
padding:0 1rem;
}
.button{
background: linear-gradient(
135deg
, #753370 0%, #298096 100%);
padding: 15px;
border: none;
border-radius: 50px;
color: white;
font-weight: 400;
font-size: 1.2rem;
margin-top: 10px;
width:100%;
letter-spacing: .11rem;
outline:none;
}
.button:hover
{
transform: scale(1.05) translateY(-3px);
box-shadow: 3px 3px 6px #38373785;
}
@media only screen and (max-width: 1000px) {
.card{
flex-direction: column;
width: auto;
}
.leftside{
width: 100%;
border-top-right-radius: 0;
border-bottom-left-radius: 0;
border-top-right-radius:0;
border-radius:0;
}
.rightside{
width:auto;
border-bottom-left-radius: 1.5rem;
padding:0.5rem 3rem 3rem 2rem;
border-radius:0;
}
}