File size: 440 Bytes
f5071ca |
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 |
.payment {
background-color: white;
}
.payment__container > h1 {
text-align: center;
padding: 10px;
font-weight: 400;
background-color: rgb(234, 237, 237);
}
.payment__container > h1 a {
text-decoration: none;
}
.payment__section {
display: flex;
padding: 20px;
margin: 0 20px;
border-bottom: 1px solid lightgray;
}
.payment__title {
flex: 0.2;
}
.payment__title,
.payment__address,
.payment__details {
flex: 0.8;
}
|