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;
}

/**Typeo CSS End**/
.usp-scn, .usp-scn * {
 --page-width: 1230px;
 --base-fm: 'Rubik', sans-serif;
 --title-size: 40px;
 --base-size: 16px;
 --white-clr: #ffffff;
 --black-clr: #000000;
 --bg-clr: #ebebeb;
}

/**USD Section Start**/
.usp-scn {
 width: 100%;
 padding: 30px 0px;
 background-color: var(--bg-clr);
 font-family: var(--base-fm);
}

.usp-scn h2 {
 text-align: center;
 font-size: var(--title-size);
}

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

.usp-inner {
 font-family: var(--base-fm);
 display: flex;
 flex-flow: row wrap;
 justify-content: space-between;
}

.usp-inner .usp-item {
 width: calc(33% - 10px);
 border: #ededed 1px solid;
 min-height: 150px;
 display: flex;
 padding: 10px;
 flex-flow: row wrap;
 box-shadow: #bbbbbb 0px 0px 6px;
 align-items: center;
 margin: 10px 0px;
 background-color: var(--white-clr);
}

.usp-cont {
 font-size: var(--base-size);
 line-height: 1.4;
 text-transform: uppercase;
 text-align: center;
 display: inline-block;
 width: 100%;
}

.usp-item .usp-title {
 font-size: var(--title-size);
 display: block;
 width: 100%;
 color: var(--theme-clr);
 margin-bottom: 10px;
 line-height: 1.2;
 font-weight: 500;
}

.usp-text {
 display: inline-block;
}

@media(max-width:767px) {
 .usp-scn {
  padding: 20px 0
 }

 .usp-scn h2 {
  font-size: calc(var(--title-size) - 10px);
 }

 .usp-inner .usp-item {
  margin: 8px 0px;
  width: 100%;
 }

 .usp-item .usp-title {
  font-size: calc(var(--title-size) - 10px);
 }

}

/**USD Section End**/

Related Web Elements