@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Force table to not be like tables anymore */
  table, thead, tbody, th, td, tr {
    display: block;
  }

  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 70%;
  }

  td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 25%;
    padding-right: 10px;
    white-space: nowrap;
  }

  /* Label the data */
  .projects-1 td:nth-of-type(1):before { content: "Geocoder"; }
  .projects-1 td:nth-of-type(2):before { content: "GeocoderBundle (Symfony2)"; }
  .projects-1 td:nth-of-type(3):before { content: "GeocoderModule (ZF2)"; }
  .projects-1 td:nth-of-type(4):before { content: "GeocodableBehavior (Propel)"; }

  .projects-2 td:nth-of-type(1):before { content: "StackGeoIp"; }
  .projects-2 td:nth-of-type(2):before { content: "Geocoder for Silex"; }
  .projects-2 td:nth-of-type(3):before { content: "Geocoder for Laravel"; }
  .projects-2 td:nth-of-type(4):before { content: "GeocoderJS"; }

  .ecg td {
    text-align: left;
  }
}
