marareid405
1/4/2019 - 9:30 PM

Basic Homepage Header Styles

Basic homepage header styles to be used with corresponding html doc as well as bootstrap

/* headings */
.big-heading {
  font-size: 3.5rem;
  line-height: 1.5;
}

/* navbar */
.navbar-brand {
  font-size: 3rem;
  font-weight: 500;
}

.navbar {
  padding: 0 0 4rem;
}

.nav-item {
  font-size: 1.5rem;
  padding: 0 18px;
}

/* title section */
.title-container {
  padding: 3% 15%;
  height: 700px;
  overflow: hidden;
}

.download-button {
  margin: 5% 3% 5% 0;
}

.title-row {
  display: grid;
  grid-template-columns: 60% 60%;
}

.title-col {
  height: 350px;
  width: 400px;
}

.title {
  text-align: left;
}


/* mobile title display */
@media (max-width: 1080px) {
  .title-row {
    display: block;
    position: relative;
    margin: 0 auto;
  }

  .title-col {
    width: auto;
    margin-bottom: 20px;
  }

  .title-container {
    text-align: center;
    height: 1000px;
    margin: 0 auto;
  }

}

@media (max-width: 632px) {
  .title-container {
    padding-left: 4%;
    padding-right: 4%;
  }

  .big-heading {
    font-size: 2.75rem;
  }
}