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

🗙
Login
Register

Create Account

Cancel
Back to Web elements
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 {
 margin: 0px;
}

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

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

/**Typeo CSS End**/
.plans-scn, .plans-scn * {
 --page-width: 1280px;
 --base-clr: #444444;
 --base-fm: "Poppins", sans-serif;
 --base-fs: 16px;
 --title-fs: 35px;
 --white-clr: #ffffff;
 --black-clr: #000000;
 --theme-clr: #FF4820;
}

.plans-scn {
 width: 100%;
 padding: 50px 0px;
 font-family: var(--base-fm);
 font-size: var(--base-fs);
 color: var(--base-clr);
 text-align: center;
}

.plans-top-prt {
 max-width: 820px;
 margin: auto;
}

.plans-scn h2 {
 font-size: var(--title-fs);
 margin: 0px;
 text-transform: uppercase;
}

.plans-list {
 width: calc(100% + 30px);
 display: flex;
 flex-flow: row wrap;
 justify-content: center;
 margin-left: -15px;
}

.plans-list .plans-item {
 width: calc(33.33% - 30px);
 margin: 15px;
 padding: 25px 15px;
 color: var(--base-clr);
 border-radius: 4px;
 box-shadow: rgba(0, 0, 0, 0.1) 0 0 12px;
background-color:var(--white-clr);
}

.pricetagline {
 font-size: 16px;
 margin-left: 6px;
 margin-top: 24px;
}

.plans-scn .planname {
 font-weight: 600;
 font-size: 24px;
 text-transform: uppercase;
 margin-bottom: 10px;
 display: inline-block;
 width: 100%;
}

.itemprice {
 font-size: 40px;
 font-weight: 700;
 display: flex;
 flex-flow: row wrap;
 justify-content: center;
}

.itemprice * {
 font-weight: 400;
}

.itemprice sub {
 font-size: 22px;
 position: relative;
 top: 18px;
}

.plans-features {
 width: 100%;
 max-width: 340px;
 margin: 10px auto 0px auto;
}

.plans-features .f-item {
 width: 100%;
 padding: 12px;
 font-weight: 500;
}

.plans-features .f-item:nth-child(2n+2) {
 background-color: rgba(0, 0, 0, 0.05);
}

.plans-scn .planbtn {
 border: var(--black-clr) 2px solid;
 color: var(--black-clr);
 padding: 10px 26px;
 min-width: 200px;
 display: inline-block;
 text-decoration: none;
 margin-top: 10px;
 font-weight: 500;
 border-radius: 4px;
 transition: 0.5s all;
}

.plans-scn .planbtn:hover {
 background-color: var(--black-clr);
 color: var(--white-clr);
}

.plans-question-bar {
 background-color: var(--base-clr);
 max-width: 800px;
 margin: auto;
 color: var(--white-clr);
 padding: 10px;
 border-radius: 4px;
 margin-top: 20px;
 display: inline-block;
 width: 100%;
}

.plans-question-bar .contact-btn {
 background-color: var(--white-clr);
 padding: 10px 20px;
 display: inline-block;
 color: var(--black-clr);
 text-decoration: none;
 border-radius: 4px;
 margin-left: 10px;
 transition: 0.5s all;
}

.plans-question-bar .contact-btn:hover {
 background-color: var(--theme-clr);
 color: var(--white-clr);
}

@media(max-width:1100px) {
 .plans-scn {
  padding: 30px 0px;
 }

 .plans-scn h2 {
  font-size: calc(var(--title-fs) - 4px);
 }

 .plans-list {
  width: calc(100% + 20px);
  margin-left: -10px;
 }

 .plans-list .plans-item {
  width: calc(33.33% - 20px);
  margin: 10px;
  padding: 25px 10px;
 }

}

@media(max-width:767px) {
 .plans-features .f-item {
  padding: 10px;
 }

 .plans-list {
  width: 100%;
  margin-left: 0px;
 }

 .plans-list .plans-item {
  width: 100%;
  margin: 10px 0px;
 }

}

Related Web Elements