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-content-scn, .about-content-scn * {
 --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%;
}

.text-center {
 text-align: center;
}

.about-content-scn {
 width: 100%;
 font-size: var(--base-size)
 color:var(--black-clr);
 font-family: var(--base-fm);
 padding: 60px 0px;
}

.aboutcont-part {
 width: 100%;
 max-width: 970px;
 margin: auto;
}

.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: 14px 30px;
 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:992px) {
 .about-content-scn {
  padding: 40px 0;
  font-size: calc(var(--base-size) - 4px)
 }

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

 .aboutcont-part .cmn-btn {
  padding: 10px 20px;
 }

}

Related Web Elements