[ Homework 5 ]
HTML
Homework 5
주문 내역
CSS
h1 {
text-align: center;
}
h2 {
color: #6f4e37;
font-family: Helvetica, sans-serif;
font-size: 30px;
text-align: center;
}
hr {
color: #6f4e37;
}
.menu {
border: 3px solid whitesmoke;
width: 60%;
background-color: #faf3e0;
height : 900px;
padding-right: 60px;
padding-bottom: 10px;
padding-left: 60px;
border-radius: 50px;
float: left;
}
.order {
border: 3px solid darkgray;
border-radius: 10px;
width: 26%;
height : 900px;
padding-right: 60px;
padding-bottom: 10px;
padding-left: 60px;
float: right;
}
.menu_one {
background-color:#cec19f;
border-radius: 10px; /* 테두리 모서리 둥글게 */
height: 30px;
margin-top: 10px;
padding-top: 4px;
padding-bottom: 4px;
padding-left: 6px;
padding-right: 6px;
}
.menu_name {
float: left;
width: 15%;
display: flex;
align-items: center;
}
.menu_english {
float: left;
width: 65%;
font-size: 16px;
color: rgb(80, 80, 80);
}
.menu_price {
text-align: right;
float: left;
width: 9%;
}
.menu_number {
float: right;
width: 7%;
display: flex;
align-items: center;
gap: 10px;
font-size: 24px;
}
.order_one {
cursor: pointer;
}
.order_name {
float: left;
width: 50%;
}
.order_unitPrice {
float: left;
text-align: right;
width: 20%;
}
.order_number {
float: left;
text-align: right;
width: 10%;
}
.order_price {
float: left;
text-align: right;
width: 20%;
}
.dotted-box {
border-bottom: 2px dotted #555;
margin: 10px 0;
}
.sum {
cursor: pointer;
text-align: right;
}