50 lines
929 B
CSS
50 lines
929 B
CSS
/* Allgemeine Layout-Stile */
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f2f2f2;
|
|
padding: 20px;
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
/* Container für die Bestellinformationen */
|
|
#bestellung {
|
|
background-color: #fff;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
margin-top: 20px;
|
|
}
|
|
|
|
/* Titel */
|
|
h2 {
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
/* Karte für Bestellinformationen */
|
|
.bestell-info-card {
|
|
background-color: #fafafa;
|
|
padding: 15px;
|
|
border-radius: 8px;
|
|
margin-bottom: 15px;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
/* Bestellinformationen formatieren */
|
|
.bestell-info-card p {
|
|
font-size: 16px;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
/* Stile für die Label und Platzhalter */
|
|
.bestell-info-card span {
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
|
|
|