Untitled

                Never    
CSS
       
/* AB HIER IMPLEMENTIERUNG FELIX +++ */
.container {
  display: grid;
  min-height: 100vh;
  grid-template-rows: 60px 1fr 60px;
  grid-template-columns: 5% 30% 30% 30% 5%;
  grid-template-areas:
    "header header header header header"
    "spaceLeft content content content spaceRight"
    "footer footer footer footer footer"
}

.spaceLeft {
  background:white;
  grid-area: spaceLeft;
  /*grid-column-start:1;
  grid-column-end:2;
  grid-row-start:2;
  grid-row-end:5;*/
}

.content {
  background: #f1ede9;
  grid-area: content;
  /*grid-column-start:2;
  grid-column-end:5;
  grid-row-start:2;
  grid-row-end:3;*/
}
.spaceRight {
  background:white;
  grid-area: spaceRight;
  /*grid-column-start:5;
  grid-column-end:6;
  grid-row-start:2;
  grid-row-end:5;*/
}





/* BIS HIER IMPLEMENTIERUNG FELIX +++ */





header {
  color : black;
  background-color: #a02d2d;
  grid-area: header;
  font-family: 'Roboto', sans-serif;
  margin: 0px;
  padding: 0px;
  position: sticky;
  top: 0;
  width: 100%;
  /* overflow: hidden; */
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.search {
  width: 100%;
  position: relative;
  display: flex;
  margin: 3vh;
  margin-left: 10vh;

}

.searchTerm {
  width: 100%;
  border: 3px;
  border-right: none;
  padding: 5px;
  height: 20px;
  border-radius: 5px 0 0 5px;
  outline: none;
}


.submitButton {
  width: 40px;
  height: 36px;
  border: 1px solid ##000000;
  background: ##000000;
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 20px;
}

/*Resize the wrap to see the search bar change!*/
.Suche{
  width: 18%;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(-50%, -50%);

}

.LoginButton{
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  font-size: 20px;





  /* width: 18%;
  position: absolute;
  top: 50%;
  right: -17%;
  transform: translate(-50%, -20%); */
}



h1 {
  margin-top: 0;
  width: 500px;
}
h1, .suchFeld, .loginButton{
  display: inline-block;
}

body {
  margin: 0;
  padding: 0;
}

.suchFeld {
  padding: 5px;
  float: right;
}

.loginButton {
  padding: 5px;
  float: right;
}

/*
.filterBar {
  width: 100%
}
*/

.filterblock {
    float: left;
    width: 100%
}
.filter {
    float: left;
    width: 280px;
    height: 80px;
}
.labelFilter{
    margin: 0rem;
    font-size: 15px;
    font-family: sans-serif;
    font-weight: 500;
}
.auswahlFilter{
    display: block;
    font-size: 15px;
    font-family: sans-serif;
    font-weight: 700;
    color: #444;
    line-height: 1.3;
    width: 60%;
    max-width: 60%;
    padding: 0.2em;
    margin: 0;
    border: 1px solid #aaa;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
}


.tileBlock{
    display: flex;
    border: 1px solid;
    flex-wrap: wrap;
    justify-content: space-around;
  }
.tile {
  background-color: #f8ecd9;
  border-color: #a02d2d;
  border-style: solid;
  width: 30%;
  margin-top: 2rem;

}
.weinname{
  font-family: 'Roboto', sans-serif;
  float: left;
  padding-left: 15px;
  font-size: 20px;
  margin-bottom: 5px;
}
.weinflasche {
  float: left;
  height: 100%;
  width: 50%;
}
.beschreibung {
  font-family: 'Roboto', sans-serif;
  margin-top: 5px;
  float: left;
  padding-left: 15px;
}


body {
  background-color: #cfcfcf
}

  footer{
    background:#a02d2d;
    grid-area: footer;
}

.footerMenu {
     position: absolute;
     width: 900px;
     margin: 3vh;
     margin-left: 60vh;

}

.footerMenu ul {
     position: absolute;
     margin: 0 auto;
     list-style: none;
}

.footerMenu ul li {
     float: left;
     margin: 0 0 0 20px;
}

.copyrightLogo{

  position: absolute;
  width: 900px;
  margin: 3vh;
  margin-left: 150vh;
}

Raw Text