File size: 343 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 28 |
.order {
padding: 40px;
margin: 20px 0;
border: 1px solid lightgray;
background-color: white;
position: relative;
}
.order > h1 {
text-align: center;
}
.order > h2,
.order > p {
margin-bottom: 10px;
}
.order__id {
position: absolute;
top: 40px;
right: 20px;
}
.order__total {
font-weight: 500;
text-align: right;
}
|