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

Back to Pages
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;
}

.maintenance, .maintenance * {
 --bg-clr: #191919;
 --base-clr: #212121;
 --base-fm: "Poppins", sans-serif;
 --base-size: 24px;
 --title-size: 80px;
 --page-width: 1200px;
 --white-clr: #ffffff;
}

body {
 color: #444;
 box-sizing: border-box;
 margin: 0px;
}

/**Typeo CSS End**/
.maintenance {
 text-align: center;
 color: var(--base-clr);
 background-color: var(--bg-clr);
 font-family: var(--base-fm);
}

.maintenance-inner {
 max-width: var(--page-width);
 margin: auto;
 padding: 40px 15px;
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 min-height: 100vh;
}

.maintenance-cont {
 width: 50%;
 padding: 10px 20px;
}

.maintenance-logo img {
 max-width: 100%;
}

.maintenance-img {
 width: 50%;
}

.maintenance-img img {
 max-width: 100%;
}

.maintenance-inner p {
 font-size: var(--base-size);
 color: var(--white-clr);
 font-weight: 500;
 margin-top: 50px;
 margin-bottom: 0px;
}

@media(max-width:767px) {
 .maintenance-inner {
  padding-bottom: 0px;
 }

 .maintenance-cont {
  width: 100%;
  padding: 0;
 }

 .maintenance-logo img {
  max-width: 250px;
 }

 .maintenance-img {
  width: 100%;
  margin-top: auto;
 }

 .maintenance-inner p {
  font-size: calc(var(--base-size) - 4px);
  margin-top: 20px;
 }

}

Related Snippets

Leave a comment

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