95 lines
1.5 KiB
CSS
95 lines
1.5 KiB
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f3f3f3;
|
|
margin: 0;
|
|
padding: 130px;
|
|
}
|
|
|
|
.warenkorb {
|
|
max-width: 500px;
|
|
margin: 0 auto;
|
|
background: white;
|
|
padding: 120px;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.warenkorb h2 {
|
|
font-size: 30px;
|
|
text-align: center;
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-bottom: 1px solid #ddd;
|
|
padding: 10px 0;
|
|
margin-bottom: 35px;
|
|
}
|
|
|
|
.item .info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.item .name {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.item .price {
|
|
color: #555;
|
|
}
|
|
|
|
.remove {
|
|
background-color: #ff6600;
|
|
border: none;
|
|
color: white;
|
|
padding: 6px 12px;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.remove:hover {
|
|
background-color: #ff6600;
|
|
}
|
|
|
|
.summary {
|
|
text-align: right;
|
|
font-size: 1.1em;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.checkout {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 12px;
|
|
background-color: #ff6600;
|
|
border: none;
|
|
color: white;
|
|
font-size: 16px;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
margin-top: 90px;
|
|
}
|
|
|
|
.checkout:hover {
|
|
background-color: #ff6600;
|
|
}
|
|
|
|
.checkout {
|
|
display: inline-block;
|
|
background-color: #ff6600;
|
|
color: white;
|
|
padding: 10px 20px;
|
|
margin-top: 20px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
font-size: 16px;
|
|
border-radius: 5px;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
|