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.

83 lines
1.2 KiB
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;
}
.addressCard {
font-size: 12px;
margin: 0 12px;
padding: 12px;
background: white;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
white-space: normal;
margin-bottom: 4px;
display: flex;
flex-direction: row;
align-items: center;
}
.addressCard:last-child {
margin-bottom: 0;
}
.addressCard > span {
flex: 1;
}
.addressCard > button {
width: 80px;
}