JSFiddle - React, Tailwind, and code Playground

by Ali Uygur

HTML

<div class="box">
  <!-- Box içeriği buraya gelecek -->
</div>

<div class="container">
  <!-- Container içeriği buraya gelecek -->
</div>

CSS

body {
      background: linear-gradient(to right, #3498db, #c0392b);
      /* Yatay gradient, soldan sağa doğru */
      /* İstediğiniz renkleri ve yönü seçebilirsiniz */
    }

  .box {
    width: 200px;
    height: 200px;
    background-color: #ecf0f1;
    margin: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    /* X ofset, Y ofset, Bulanıklık, Rengin Saydamlığı */
  }

  .container {
    background: linear-gradient(to right, #e74c3c, #3498db);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
  }