mirror of
https://codeberg.org/angestoepselt/refund-form.git
synced 2025-05-24 14:46:16 +00:00
85 lines
No EOL
1.1 KiB
CSS
85 lines
No EOL
1.1 KiB
CSS
.form-leistung {
|
|
width: calc(100% + 25px);
|
|
left: 0;
|
|
right: -25px;
|
|
padding-right: 25px;
|
|
}
|
|
|
|
#form-leistung .btn-minus {
|
|
display: none !important
|
|
}
|
|
|
|
.btn-plus,
|
|
.btn-minus {
|
|
width: 22px;
|
|
height: 22px;
|
|
border: 1px solid #cfd4da;
|
|
border-radius: 3px;
|
|
padding: 0px 0 0 2px;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
display: block;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.btn-minus {
|
|
right: 0;
|
|
top: calc(50% - 11px);
|
|
padding: 0;
|
|
background: white;
|
|
}
|
|
|
|
@media (min-width: 1280px) {
|
|
.btn-minus {
|
|
display: none;
|
|
}
|
|
|
|
.form-leistung:hover .btn-minus {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
hr {
|
|
width:100%; border: 1px solid black;
|
|
}
|
|
|
|
#form-iban {
|
|
display: none;
|
|
}
|
|
|
|
#html {
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
#html span {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#html > div {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
#html .leistungen {
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
#html .leistungen span {
|
|
display: block;
|
|
margin-top: 1.5rem;
|
|
}
|
|
|
|
#html #betrag div,
|
|
#html #gesamt {
|
|
text-align: right;
|
|
}
|
|
|
|
@media print {
|
|
.no-print{
|
|
display: none;
|
|
}
|
|
hr {
|
|
display: block;
|
|
}
|
|
} |