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

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

* {
 box-sizing: border-box;
}

body {
 margin: 0px;
 background-color: #fff;
}

img {
 max-width: 100%;
}

/**Typeo CSS End**/
.about-fullbanr, .about-fullbanr * {
 --page-width: 1230px;
 --base-fm: 'Rubik', sans-serif;
 --title-size: 35px;
 --base-size: 18px;
 --black-clr: #000000;
 --white-clr: #ffffff;
 --bg-clr: #fffbf8;
 --theme-clr: #ff6200;
}

.page-width {
 max-width: var(--page-width);
 padding: 0 15px;
 margin: auto;
 width: 100%;
}

.about-fullbanr {
 width: 100%;
 font-size: var(--base-size)
 color:var(--black-clr);
 font-family: var(--base-fm);
 padding: 20px 0px;
 background-color: var(--bg-clr);
 background-size: cover;
 min-height: 600px;
 display: flex;
 flex-flow: row wrap;
 align-items: center;
}

.aboutcont-part {
 max-width: 600px;
 padding: 30px;
 background-color: var(--white-clr);
 line-height: 1.4;
}

.aboutcont-part h2 {
 margin: 0px;
 font-size: var(--title-size);
}

.aboutcont-part h2 span {
 color: var(--theme-clr);
}

.aboutcont-part p {
 line-height: 1.5;
 margin: 20px 0;
}

.aboutcont-part .cmn-btn {
 background-color: var(--theme-clr);
 color: var(--white-clr);
 padding: 10px 20px;
 display: inline-block;
 text-decoration: none;
 transition: 0.5s all;
 border: var(--theme-clr) 1px solid;
}

.aboutcont-part .cmn-btn:hover {
 background-color: transparent;
 color: var(--theme-clr);
}

@media(max-width:1100px) {
 .about-fullbanr {
  min-height: 520px;
 }

}

@media(max-width:767px) {
 .about-fullbanr {
  min-height: inherit;
 }

 .aboutcont-part {
  padding: 15px;
 }

 .aboutcont-part h2 {
  font-size: calc(var(--title-size) - 8px);
 }

}

Related Web Elements