Sha256: 11c08d530b16c1d0398854952dcf45224a1f3f2a2e3db9c0b7ac5e54364f6553

Contents?: true

Size: 1.52 KB

Versions: 7

Compression:

Stored size: 1.52 KB

Contents

/* ---- Modal ------------------------ */

  .modal {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -101%;
    width: 100%;
    z-index: 20;
    transition: all 0s 0.3s linear;
    text-align: center;
  }
  .modal .overlay {
    background-color: rgba(255, 255, 255, 0.93);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.001;
    transition: all 0.3s ease;
  }
  .modal .table {
    width: 100%;
  }
  .modal .table .td {
    padding: 0 1rem;
  }
  .modal .table > div {}
  .modal .modal-body-wrapper {
    position: relative;
    max-width: 923px;
    margin: 0 auto 100px;
    border-radius: 6px;
    opacity: 0.001;
    transform: scale(0.96);
    transition: all 0.2s ease;
  }
  .modal .modal-header,
  .modal .modal-body {
    // padding: 14px 60px;
    background-color: rgba(255, 255, 255, 0);
  }
  .modal .modal-header {
    text-align: center;
    position: relative;
    margin-bottom: 0;
  }
  .modal .modal-header .x1 {
    top: 0.9rem;
    right: 0.9rem;
    &:hover {}
  }
  .modal .modal-body {
    margin: 0;
    min-height: 0;
  }
  @media (max-width: 550px) {
    .modal .modal-body-wrapper {
      margin-bottom: 1rem;
    }
  }

  /* Modal active */

  .modal.active {
    left: 0;
    transition: all 0s 0s linear;
  }
  .modal.active .overlay {
    opacity: 0.999;
    transition: all 0.2s ease;
  }
  .modal.active .modal-body-wrapper {
    opacity: 0.999;
    transform: translateY(0);
    transition: all 0.3s ease;
  }

  /* Modal types */
  /* ... */

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
github-docs-0.1.0 _sass/cherry/_modal.scss
github-docs-0.0.22 _sass/cherry/_modal.scss
github-docs-0.0.21 _sass/cherry/_modal.scss
github-docs-0.0.19 _sass/cherry/_modal.scss
github-docs-0.0.18 _sass/cherry/_modal.scss
github-docs-0.0.7 assets/css/cherry/_modal.scss
github-docs-0.0.6 assets/css/cherry/_modal.scss