36 lines
777 B
CSS
36 lines
777 B
CSS
body {
|
|
background-image: url(images/sunrise-1014712_1920.jpg);
|
|
background-position-x: 50%;
|
|
background-repeat: no-repeat;
|
|
background-size: auto 100vh;
|
|
}
|
|
|
|
.bestellbox {
|
|
font-size: 30px;
|
|
position: relative;
|
|
top: 200px;
|
|
background-color: rgba(58, 58, 58, 0.8);
|
|
color: white;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
align-items: center;
|
|
margin: 0px 10px;
|
|
border-radius: 10px;
|
|
}
|
|
.bestellbox span {
|
|
margin: 5px 0px;
|
|
}
|
|
.bestellbox a {
|
|
text-decoration: none;
|
|
color: white;
|
|
}
|
|
.bestellbox #box-togo, #box-tostay {
|
|
background-color: rgba(128, 128, 128, 0.8);
|
|
box-shadow: 3px 3px 3px white;
|
|
text-align: center;
|
|
width: 95%;
|
|
margin: 10px 0px;
|
|
border-radius: 10px;
|
|
}
|