main.blade.php 4.61 KB
<style>
    * {
      box-sizing: border-box;
    }

    .row #row{
      margin-left:55px;
      margin-right:55px;
      margin-top: 25px;
      margin-bottom: 15px
    }

    .column {
      float: left;
      width: 50%;
      padding: 5px;
    }

    /* Clearfix (clear floats) */
    .row::after {
      content: "";
      clear: both;
      display: table;
    }

    table, #table {
      border-collapse: collapse;
      border-spacing: 0;
      width: 100%;
      border: 1px solid #ddd;
    }

    th, td, #th, #td {
      text-align: left;
      padding: 8px;
    }

    th #th {
        background-color: red;
    }

    tr:hover{
        background: yellow;
    }

    td, #td {
        font: 1em sans-serif;
        font-family:Verdana, Geneva, Tahoma, sans-serif;


    }

    hr, #hr {
        border: none;
        border-top: 1px dotted #f00;
        color: #fff;
        background-color: #fff;
        height: 4px;
        width: 100%;
    }



    tr:nth-child(even) {
      /* background-color: #f2f2f2; */
    }

    /* Tata letak responsif - membuat dua kolom bertumpuk, bukan bersebelahan pada layar yang lebih kecil dari 600 piksel */
    @media screen and (max-width: 600px) {
      .column {
        width: 90%;
      }
    }
    </style>
    </head>
    <body>

    {{-- <h2>Responsive "Side-by-side" Tables</h2>
    <p>Cara membuat gambar berdampingan dengan properti CSS float. Pada layar dengan lebar 600 piksel atau kurang, gambar akan bertumpuk, bukan bersebelahan.</p>

    <p>Resize the browser window to see the effect.</p> --}}

    <div class="row">
        <div class="col-12">
            <hr>
                <h3 class="page-title ml-5">
                    Resume Peraturan
                            </h3>
        </div>
      <div class="column" id="column">
        <div class="panel panel-primary">
            <div class="panel-heading">Peraturan Daerah Terbaru</div>
        </div>
        <table id="table">
          <tr id="tr">
            <th class="col-1 text-center" id="th">No.</th>
            <th class="col-6 text-center" id="th">Judul</th>
            <th class="col-3 text-center" id="th">No.LN</th>
            <th class="col-2 text-center" id="th"><span class="fa fa-download glyphicon glyphicon-download-alt"></span></th>
          </tr>
          <tr id="tr">
            <td id="td">1</td>
            <td id="td"></td>
            <td id="td"></td>
            <td id="td"></td>
          </tr>
          <tr id="tr">
            <td id="td">2</td>
            <td id="td"></td>
            <td id="td"></td>
            <td id="td"></td>
          </tr>
        </table>
      </div>

      <div class="column">
        <div class="panel panel-primary">
            <div class="panel-heading">Peraturan Daerah Terpopuler</div>
        </div>

        <table>
        <tr>
            <th class="col-1 text-center">No.</th>
            <th class="col-6 text-center">Judul</th>
            <th class="col-3 text-center">No.LN</th>
            <th class="col-2 text-center">Unduh</th>
          </tr>
          <tr>
            <td>1</td>
            <td></td>
            <td></td>
            <td></td>
          </tr>
        </table>

      </div>

      <br/><br/><hr><hr><br/><br/>

      <div class="column">
        <div class="panel panel-primary">
            <div class="panel-heading">Daftar Ranperda</div>
        </div>
        <table>
          <tr>
            <th class="col-1 text-center">No.</th>
            <th class="col-6 text-center">Judul</th>
            <th class="col-3 text-center">No.LN</th>
            <th class="col-2 text-center"><span class="fa fa-download glyphicon glyphicon-download-alt"></span></th>
          </tr>
          <tr>
            <td>1</td>
            <td></td>
            <td></td>
            <td></td>
          </tr>
          <tr>
            <td>2</td>
            <td></td>
            <td></td>
            <td></td>
          </tr>
        </table>
      </div>

      <div class="column">
        <div class="panel panel-primary">
            <div class="panel-heading">Daftar Ranpergub</div>
        </div>
        <table class="border">
          <tr>
            <th class="col-1 text-center">No.</th>
            <th class="col-6 text-center">Judul</th>
            <th class="col-3 text-center">No.LN</th>
            <th class="col-2 text-center">Unduh</th>
          </tr>
          <tr>
            <td>1</td>
            <td></td>
            <td></td>
            <td></td>
          </tr>
          <tr>
            <td>2</td>
            <td></td>
            <td></td>
            <td></td>
          </tr>

        </table>
      </div>
    </div>

    </body>
    </html>