-
Notifications
You must be signed in to change notification settings - Fork 0
/
donation.css
153 lines (130 loc) · 2.94 KB
/
donation.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
142
143
144
145
146
147
148
149
150
151
152
153
.mainn{
display:flex;
justify-content: center;
align-items: center;
}
.modal {
width: fit-content;
height: fit-content;
background: #FFFFFF;
box-shadow: 0px 187px 75px rgba(0, 0, 0, 0.01), 0px 105px 63px rgba(0, 0, 0, 0.05), 0px 47px 47px rgba(0, 0, 0, 0.09), 0px 12px 26px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
border-radius: 26px;
max-width: 450px;
text-align: center;
}
.form {
display: flex;
flex-direction: column;
gap: 20px;
padding: 20px;
}
.payment--options {
width: calc(100% - 40px);
display: grid;
grid-template-columns: 33% 34% 33%;
gap: 20px;
padding: 10px;
}
.payment--options button {
height: 55px;
background: #F2F2F2;
border-radius: 11px;
padding: 0;
border: 0;
outline: none;
}
.payment--options button svg {
height: 18px;
}
.payment--options button:last-child svg {
height: 22px;
}
.separator {
width: calc(100% - 20px);
display: grid;
grid-template-columns: 1fr 2fr 1fr;
gap: 10px;
color: #8B8E98;
margin: 0 10px;
}
.separator > p {
word-break: keep-all;
display: block;
text-align: center;
font-weight: 600;
font-size: 11px;
margin: auto;
}
.separator .line {
display: inline-block;
width: 100%;
height: 1px;
border: 0;
background-color: #e8e8e8;
margin: auto;
}
.credit-card-info--form {
display: flex;
flex-direction: column;
gap: 15px;
}
.input_container {
width: 100%;
height: fit-content;
display: flex;
flex-direction: column;
gap: 5px;
}
.split {
display: grid;
grid-template-columns: 4fr 2fr;
gap: 15px;
}
.split input {
width: 100%;
}
.input_label {
font-size: 10px;
color: #8B8E98;
font-weight: 600;
}
.input_field {
width: auto;
height: 40px;
padding: 0 0 0 16px;
border-radius: 9px;
outline: none;
background-color: #F2F2F2;
border: 1px solid #e5e5e500;
transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
}
.input_field:focus {
border: 1px solid transparent;
box-shadow: 0px 0px 0px 2px #242424;
background-color: transparent;
}
.purchase--btn {
height: 55px;
background: #F2F2F2;
border-radius: 11px;
border: 0;
outline: none;
color: #ffffff;
font-size: 13px;
font-weight: 700;
background: linear-gradient(180deg, #363636 0%, #1B1B1B 50%, #000000 100%);
box-shadow: 0px 0px 0px 0px #FFFFFF, 0px 0px 0px 0px #000000;
transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
}
.purchase--btn:hover {
box-shadow: 0px 0px 0px 2px #FFFFFF, 0px 0px 0px 4px #0000003a;
}
/* Reset input number styles */
.input_field::-webkit-outer-spin-button,
.input_field::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.input_field[type=number] {
-moz-appearance: textfield;
}