Bib-Arts/CSS/style.css
Viktor Sergeev 0cff38b71f real
2025-06-16 15:11:49 +02:00

120 lines
2.1 KiB
CSS

body {
background-color: #DFF0F2;
color: black;
font-size: 15px;
margin: 0;
padding: 0;
}
#wrapper {
}
a {
color: black;
text-decoration: none;
}
#navigation {
display: flex;
justify-content: center;
}
.link-container {
display: grid;
width: 80%;
grid-template-columns: 20% 20% 56% 4%;
background-color: #BAC8D4;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
}
.links {
display: flex;
align-items: center;
font-size: 25px;
}
#logo {
height: 60px;
width: 170px;
background-image: url("../images/bibArts.png");
background-position: center;
background-size: contain;
}
#footer {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 240px;
background-color: #BAC8D4;
display: grid;
grid-template-columns: 6% 5% 43% 32% 14%;
grid-template-rows: 45% 10% 45%;
align-items: center;
}
.container-zahlungsmittel {
grid-column: 5;
justify-content: right;
}
.header-zahlungsarten {
padding-right: 15px;
text-align: right;
}
.inhalt {
display: grid;
height: 40em;
justify-content: center;
align-items: center;
width: 100%;
}
.zahlungsmittel-img {
height: 41px;
width: 284px;
background-image: url("../images/Zahlungsmittel.png");
background-position: center;
background-size: contain;
justify-self: right;
}
.line {
width: 97%;
height: 1px;
background-color: grey;
justify-self: center;
grid-column-start: 1;
grid-column-end: 6;
}
.container-rest {
grid-column-start: 1;
grid-column-end: 6;
padding-left: 50px;
}
.link-impressum {
padding-left: 30px;
}
.text-bib {
grid-column: 5;
justify-self: right;
padding-right: 30px;
}
.container-welcome-inhalt {
grid-template-columns: 39% 61%;
display: grid;
width: 110em;
min-height: 80%;
border-radius: 10px;
}
.beispiel-austellung1-img {
height: 480px;
width: 670px;
background-image: url("../images/beispiel-austellung1.png");
background-position: center;
background-size: contain;
justify-self: right;
border-radius: 10px;
}