You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
801 B
CSS

.checkoutSection {
max-width: 600px;
width: calc(100% - 100px);
margin: 0 auto;
margin-bottom: 60px;
}
.checkoutSection > h3:first-child {
font-size: 24px;
font-weight: bold;
color: black;
}
.horizContainer {
display: flex;
flex-direction: row;
align-items: center;
}
.horizContainer > * {
flex: 1;
text-align: center;
}
.horizContainer button {
max-width: 200px;
}
.horizDivider {
min-width: 20px;
flex: 0;
}
.horizDivider::before, .horizDivider::after {
content: ' ';
width: 1px;
height: 40px;
display: block;
background: rgba(0,0,0,.25);
margin: 5px auto;
}
.checkoutSection table {
margin: 0 auto;
}
.checkoutSection td {
padding: 2px 10px;
}
.checkoutSection td:first-child {
text-align: right;
}
.paymentButtons button {
margin: 4px;
}