165 lines
2.6 KiB
CSS
165 lines
2.6 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;
|
|
}
|
|
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f2f2f2;
|
|
padding: 20px;
|
|
}
|
|
|
|
.form-container {
|
|
max-width: 600px;
|
|
margin: auto;
|
|
background-color: #ffffff;
|
|
padding: 25px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
form h2 {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-top: 15px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="tel"],
|
|
textarea {
|
|
width: 100%;
|
|
padding: 10px;
|
|
margin-top: 5px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
input[type="submit"] {
|
|
margin-top: 20px;
|
|
background-color: #ff6600;
|
|
color: white;
|
|
border: none;
|
|
padding: 12px;
|
|
border-radius: 5px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
}
|
|
|
|
input[type="submit"]:hover {
|
|
background-color: #ff6600;
|
|
}
|
|
|
|
.zurKasse {
|
|
display: block;
|
|
margin: 20px auto;
|
|
background-color: #ff6600;
|
|
color: white;
|
|
border: none;
|
|
padding: 12px 24px;
|
|
font-size: 16px;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.zurKasse:hover {
|
|
background-color: #ff6600;
|
|
}
|
|
|
|
|