91 lines
1.7 KiB
CSS
91 lines
1.7 KiB
CSS
body {
|
|
font-size: 20px;
|
|
margin: 0px;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
background-image: url(images/sunrise-1014712_1920.jpg);
|
|
background-position: 50% 10%;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|
|
.top-nav {
|
|
color: white;
|
|
background-color: black;
|
|
display: grid;
|
|
grid-template-columns: 70% 25%;
|
|
grid-column-gap: 5%;
|
|
text-align: center;
|
|
height: 10vh;
|
|
}
|
|
.top-nav a {
|
|
text-decoration: none;
|
|
color: white;
|
|
}
|
|
.top-nav #warenkorb {
|
|
font-size: 30px;
|
|
position: relative;
|
|
right: 10px;
|
|
}
|
|
.top-nav #logo, #warenkorb {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
align-content: center;
|
|
justify-content: center;
|
|
}
|
|
.top-nav img {
|
|
height: 60px;
|
|
width: 220px;
|
|
}
|
|
|
|
.bottom-nav {
|
|
background-color: hsla(0, 0%, 0%, 0%);
|
|
text-align: center;
|
|
}
|
|
.bottom-nav ul {
|
|
list-style: none;
|
|
margin: 0px;
|
|
padding: 5px;
|
|
}
|
|
.bottom-nav ul li {
|
|
background-color: rgb(0, 102, 255);
|
|
margin: 10px 0px;
|
|
border: solid rgb(0, 25, 136) 2px;
|
|
|
|
border-radius: 10px;
|
|
}
|
|
.bottom-nav ul a {
|
|
text-decoration: none;
|
|
color: white;
|
|
}
|
|
|
|
.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;
|
|
}
|