Coder Wrap provides free to use snippets Coder Wrap provides free to use snippets

Back to HTML
Preview Source Code
Download
HTML
CSS
/**Typeo CSS Start**/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #444;
  box-sizing: border-box;
  margin: 0px;
}

/**Typeo CSS End**/
.comingsoon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  padding: 10px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}

.comingsoon:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #184c39;
  background: -webkit-linear-gradient(bottom, #2432ef, #ffdb75);
  background: -o-linear-gradient(bottom, #b224ef, #7579ff);
  background: -moz-linear-gradient(bottom, #b224ef, #7579ff);
  background: linear-gradient(bottom, #b224ef, #7579ff);
  opacity: 0.75;
}

.comingsoon-inner {
  max-width: 800px;
  margin: auto;
  color: #fff;
  text-align: center;
  font-size: 21px;
  padding-bottom: 70px;
}

.comingsoon-inner h1 {
  font-weight: 700;
  font-size: 50px;
  letter-spacing: 1px;
  margin: 0px;
}

.comingsoon-inner p {
  font-size: 20px;
  margin: 20px 0px;
}

.comingsoon-inner .thankyou-text {
  font-weight: 700;
  font-size: 30px;
}

.cmsoon-social {
  position: absolute;
  bottom: 50px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.cmsoon-social a {
  color: #fff;
  font-size: 18px;
  margin: 0px 8px;
}

.cmsoon-social a:hover {
  text-decoration: none;
}

.websitetime {
  display: flex;
  flex-flow: row wrap;
  font-size: 22px;
  text-align: center;
  justify-content: center;
  text-transform: uppercase;
}

.websitetime .w-time-item {
  padding: 0px 26px;
  border-left: #fff 1px solid;
}

.websitetime .w-time-item strong {
  font-size: 50px;
}

.websitetime .w-time-item:first-child {
  border-left: none;
}

.wm-logo {
  max-width: 300px;
  width: 100%;
  margin-bottom: 20px;
}

@media(max-width:767px) {
  .comingsoon-inner {
    font-size: 16px;
  }

  .comingsoon-inner h1 {
    font-size: 40px;
    letter-spacing: 1px;
  }

  .websitetime {
    font-size: 16px;
  }

  .websitetime .w-time-item {
    padding: 0px 12px;
  }

  .websitetime .w-time-item strong {
    font-size: 26px;
  }

  .cmsoon-social a {
    font-size: 15px;
    margin: 0px 5px;
  }

}

Related Snippets

Leave a comment

Your email address will not be published. Required fields are marked *