Sha256: 0b7662ea8022b2b983894cb432f35811c89d300b80f0fffceff351ef50140f60

Contents?: true

Size: 1.73 KB

Versions: 1

Compression:

Stored size: 1.73 KB

Contents

/* ==========================================================================
   Media
   ========================================================================== */
/* Medium Devices, Desktops */
@media only screen and (max-width : 1024px) {
  .post {
    max-width: 100%;
    margin: 0 0.9% 1.5%;
    flex-direction: column;

    .post-thumbnail {
      width: 100%;
    }

    .post-content {
      width: 100%;

      .post-title {
        margin: 0 0 5px;

        a {
          font-size: 21px;
        }
      }
    }
  }
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
  .sidebar {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    background-color: #ffffff;
    box-shadow: 0 1px 1px 0 rgba(31, 35, 46, .15);

    footer {
      margin-bottom: 10px;
    }
  }

  .about {
    text-align: center;
    max-width: 480px;
    margin: 10px auto auto;

    img {
      margin-bottom: 10px;
    }
  }

  .content-box {
    padding: 20px 10px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .content-header {
    padding: 20px 10px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .contact-title,
  .copyright {
    display: none;
  }
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
  .content-box {
    padding: 10px;
  }

  .content-header {
    padding: 10px;
  }

  .post {
    max-width: 100%;
    margin: 2%;
    flex-direction: column;

    .post-thumbnail {
      width: 100%;
    }

    .post-content {
      width: 100%;

      .post-title {
        margin: 0 0 5px;

        a {
          font-size: 21px;
        }
      }
    }
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
domain-jekyll-1.3.0 _sass/domain/_media.scss