• 02-11-2024, 16:30:30
    #10
    www.sabamedya.com
    Musadgn adlı üyeden alıntı: mesajı görüntüle
    Bu şekilde ekledim çalşmadı
    <style>
      .pricingTable {
        font-family: Arial, sans-serif;
        text-align: center;
        background: #f3f4f6;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      }
      
      .pricingTable-title {
        font-size: 2em;
        color: #333;
        margin-bottom: 5px;
      }
      
      .pricingTable-subtitle {
        font-size: 1.2em;
        color: #666;
        margin-bottom: 30px;
      }
      
      .pricingTable-firstTable {
        display: flex;
        justify-content: center;
        gap: 20px;
      }
      
      .pricingTable-firstTable_table {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        width: 280px;
        padding: 20px;
        list-style: none;
      }
      
      .pricingTable-firstTable_table__header {
        font-size: 1.5em;
        color: #333;
        margin-bottom: 10px;
      }
      
      .pricingTable-firstTable_table__pricing {
        font-size: 2em;
        color: #333;
        margin: 10px 0;
      }
      
      .pricingTable-firstTable_table__pricing span {
        display: inline-block;
        font-size: 1em;
      }
      
      .pricingTable-firstTable_table__options {
        list-style: none;
        padding: 0;
        margin: 20px 0;
      }
      
      .pricingTable-firstTable_table__options li {
        padding: 8px 0;
        color: #666;
        font-size: 1em;
      }
      
      .pricingTable-firstTable_table__getstart {
        padding: 12px 20px;
        font-size: 1em;
        color: #fff;
        background-color: #007bff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
      }
      
      .pricingTable-firstTable_table__getstart:hover {
        background-color: #0056b3;
      }
    </style>
    <div class="pricingTable">
      <h2 class="pricingTable-title">Find a plan that's right for you.</h2>
      <h3 class="pricingTable-subtitle">Every plan comes with a 30-day free trial.</h3>
    
      <ul class="pricingTable-firstTable">
        <li class="pricingTable-firstTable_table">
          <h1 class="pricingTable-firstTable_table__header">Bronze Packege</h1>
          <p class="pricingTable-firstTable_table__pricing"><span>$</span><span>10</span><span>Month</span></p>
          <ul class="pricingTable-firstTable_table__options">
            <li>Unlimited Listing</li>
            <li>Edit Your Listing</li>
            <li>Approve Reviews</li>
          </ul>
          <button class="pricingTable-firstTable_table__getstart">Get Started Now</button>
        </li>
        <li class="pricingTable-firstTable_table">
          <h1 class="pricingTable-firstTable_table__header">Gold Packege</h1>
          <p class="pricingTable-firstTable_table__pricing"><span>$</span><span>19</span><span>Month</span></p>
          <ul class="pricingTable-firstTable_table__options">
            <li>Unlimited Listing</li>
            <li>Edit Your Listing</li>
            <li>Approve Reviews</li>
            <li>Take Booking Online</li>
            <li>24/7 Support Service</li>
          </ul>
          <button class="pricingTable-firstTable_table__getstart">Get Started Now</button>
        </li>
        <li class="pricingTable-firstTable_table">
          <h1 class="pricingTable-firstTable_table__header">Platinum Packege</h1>
          <p class="pricingTable-firstTable_table__pricing"><span>$</span><span>49</span><span>Month</span></p>
          <ul class="pricingTable-firstTable_table__options">
            <li>Unlimited Listing</li>
            <li>Edit Your Listing</li>
            <li>Approve Reviews</li>
          </ul>
          <button class="pricingTable-firstTable_table__getstart">Get Started Now</button>
        </li>
      </ul>
    </div>
    Dediğim gibi eksik yapıyorsunuz. Attığımı kullanın çalışıyor kendi sitemde denedim.

    <div class="pricingTable">
      <h2 class="pricingTable-title">Find a plan that's right for you.</h2>
      <h3 class="pricingTable-subtitle">Every plan comes with a 30-day   free trial.</h3>
      
      <ul class="pricingTable-firstTable">
        <li class="pricingTable-firstTable_table">
          <h1 class="pricingTable-firstTable_table__header">Bronze Packege</h1>
          <p class="pricingTable-firstTable_table__pricing"><span>$</span><span>10</span><span>Month</span></p>
          <ul class="pricingTable-firstTable_table__options">
            <li>Unlimited Listing</li>
            <li>Edit Your Listing</li>
            <li>Approve Reviews</li>
          </ul>
          <button class="pricingTable-firstTable_table__getstart">Get Started Now</button>
        </li><li class="pricingTable-firstTable_table">
          <h1 class="pricingTable-firstTable_table__header">Gold Packege</h1>
          <p class="pricingTable-firstTable_table__pricing"><span>$</span><span>19</span><span>Month</span></p>
          <ul class="pricingTable-firstTable_table__options">
            <li>Unlimited Listing</li>
            <li>Edit Your Listing</li>
            <li>Approve Reviews</li>
            <li>Take Booking Online</li>
            <li>24/7 Support Service</li>
          </ul>
          <button class="pricingTable-firstTable_table__getstart">Get Started Now</button>
        </li><li class="pricingTable-firstTable_table">
          <h1 class="pricingTable-firstTable_table__header">Platinum Packege</h1>
          <p class="pricingTable-firstTable_table__pricing"><span>$</span><span>49</span><span>Month</span></p>
          <ul class="pricingTable-firstTable_table__options">
            <li>Unlimited Listing</li>
            <li>Edit Your Listing</li>
            <li>Approve Reviews</li>
          </ul>
          <button class="pricingTable-firstTable_table__getstart">Get Started Now</button>
        </li>
      </ul>
    </div>
    <style>
        @charset "UTF-8";
    .pricingTable {
      margin: 40px auto;
    }
    .pricingTable > .pricingTable-title {
      text-align: center;
      color: #6e768d;
      font-size: 3em;
      font-size: 300%;
      margin-bottom: 20px;
      letter-spacing: 0.04em;
    }
    .pricingTable > .pricingTable-subtitle {
      text-align: center;
      color: #b4bdc6;
      font-size: 1.8em;
      letter-spacing: 0.04em;
      margin-bottom: 60px;
    }
    @media screen and (max-width: 480px) {
      .pricingTable > .pricingTable-subtitle {
        margin-bottom: 30px;
      }
    }
    .pricingTable-firstTable {
      list-style: none;
      padding-left: 2em;
      padding-right: 2em;
      text-align: center;
    }
    .pricingTable-firstTable_table {
      vertical-align: middle;
      width: 31%;
      background-color: #ffffff;
      display: inline-block;
      padding: 0px 30px 40px;
      text-align: center;
      max-width: 320px;
      transition: all 0.3s ease;
      border-radius: 5px;
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table {
        display: block;
        width: 90%;
        margin: 0 auto;
        max-width: 90%;
        margin-bottom: 20px;
        padding: 10px;
        padding-left: 20px;
      }
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table > * {
        display: inline-block;
        vertical-align: middle;
      }
    }
    @media screen and (max-width: 480px) {
      .pricingTable-firstTable_table > * {
        display: block;
        float: none;
      }
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table:after {
        display: table;
        content: "";
        clear: both;
      }
    }
    .pricingTable-firstTable_table:hover {
      transform: scale(1.08);
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table:hover {
        transform: none;
      }
    }
    .pricingTable-firstTable_table:not(:last-of-type) {
      margin-right: 3.5%;
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table:not(:last-of-type) {
        margin-right: auto;
      }
    }
    .pricingTable-firstTable_table:nth-of-type(2) {
      position: relative;
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table:nth-of-type(2) h1 {
        padding-top: 8%;
      }
    }
    .pricingTable-firstTable_table:nth-of-type(2):before {
      content: "Most Popular";
      position: absolute;
      color: white;
      display: block;
      background-color: #3bbdee;
      text-align: center;
      right: 15px;
      top: -25px;
      height: 65px;
      width: 65px;
      border-radius: 50%;
      box-sizing: border-box;
      font-size: 0.5em;
      padding-top: 22px;
      text-transform: uppercase;
      letter-spacing: 0.13em;
      transition: all 0.5s ease;
    }
    @media screen and (max-width: 988px) {
      .pricingTable-firstTable_table:nth-of-type(2):before {
        font-size: 0.6em;
      }
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table:nth-of-type(2):before {
        left: 10px;
        width: 45px;
        height: 45px;
        top: -10px;
        padding-top: 13px;
      }
    }
    @media screen and (max-width: 480px) {
      .pricingTable-firstTable_table:nth-of-type(2):before {
        font-size: 0.8em;
      }
    }
    .pricingTable-firstTable_table:nth-of-type(2):hover:before {
      transform: rotate(360deg);
    }
    .pricingTable-firstTable_table__header {
      font-size: 1.6em;
      padding: 40px 0px;
      border-bottom: 2px solid #ebedec;
      letter-spacing: 0.03em;
    }
    @media screen and (max-width: 1068px) {
      .pricingTable-firstTable_table__header {
        font-size: 1.45em;
      }
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table__header {
        padding: 0px;
        border-bottom: none;
        float: left;
        width: 33%;
        padding-top: 3%;
        padding-bottom: 2%;
      }
    }
    @media screen and (max-width: 610px) {
      .pricingTable-firstTable_table__header {
        font-size: 1.3em;
      }
    }
    @media screen and (max-width: 480px) {
      .pricingTable-firstTable_table__header {
        float: none;
        width: 100%;
        font-size: 1.8em;
        margin-bottom: 5px;
      }
    }
    .pricingTable-firstTable_table__pricing {
      font-size: 3em;
      padding: 30px 0px;
      border-bottom: 2px solid #ebedec;
      line-height: 0.7;
    }
    @media screen and (max-width: 1068px) {
      .pricingTable-firstTable_table__pricing {
        font-size: 2.8em;
      }
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table__pricing {
        border-bottom: none;
        padding: 0;
        float: left;
        clear: left;
        width: 33%;
      }
    }
    @media screen and (max-width: 610px) {
      .pricingTable-firstTable_table__pricing {
        font-size: 2.4em;
      }
    }
    @media screen and (max-width: 480px) {
      .pricingTable-firstTable_table__pricing {
        float: none;
        width: 100%;
        font-size: 3em;
        margin-bottom: 10px;
      }
    }
    .pricingTable-firstTable_table__pricing span:first-of-type {
      font-size: 0.35em;
      vertical-align: top;
      letter-spacing: 0.15em;
    }
    @media screen and (max-width: 1068px) {
      .pricingTable-firstTable_table__pricing span:first-of-type {
        font-size: 0.3em;
      }
    }
    .pricingTable-firstTable_table__pricing span:last-of-type {
      vertical-align: bottom;
      font-size: 0.3em;
      letter-spacing: 0.04em;
      padding-left: 0.2em;
    }
    @media screen and (max-width: 1068px) {
      .pricingTable-firstTable_table__pricing span:last-of-type {
        font-size: 0.25em;
      }
    }
    .pricingTable-firstTable_table__options {
      list-style: none;
      padding: 15px;
      font-size: 0.9em;
      border-bottom: 2px solid #ebedec;
    }
    @media screen and (max-width: 1068px) {
      .pricingTable-firstTable_table__options {
        font-size: 0.85em;
      }
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table__options {
        border-bottom: none;
        padding: 0;
        margin-right: 10%;
      }
    }
    @media screen and (max-width: 610px) {
      .pricingTable-firstTable_table__options {
        font-size: 0.7em;
        margin-right: 8%;
      }
    }
    @media screen and (max-width: 480px) {
      .pricingTable-firstTable_table__options {
        font-size: 1.3em;
        margin-right: none;
        margin-bottom: 10px;
      }
    }
    .pricingTable-firstTable_table__options > li {
      padding: 8px 0px;
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table__options > li {
        text-align: left;
      }
    }
    @media screen and (max-width: 610px) {
      .pricingTable-firstTable_table__options > li {
        padding: 5px 0;
      }
    }
    @media screen and (max-width: 480px) {
      .pricingTable-firstTable_table__options > li {
        text-align: center;
      }
    }
    .pricingTable-firstTable_table__options > li:before {
      content: "✓";
      display: inline-flex;
      margin-right: 15px;
      color: white;
      background-color: #74ce6a;
      border-radius: 50%;
      width: 15px;
      height: 15px;
      font-size: 0.8em;
      padding: 2px;
      align-items: center;
      justify-content: center;
    }
    @media screen and (max-width: 1068px) {
      .pricingTable-firstTable_table__options > li:before {
        width: 14px;
        height: 14px;
        padding: 1.5px;
      }
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table__options > li:before {
        width: 12px;
        height: 12px;
      }
    }
    .pricingTable-firstTable_table__getstart {
      color: white;
      border: 0;
      background-color: #71ce73;
      margin-top: 30px;
      border-radius: 5px;
      cursor: pointer;
      padding: 15px;
      box-shadow: 0px 3px 0px 0px #66ac64;
      letter-spacing: 0.07em;
      transition: all 0.4s ease;
    }
    @media screen and (max-width: 1068px) {
      .pricingTable-firstTable_table__getstart {
        font-size: 0.95em;
      }
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table__getstart {
        margin-top: 0;
      }
    }
    @media screen and (max-width: 610px) {
      .pricingTable-firstTable_table__getstart {
        font-size: 0.9em;
        padding: 10px;
      }
    }
    @media screen and (max-width: 480px) {
      .pricingTable-firstTable_table__getstart {
        font-size: 1em;
        width: 50%;
        margin: 10px auto;
      }
    }
    .pricingTable-firstTable_table__getstart:hover {
      transform: translateY(-10px);
      box-shadow: 0px 40px 29px -19px rgba(102, 172, 100, 0.9);
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table__getstart:hover {
        transform: none;
        box-shadow: none;
      }
    }
    .pricingTable-firstTable_table__getstart:active {
      box-shadow: inset 0 0 10px 1px #66a564, 0px 40px 29px -19px rgba(102, 172, 100, 0.95);
      transform: scale(0.95) translateY(-9px);
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table__getstart:active {
        transform: scale(0.95) translateY(0);
        box-shadow: none;
      }
    }
    
    body {
      font-family: "Montserrat", sans-serif;
      font-size: 100%;
      background-color: #f0f4f7;
      color: #717787;
    }
    @media screen and (max-width: 960px) {
      body {
        font-size: 80%;
      }
    }
    @media screen and (max-width: 776px) {
      body {
        font-size: 70%;
      }
    }
    @media screen and (max-width: 496px) {
      body {
        font-size: 50%;
      }
    }
    @media screen and (max-width: 320px) {
      body {
        font-size: 40%;
      }
    }
    
    * {
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }
    </style>
  • 02-11-2024, 16:40:49
    #11
    saba_medya adlı üyeden alıntı: mesajı görüntüle
    Dediğim gibi eksik yapıyorsunuz. Attığımı kullanın çalışıyor kendi sitemde denedim.

    <div class="pricingTable">
      <h2 class="pricingTable-title">Find a plan that's right for you.</h2>
      <h3 class="pricingTable-subtitle">Every plan comes with a 30-day   free trial.</h3>
      
      <ul class="pricingTable-firstTable">
        <li class="pricingTable-firstTable_table">
          <h1 class="pricingTable-firstTable_table__header">Bronze Packege</h1>
          <p class="pricingTable-firstTable_table__pricing"><span>$</span><span>10</span><span>Month</span></p>
          <ul class="pricingTable-firstTable_table__options">
            <li>Unlimited Listing</li>
            <li>Edit Your Listing</li>
            <li>Approve Reviews</li>
          </ul>
          <button class="pricingTable-firstTable_table__getstart">Get Started Now</button>
        </li><li class="pricingTable-firstTable_table">
          <h1 class="pricingTable-firstTable_table__header">Gold Packege</h1>
          <p class="pricingTable-firstTable_table__pricing"><span>$</span><span>19</span><span>Month</span></p>
          <ul class="pricingTable-firstTable_table__options">
            <li>Unlimited Listing</li>
            <li>Edit Your Listing</li>
            <li>Approve Reviews</li>
            <li>Take Booking Online</li>
            <li>24/7 Support Service</li>
          </ul>
          <button class="pricingTable-firstTable_table__getstart">Get Started Now</button>
        </li><li class="pricingTable-firstTable_table">
          <h1 class="pricingTable-firstTable_table__header">Platinum Packege</h1>
          <p class="pricingTable-firstTable_table__pricing"><span>$</span><span>49</span><span>Month</span></p>
          <ul class="pricingTable-firstTable_table__options">
            <li>Unlimited Listing</li>
            <li>Edit Your Listing</li>
            <li>Approve Reviews</li>
          </ul>
          <button class="pricingTable-firstTable_table__getstart">Get Started Now</button>
        </li>
      </ul>
    </div>
    <style>
        @charset "UTF-8";
    .pricingTable {
      margin: 40px auto;
    }
    .pricingTable > .pricingTable-title {
      text-align: center;
      color: #6e768d;
      font-size: 3em;
      font-size: 300%;
      margin-bottom: 20px;
      letter-spacing: 0.04em;
    }
    .pricingTable > .pricingTable-subtitle {
      text-align: center;
      color: #b4bdc6;
      font-size: 1.8em;
      letter-spacing: 0.04em;
      margin-bottom: 60px;
    }
    @media screen and (max-width: 480px) {
      .pricingTable > .pricingTable-subtitle {
        margin-bottom: 30px;
      }
    }
    .pricingTable-firstTable {
      list-style: none;
      padding-left: 2em;
      padding-right: 2em;
      text-align: center;
    }
    .pricingTable-firstTable_table {
      vertical-align: middle;
      width: 31%;
      background-color: #ffffff;
      display: inline-block;
      padding: 0px 30px 40px;
      text-align: center;
      max-width: 320px;
      transition: all 0.3s ease;
      border-radius: 5px;
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table {
        display: block;
        width: 90%;
        margin: 0 auto;
        max-width: 90%;
        margin-bottom: 20px;
        padding: 10px;
        padding-left: 20px;
      }
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table > * {
        display: inline-block;
        vertical-align: middle;
      }
    }
    @media screen and (max-width: 480px) {
      .pricingTable-firstTable_table > * {
        display: block;
        float: none;
      }
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table:after {
        display: table;
        content: "";
        clear: both;
      }
    }
    .pricingTable-firstTable_table:hover {
      transform: scale(1.08);
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table:hover {
        transform: none;
      }
    }
    .pricingTable-firstTable_table:not(:last-of-type) {
      margin-right: 3.5%;
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table:not(:last-of-type) {
        margin-right: auto;
      }
    }
    .pricingTable-firstTable_table:nth-of-type(2) {
      position: relative;
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table:nth-of-type(2) h1 {
        padding-top: 8%;
      }
    }
    .pricingTable-firstTable_table:nth-of-type(2):before {
      content: "Most Popular";
      position: absolute;
      color: white;
      display: block;
      background-color: #3bbdee;
      text-align: center;
      right: 15px;
      top: -25px;
      height: 65px;
      width: 65px;
      border-radius: 50%;
      box-sizing: border-box;
      font-size: 0.5em;
      padding-top: 22px;
      text-transform: uppercase;
      letter-spacing: 0.13em;
      transition: all 0.5s ease;
    }
    @media screen and (max-width: 988px) {
      .pricingTable-firstTable_table:nth-of-type(2):before {
        font-size: 0.6em;
      }
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table:nth-of-type(2):before {
        left: 10px;
        width: 45px;
        height: 45px;
        top: -10px;
        padding-top: 13px;
      }
    }
    @media screen and (max-width: 480px) {
      .pricingTable-firstTable_table:nth-of-type(2):before {
        font-size: 0.8em;
      }
    }
    .pricingTable-firstTable_table:nth-of-type(2):hover:before {
      transform: rotate(360deg);
    }
    .pricingTable-firstTable_table__header {
      font-size: 1.6em;
      padding: 40px 0px;
      border-bottom: 2px solid #ebedec;
      letter-spacing: 0.03em;
    }
    @media screen and (max-width: 1068px) {
      .pricingTable-firstTable_table__header {
        font-size: 1.45em;
      }
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table__header {
        padding: 0px;
        border-bottom: none;
        float: left;
        width: 33%;
        padding-top: 3%;
        padding-bottom: 2%;
      }
    }
    @media screen and (max-width: 610px) {
      .pricingTable-firstTable_table__header {
        font-size: 1.3em;
      }
    }
    @media screen and (max-width: 480px) {
      .pricingTable-firstTable_table__header {
        float: none;
        width: 100%;
        font-size: 1.8em;
        margin-bottom: 5px;
      }
    }
    .pricingTable-firstTable_table__pricing {
      font-size: 3em;
      padding: 30px 0px;
      border-bottom: 2px solid #ebedec;
      line-height: 0.7;
    }
    @media screen and (max-width: 1068px) {
      .pricingTable-firstTable_table__pricing {
        font-size: 2.8em;
      }
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table__pricing {
        border-bottom: none;
        padding: 0;
        float: left;
        clear: left;
        width: 33%;
      }
    }
    @media screen and (max-width: 610px) {
      .pricingTable-firstTable_table__pricing {
        font-size: 2.4em;
      }
    }
    @media screen and (max-width: 480px) {
      .pricingTable-firstTable_table__pricing {
        float: none;
        width: 100%;
        font-size: 3em;
        margin-bottom: 10px;
      }
    }
    .pricingTable-firstTable_table__pricing span:first-of-type {
      font-size: 0.35em;
      vertical-align: top;
      letter-spacing: 0.15em;
    }
    @media screen and (max-width: 1068px) {
      .pricingTable-firstTable_table__pricing span:first-of-type {
        font-size: 0.3em;
      }
    }
    .pricingTable-firstTable_table__pricing span:last-of-type {
      vertical-align: bottom;
      font-size: 0.3em;
      letter-spacing: 0.04em;
      padding-left: 0.2em;
    }
    @media screen and (max-width: 1068px) {
      .pricingTable-firstTable_table__pricing span:last-of-type {
        font-size: 0.25em;
      }
    }
    .pricingTable-firstTable_table__options {
      list-style: none;
      padding: 15px;
      font-size: 0.9em;
      border-bottom: 2px solid #ebedec;
    }
    @media screen and (max-width: 1068px) {
      .pricingTable-firstTable_table__options {
        font-size: 0.85em;
      }
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table__options {
        border-bottom: none;
        padding: 0;
        margin-right: 10%;
      }
    }
    @media screen and (max-width: 610px) {
      .pricingTable-firstTable_table__options {
        font-size: 0.7em;
        margin-right: 8%;
      }
    }
    @media screen and (max-width: 480px) {
      .pricingTable-firstTable_table__options {
        font-size: 1.3em;
        margin-right: none;
        margin-bottom: 10px;
      }
    }
    .pricingTable-firstTable_table__options > li {
      padding: 8px 0px;
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table__options > li {
        text-align: left;
      }
    }
    @media screen and (max-width: 610px) {
      .pricingTable-firstTable_table__options > li {
        padding: 5px 0;
      }
    }
    @media screen and (max-width: 480px) {
      .pricingTable-firstTable_table__options > li {
        text-align: center;
      }
    }
    .pricingTable-firstTable_table__options > li:before {
      content: "✓";
      display: inline-flex;
      margin-right: 15px;
      color: white;
      background-color: #74ce6a;
      border-radius: 50%;
      width: 15px;
      height: 15px;
      font-size: 0.8em;
      padding: 2px;
      align-items: center;
      justify-content: center;
    }
    @media screen and (max-width: 1068px) {
      .pricingTable-firstTable_table__options > li:before {
        width: 14px;
        height: 14px;
        padding: 1.5px;
      }
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table__options > li:before {
        width: 12px;
        height: 12px;
      }
    }
    .pricingTable-firstTable_table__getstart {
      color: white;
      border: 0;
      background-color: #71ce73;
      margin-top: 30px;
      border-radius: 5px;
      cursor: pointer;
      padding: 15px;
      box-shadow: 0px 3px 0px 0px #66ac64;
      letter-spacing: 0.07em;
      transition: all 0.4s ease;
    }
    @media screen and (max-width: 1068px) {
      .pricingTable-firstTable_table__getstart {
        font-size: 0.95em;
      }
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table__getstart {
        margin-top: 0;
      }
    }
    @media screen and (max-width: 610px) {
      .pricingTable-firstTable_table__getstart {
        font-size: 0.9em;
        padding: 10px;
      }
    }
    @media screen and (max-width: 480px) {
      .pricingTable-firstTable_table__getstart {
        font-size: 1em;
        width: 50%;
        margin: 10px auto;
      }
    }
    .pricingTable-firstTable_table__getstart:hover {
      transform: translateY(-10px);
      box-shadow: 0px 40px 29px -19px rgba(102, 172, 100, 0.9);
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table__getstart:hover {
        transform: none;
        box-shadow: none;
      }
    }
    .pricingTable-firstTable_table__getstart:active {
      box-shadow: inset 0 0 10px 1px #66a564, 0px 40px 29px -19px rgba(102, 172, 100, 0.95);
      transform: scale(0.95) translateY(-9px);
    }
    @media screen and (max-width: 767px) {
      .pricingTable-firstTable_table__getstart:active {
        transform: scale(0.95) translateY(0);
        box-shadow: none;
      }
    }
    
    body {
      font-family: "Montserrat", sans-serif;
      font-size: 100%;
      background-color: #f0f4f7;
      color: #717787;
    }
    @media screen and (max-width: 960px) {
      body {
        font-size: 80%;
      }
    }
    @media screen and (max-width: 776px) {
      body {
        font-size: 70%;
      }
    }
    @media screen and (max-width: 496px) {
      body {
        font-size: 50%;
      }
    }
    @media screen and (max-width: 320px) {
      body {
        font-size: 40%;
      }
    }
    
    * {
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }
    </style>
    Evet bu çalştı çok teşekkürler
  • 02-11-2024, 16:45:48
    #12
    Musadgn adlı üyeden alıntı: mesajı görüntüle
    Evet bu çalştı çok teşekkürler
    Anlamak içinsoruyorum örnek sitedeki css kodu ile sizin ekleiğiniz farklı. Nasıl düzenlediniz.

    $h1color: #6e768d;
    $h3color: #b4bdc6;
    $widthoftable: 31%;
    $bgctables: #ffffff;
    $bgfontcolor: #717787;
    
    .pricingTable {
      margin: 40px auto;
    
      & > &-title {
        text-align: center;
        color: $h1color;
        font-size: 3em;
        font-size: 300%;
        margin-bottom: 20px;
        letter-spacing: 0.04em;
      }
    
      & > &-subtitle {
        text-align: center;
        color: $h3color;
        font-size: 1.8em;
        letter-spacing: 0.04em;
        margin-bottom: 60px;
    
        @media screen and (max-width: 480px) {
          margin-bottom: 30px;
        }
      }
    
      &-firstTable {
        list-style: none;
        padding-left: 2em;
        padding-right: 2em;
        text-align: center;
    
        &_table {
          vertical-align: middle;
          width: $widthoftable;
          background-color: $bgctables;
          display: inline-block;
          padding: 0px 30px 40px;
          text-align: center;
          max-width: 320px;
          transition: all 0.3s ease;
          border-radius: 5px;
    
          @media screen and (max-width: 767px) {
            display: block;
            width: 90%;
            margin: 0 auto;
            max-width: 90%;
            margin-bottom: 20px;
            padding: 10px;
            padding-left: 20px;
          }
    
          & > * {
            @media screen and (max-width: 767px) {
              display: inline-block;
              vertical-align: middle;
            }
    
            @media screen and (max-width: 480px) {
              display: block;
              float: none;
            }
          }
    
          &:after {
            @media screen and (max-width: 767px) {
              display: table;
              content: "";
              clear: both;
            }
          }
    
          &:hover {
            transform: scale(1.08);
            @media screen and (max-width: 767px) {
              transform: none;
            }
          }
    
          &:not(:last-of-type) {
            margin-right: (100%-$widthoftable * 3)/2;
            @media screen and (max-width: 767px) {
              margin-right: auto;
            }
          }
    
          &:nth-of-type(2) {
            position: relative;
    
            & h1 {
              @media screen and (max-width: 767px) {
                padding-top: 8%;
              }
            }
    
            &:before {
              content: "Most Popular";
              position: absolute;
              color: white;
              display: block;
              background-color: #3bbdee;
              text-align: center;
              right: 15px;
              top: -25px;
              height: 65px;
              width: 65px;
              border-radius: 50%;
              box-sizing: border-box;
              font-size: 0.5em;
              padding-top: 22px;
              text-transform: uppercase;
              letter-spacing: 0.13em;
              transition: all 0.5s ease;
    
              @media screen and (max-width: 988px) {
                font-size: 0.6em;
              }
    
              @media screen and (max-width: 767px) {
                left: 10px;
                width: 45px;
                height: 45px;
                top: -10px;
                padding-top: 13px;
              }
    
              @media screen and (max-width: 480px) {
                font-size: 0.8em;
              }
            }
            &:hover:before {
              transform: rotate(360deg);
            }
          }
    
          &__header {
            font-size: 1.6em;
            padding: 40px 0px;
            border-bottom: 2px solid #ebedec;
            letter-spacing: 0.03em;
    
            @media screen and (max-width: 1068px) {
              font-size: 1.45em;
            }
            @media screen and (max-width: 767px) {
              padding: 0px;
              border-bottom: none;
              float: left;
              width: 33%;
              padding-top: 3%;
              padding-bottom: 2%;
            }
    
            @media screen and (max-width: 610px) {
              font-size: 1.3em;
            }
    
            @media screen and (max-width: 480px) {
              float: none;
              width: 100%;
              font-size: 1.8em;
              margin-bottom: 5px;
            }
          }
    
          &__pricing {
            font-size: 3em;
            padding: 30px 0px;
            border-bottom: 2px solid #ebedec;
            line-height: 0.7;
    
            @media screen and (max-width: 1068px) {
              font-size: 2.8em;
            }
    
            @media screen and (max-width: 767px) {
              border-bottom: none;
              padding: 0;
              float: left;
              clear: left;
              width: 33%;
            }
    
            @media screen and (max-width: 610px) {
              font-size: 2.4em;
            }
    
            @media screen and (max-width: 480px) {
              float: none;
              width: 100%;
              font-size: 3em;
              margin-bottom: 10px;
            }
    
            span:first-of-type {
              font-size: 0.35em;
              vertical-align: top;
              letter-spacing: 0.15em;
              @media screen and (max-width: 1068px) {
                font-size: 0.3em;
              }
            }
            span:last-of-type {
              vertical-align: bottom;
              font-size: 0.3em;
              letter-spacing: 0.04em;
              padding-left: 0.2em;
              @media screen and (max-width: 1068px) {
                font-size: 0.25em;
              }
            }
          }
    
          &__options {
            list-style: none;
            padding: 15px;
            font-size: 0.9em;
            border-bottom: 2px solid #ebedec;
    
            @media screen and (max-width: 1068px) {
              font-size: 0.85em;
            }
    
            @media screen and (max-width: 767px) {
              border-bottom: none;
              padding: 0;
              margin-right: 10%;
            }
    
            @media screen and (max-width: 610px) {
              font-size: 0.7em;
              margin-right: 8%;
            }
    
            @media screen and (max-width: 480px) {
              font-size: 1.3em;
              margin-right: none;
              margin-bottom: 10px;
            }
    
            & > li {
              padding: 8px 0px;
    
              @media screen and (max-width: 767px) {
                text-align: left;
              }
    
              @media screen and (max-width: 610px) {
                padding: 5px 0;
              }
    
              @media screen and (max-width: 480px) {
                text-align: center;
              }
    
              &:before {
                content: "✓";
                display: inline-flex;
                margin-right: 15px;
                color: white;
                background-color: #74ce6a;
                border-radius: 50%;
                width: 15px;
                height: 15px;
                font-size: 0.8em;
                padding: 2px;
                align-items: center;
                justify-content: center;
    
                @media screen and (max-width: 1068px) {
                  width: 14px;
                  height: 14px;
                  padding: 1.5px;
                }
    
                @media screen and (max-width: 767px) {
                  width: 12px;
                  height: 12px;
                }
              }
            }
          }
    
          &__getstart {
            color: white;
            border: 0;
            background-color: #71ce73;
            margin-top: 30px;
            border-radius: 5px;
            cursor: pointer;
            padding: 15px;
            box-shadow: 0px 3px 0px 0px rgba(102, 172, 100, 1);
            letter-spacing: 0.07em;
            transition: all 0.4s ease;
    
            @media screen and (max-width: 1068px) {
              font-size: 0.95em;
            }
    
            @media screen and (max-width: 767px) {
              margin-top: 0;
            }
    
            @media screen and (max-width: 610px) {
              font-size: 0.9em;
              padding: 10px;
            }
    
            @media screen and (max-width: 480px) {
              font-size: 1em;
              width: 50%;
              margin: 10px auto;
            }
    
            &:hover {
              transform: translateY(-10px);
              box-shadow: 0px 40px 29px -19px rgba(102, 172, 100, 0.9);
              @media screen and (max-width: 767px) {
                transform: none;
                box-shadow: none;
              }
            }
    
            &:active {
              box-shadow: inset 0 0 10px 1px rgba(102, 165, 100, 1),
                0px 40px 29px -19px rgba(102, 172, 100, 0.95);
              transform: scale(0.95) translateY(-9px);
              @media screen and (max-width: 767px) {
                transform: scale(0.95) translateY(0);
                box-shadow: none;
              }
            }
          }
        }
      }
    }
    
    body {
      font-family: "Montserrat", sans-serif;
      font-size: 100%;
      background-color: #f0f4f7;
      color: $bgfontcolor;
    
      @media screen and (max-width: 960px) {
        font-size: 80%;
      }
      @media screen and (max-width: 776px) {
        font-size: 70%;
      }
      @media screen and (max-width: 496px) {
        font-size: 50%;
      }
      @media screen and (max-width: 320px) {
        font-size: 40%;
      }
    }
    
    * {
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }
  • 02-11-2024, 16:55:24
    #13
    www.sabamedya.com
    Musadgn adlı üyeden alıntı: mesajı görüntüle
    Anlamak içinsoruyorum örnek sitedeki css kodu ile sizin ekleiğiniz farklı. Nasıl düzenlediniz.

    $h1color: #6e768d;
    $h3color: #b4bdc6;
    $widthoftable: 31%;
    $bgctables: #ffffff;
    $bgfontcolor: #717787;
    
    .pricingTable {
      margin: 40px auto;
    
      & > &-title {
        text-align: center;
        color: $h1color;
        font-size: 3em;
        font-size: 300%;
        margin-bottom: 20px;
        letter-spacing: 0.04em;
      }
    
      & > &-subtitle {
        text-align: center;
        color: $h3color;
        font-size: 1.8em;
        letter-spacing: 0.04em;
        margin-bottom: 60px;
    
        @media screen and (max-width: 480px) {
          margin-bottom: 30px;
        }
      }
    
      &-firstTable {
        list-style: none;
        padding-left: 2em;
        padding-right: 2em;
        text-align: center;
    
        &_table {
          vertical-align: middle;
          width: $widthoftable;
          background-color: $bgctables;
          display: inline-block;
          padding: 0px 30px 40px;
          text-align: center;
          max-width: 320px;
          transition: all 0.3s ease;
          border-radius: 5px;
    
          @media screen and (max-width: 767px) {
            display: block;
            width: 90%;
            margin: 0 auto;
            max-width: 90%;
            margin-bottom: 20px;
            padding: 10px;
            padding-left: 20px;
          }
    
          & > * {
            @media screen and (max-width: 767px) {
              display: inline-block;
              vertical-align: middle;
            }
    
            @media screen and (max-width: 480px) {
              display: block;
              float: none;
            }
          }
    
          &:after {
            @media screen and (max-width: 767px) {
              display: table;
              content: "";
              clear: both;
            }
          }
    
          &:hover {
            transform: scale(1.08);
            @media screen and (max-width: 767px) {
              transform: none;
            }
          }
    
          &:not(:last-of-type) {
            margin-right: (100%-$widthoftable * 3)/2;
            @media screen and (max-width: 767px) {
              margin-right: auto;
            }
          }
    
          &:nth-of-type(2) {
            position: relative;
    
            & h1 {
              @media screen and (max-width: 767px) {
                padding-top: 8%;
              }
            }
    
            &:before {
              content: "Most Popular";
              position: absolute;
              color: white;
              display: block;
              background-color: #3bbdee;
              text-align: center;
              right: 15px;
              top: -25px;
              height: 65px;
              width: 65px;
              border-radius: 50%;
              box-sizing: border-box;
              font-size: 0.5em;
              padding-top: 22px;
              text-transform: uppercase;
              letter-spacing: 0.13em;
              transition: all 0.5s ease;
    
              @media screen and (max-width: 988px) {
                font-size: 0.6em;
              }
    
              @media screen and (max-width: 767px) {
                left: 10px;
                width: 45px;
                height: 45px;
                top: -10px;
                padding-top: 13px;
              }
    
              @media screen and (max-width: 480px) {
                font-size: 0.8em;
              }
            }
            &:hover:before {
              transform: rotate(360deg);
            }
          }
    
          &__header {
            font-size: 1.6em;
            padding: 40px 0px;
            border-bottom: 2px solid #ebedec;
            letter-spacing: 0.03em;
    
            @media screen and (max-width: 1068px) {
              font-size: 1.45em;
            }
            @media screen and (max-width: 767px) {
              padding: 0px;
              border-bottom: none;
              float: left;
              width: 33%;
              padding-top: 3%;
              padding-bottom: 2%;
            }
    
            @media screen and (max-width: 610px) {
              font-size: 1.3em;
            }
    
            @media screen and (max-width: 480px) {
              float: none;
              width: 100%;
              font-size: 1.8em;
              margin-bottom: 5px;
            }
          }
    
          &__pricing {
            font-size: 3em;
            padding: 30px 0px;
            border-bottom: 2px solid #ebedec;
            line-height: 0.7;
    
            @media screen and (max-width: 1068px) {
              font-size: 2.8em;
            }
    
            @media screen and (max-width: 767px) {
              border-bottom: none;
              padding: 0;
              float: left;
              clear: left;
              width: 33%;
            }
    
            @media screen and (max-width: 610px) {
              font-size: 2.4em;
            }
    
            @media screen and (max-width: 480px) {
              float: none;
              width: 100%;
              font-size: 3em;
              margin-bottom: 10px;
            }
    
            span:first-of-type {
              font-size: 0.35em;
              vertical-align: top;
              letter-spacing: 0.15em;
              @media screen and (max-width: 1068px) {
                font-size: 0.3em;
              }
            }
            span:last-of-type {
              vertical-align: bottom;
              font-size: 0.3em;
              letter-spacing: 0.04em;
              padding-left: 0.2em;
              @media screen and (max-width: 1068px) {
                font-size: 0.25em;
              }
            }
          }
    
          &__options {
            list-style: none;
            padding: 15px;
            font-size: 0.9em;
            border-bottom: 2px solid #ebedec;
    
            @media screen and (max-width: 1068px) {
              font-size: 0.85em;
            }
    
            @media screen and (max-width: 767px) {
              border-bottom: none;
              padding: 0;
              margin-right: 10%;
            }
    
            @media screen and (max-width: 610px) {
              font-size: 0.7em;
              margin-right: 8%;
            }
    
            @media screen and (max-width: 480px) {
              font-size: 1.3em;
              margin-right: none;
              margin-bottom: 10px;
            }
    
            & > li {
              padding: 8px 0px;
    
              @media screen and (max-width: 767px) {
                text-align: left;
              }
    
              @media screen and (max-width: 610px) {
                padding: 5px 0;
              }
    
              @media screen and (max-width: 480px) {
                text-align: center;
              }
    
              &:before {
                content: "✓";
                display: inline-flex;
                margin-right: 15px;
                color: white;
                background-color: #74ce6a;
                border-radius: 50%;
                width: 15px;
                height: 15px;
                font-size: 0.8em;
                padding: 2px;
                align-items: center;
                justify-content: center;
    
                @media screen and (max-width: 1068px) {
                  width: 14px;
                  height: 14px;
                  padding: 1.5px;
                }
    
                @media screen and (max-width: 767px) {
                  width: 12px;
                  height: 12px;
                }
              }
            }
          }
    
          &__getstart {
            color: white;
            border: 0;
            background-color: #71ce73;
            margin-top: 30px;
            border-radius: 5px;
            cursor: pointer;
            padding: 15px;
            box-shadow: 0px 3px 0px 0px rgba(102, 172, 100, 1);
            letter-spacing: 0.07em;
            transition: all 0.4s ease;
    
            @media screen and (max-width: 1068px) {
              font-size: 0.95em;
            }
    
            @media screen and (max-width: 767px) {
              margin-top: 0;
            }
    
            @media screen and (max-width: 610px) {
              font-size: 0.9em;
              padding: 10px;
            }
    
            @media screen and (max-width: 480px) {
              font-size: 1em;
              width: 50%;
              margin: 10px auto;
            }
    
            &:hover {
              transform: translateY(-10px);
              box-shadow: 0px 40px 29px -19px rgba(102, 172, 100, 0.9);
              @media screen and (max-width: 767px) {
                transform: none;
                box-shadow: none;
              }
            }
    
            &:active {
              box-shadow: inset 0 0 10px 1px rgba(102, 165, 100, 1),
                0px 40px 29px -19px rgba(102, 172, 100, 0.95);
              transform: scale(0.95) translateY(-9px);
              @media screen and (max-width: 767px) {
                transform: scale(0.95) translateY(0);
                box-shadow: none;
              }
            }
          }
        }
      }
    }
    
    body {
      font-family: "Montserrat", sans-serif;
      font-size: 100%;
      background-color: #f0f4f7;
      color: $bgfontcolor;
    
      @media screen and (max-width: 960px) {
        font-size: 80%;
      }
      @media screen and (max-width: 776px) {
        font-size: 70%;
      }
      @media screen and (max-width: 496px) {
        font-size: 50%;
      }
      @media screen and (max-width: 320px) {
        font-size: 40%;
      }
    }
    
    * {
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }
    Gördüğünüz kod SCSS onu alttaki görselden CSS yaptım.

  • 02-11-2024, 17:37:15
    #14
    saba_medya adlı üyeden alıntı: mesajı görüntüle
    Gördüğünüz kod SCSS onu alttaki görselden CSS yaptım.

    Bu html kodunu responsive mobil uyumlu hale nasıl getirebilirim. @saba_medya;
  • 02-11-2024, 18:12:16
    #15
    www.sabamedya.com
    Musadgn adlı üyeden alıntı: mesajı görüntüle
    Bu html kodunu responsive mobil uyumlu hale nasıl getirebilirim. @saba_medya;
    Kod zaten uyumlu.
  • 02-11-2024, 18:18:11
    #16
    Hocam menü deki yazılar küçülüyor tablolar yan yana geliyor.
  • 02-11-2024, 19:35:19
    #17
    Css kodu eklemenin üç yöntemi vardır. External,Internal ve inline şeklinde.

    - External yani sayfa dışı css için head etiketleri arasına <link rel="stylesheet" href="csspage.css"> şeklinde bir kod eklemeli ve csspage.css dosyası oluşturup css kodlarınızı yazmalısınız.
    - Internal css aynı sayfa içerisinde head etiketleri arasına <style> css kodları buraya </style> tagleri açılarak yazılır.
    - Son olarak inline css için ilgili html elementinin style parametresini kullanarak css kodlarını arasına yazarsınız. Örneğin <p style="color:red;">This is a paragraph.</p>

    Bu makale size yardımcı olabilir: https://www.w3schools.com/css/css_howto.asp

    Sorun çözülmezse ulaşın yardımcı olayım.
  • 04-11-2024, 00:35:34
    #18
    Kurumsal PLUS
    Burdaki problem şu. O kodlar CSS değil SCSS. İçlerinde değişken tanımlı. Onlara dikkat etmeniz gerekiyor.