170 lines
2.5 KiB
SCSS
170 lines
2.5 KiB
SCSS
|
.donate-form input,
|
||
|
.donate-form label,
|
||
|
.donate-form .btn {
|
||
|
font-family: Muller, Arial, Helvetica, sans-serif;
|
||
|
border: solid 1px #595959;
|
||
|
border-radius: 3px;
|
||
|
font-size: 16px;
|
||
|
height: 39px;
|
||
|
line-height: 1.8;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.donate-form input {
|
||
|
&::-webkit-outer-spin-button,
|
||
|
&::-webkit-inner-spin-button {
|
||
|
appearance: none;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
&::placeholder,
|
||
|
&:focus {
|
||
|
text-align: center;
|
||
|
color: #000;
|
||
|
}
|
||
|
|
||
|
&:focus {
|
||
|
&::placeholder {
|
||
|
opacity: 0;
|
||
|
transition: opacity 0.2s ease;
|
||
|
}
|
||
|
|
||
|
box-shadow: inset 0 0 0 3px #000;
|
||
|
}
|
||
|
|
||
|
&:valid,
|
||
|
&:checked + label {
|
||
|
box-shadow: inset 0 0 0 3px #000;
|
||
|
border-color: #000;
|
||
|
font-weight: 700;
|
||
|
}
|
||
|
|
||
|
&[type='number'] {
|
||
|
appearance: textfield;
|
||
|
}
|
||
|
|
||
|
&[type='radio'] {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.btn {
|
||
|
cursor: pointer;
|
||
|
flex: 1;
|
||
|
padding: 5px 10px;
|
||
|
text-align: center;
|
||
|
white-space: nowrap;
|
||
|
|
||
|
@include media-breakpoint-down(sm) {
|
||
|
&:last-of-type {
|
||
|
margin-right: 0 !important;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.btn-group {
|
||
|
input {
|
||
|
&:first-child + .btn {
|
||
|
border-top-right-radius: 0;
|
||
|
border-bottom-right-radius: 0;
|
||
|
}
|
||
|
|
||
|
&:not(:first-child) + .btn {
|
||
|
border-top-left-radius: 0;
|
||
|
border-bottom-left-radius: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.payment-type {
|
||
|
width: 50%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.donate-buttons-container {
|
||
|
display: flex;
|
||
|
flex: 1;
|
||
|
justify-content: space-between;
|
||
|
|
||
|
@include media-breakpoint-down(sm) {
|
||
|
flex-wrap: wrap;
|
||
|
}
|
||
|
|
||
|
input,
|
||
|
label {
|
||
|
margin: 0 8px;
|
||
|
|
||
|
@include media-breakpoint-down(sm) {
|
||
|
margin-bottom: 1em;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
input {
|
||
|
&:first-child,
|
||
|
&:first-child + label {
|
||
|
margin-left: 0;
|
||
|
}
|
||
|
|
||
|
&:last-child,
|
||
|
&:last-child + label {
|
||
|
margin-right: 0;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.donate-input {
|
||
|
@include media-breakpoint-down(sm) {
|
||
|
flex: 1 100%;
|
||
|
margin: 0 !important;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.send-btn {
|
||
|
border: 1px solid #000;
|
||
|
background-color: #000;
|
||
|
color: #fff;
|
||
|
display: block;
|
||
|
font-weight: 700;
|
||
|
line-height: 1.8;
|
||
|
letter-spacing: 0.05em;
|
||
|
text-transform: uppercase;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.payment-choose {
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.form-group:not(:first-child) {
|
||
|
margin-top: 20px;
|
||
|
}
|
||
|
|
||
|
.discours-help .modalwrap__inner {
|
||
|
max-width: 500px;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
|
||
|
.payment-form {
|
||
|
padding: 0 !important;
|
||
|
|
||
|
.button {
|
||
|
display: block;
|
||
|
padding-bottom: 1.5rem;
|
||
|
padding-top: 1.5rem;
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.delimiter-container {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.delimiter {
|
||
|
left: 100%;
|
||
|
line-height: 1;
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
transform: translate(-50%, calc(-50% - 0.8rem));
|
||
|
}
|
||
|
*/
|