Commit 7a696d53 authored by Kyle Muldoon's avatar Kyle Muldoon

Completed CSS styling of Order Page

parent 6c6e04c6
* {
font-family: Arial, sans-serif;
}
#checkout-container {
height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
}
.OrderDirectionsElement {
font-size: 150%;
font-weight: bold;
}
.shippingInfoInput {
margin-bottom: 10px;
}
.input-text {
height: 40px;
width: 100%;
padding-left: 20px;
font-size: 120%;
}
.order-component {
border-top: 2px solid black;
min-width: 80%;
margin-bottom: 50px;
}
#orderSummaryContainer {
display: flex;
flex-direction: column;
width: 100%;
align-items: center;
justify-content: center;
margin-top: 50px;
}
.OrderSummaryElement {
display: flex;
flex-direction: row;
width: 40%;
justify-content: space-between;
margin-bottom: 10px;
font-size: 150%;
}
#orderTotal {
border-top: 2px solid black;
padding-top: 10px;
font-weight: bolder;
color: rgb(223, 5, 5);
}
#SubmitButtonContainer {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 100px;
}
#SubmitButtonInput {
width: 75%;
color: white;
background-color: black;
height: 80px;
font-size: 200%;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment