<section class="c-modal">
    <div class="c-modal__container o-stack--sm">
        <header class="c-modal__header">
            <h2 class="o-heading">Welcome!</h2> <button role="button" aria-label="Close modal" class="c-btn c-modal__btn-close">&times;</button>
        </header>
        <div class="c-modal__content">
            <div class="o-stack--sm">
                <h3 class="o-heading--sm">We are plased to announce Hawkeye's newly improved design.</h3>
                <p>Our goal is to create a user-friendly experience for our customers and business partners. You may find a more streamlined experience thanks to improvements on the page structure and usability.</p>
                <p>We hope that you find the new website with a fresh look and easy to access information. If you have any comments, questions or suggestions please send them our way.</p>
                <div class="o-grid o-grid--auto--content u-mt-3">
                    <button type="submit" name="button" class="c-btn c-btn--primary">Understood</button>
                </div>
            </div>
</section>
<section class="c-modal">
  <div class="c-modal__container o-stack--sm">
    <header class="c-modal__header">
      <h2 class="o-heading">Welcome!</h2> <button role="button" aria-label="Close modal" class="c-btn c-modal__btn-close">&times;</button>
    </header>
    <div class="c-modal__content">
      <div class="o-stack--sm">
        <h3 class="o-heading--sm">We are plased to announce Hawkeye's newly improved design.</h3>
        <p>Our goal is to create a user-friendly experience for our customers and business partners.
        You may find a more streamlined experience thanks to improvements on the page structure and usability.</p>
          <p>We hope that you find the new website with a fresh look and easy to access information. If you have any comments, questions or suggestions please send them our way.</p>
      <div class="o-grid o-grid--auto--content u-mt-3">
        <button type="submit" name="button" class="c-btn c-btn--primary">Understood</button>
      </div>
  </div>
</section>
/* No context defined for this component. */
  • Content:
    .c-modal {
      display: flex;
      position: fixed;
      z-index: 1000;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      margin: 0;
      overflow-y: scroll;
      background-color: rgba($color-brand-secondary-1000, 0.7);
    }
    
      .c-modal__container {
        width: 90vw;
        margin: auto;
        padding: $space-md;
        border-radius: $global-radius;
        background-color: $color-white;
    
        @include mq(600px) {
           width: 50vw;
        }
      }
    
      .c-modal__header {
        display: flex;
        align-items: center;
        padding-bottom: $space-unit;
        border-bottom: rem(1) solid $color-grey-500;
      }
    
        .c-modal__btn-close {
          min-width: auto;
          min-height: auto;
          margin-left: auto;
          padding: 0;
          border: 0;
          background: transparent;
          box-shadow: none;
          color: $color-text;
          font-size: $text-size-3;
    
          @include acthocus() {
            padding: 0;
            background: transparent;
            box-shadow: none;
            color: lighten($color-text, 20%);
          }
        }
    
    .c-modal--side {
      position: absolute;
      z-index: 100;
      top: 0;
      right: 0;
      bottom: 0;
      width: rem(308);
      min-height: 100vh;
      margin: 0;
      padding: $space-unit 0 $space-unit $space-xl;
      transform: translateX(rem(270));
      transition: $global-transition;
      border-left: rem(1) solid $color-grey-200;
      background-color: $color-grey-100;
      cursor: pointer;
    
      > * > * {
        margin-top: $space-unit;
      }
    
      &:hover {
        border-color: $color-grey-300;
        background-color: $color-brand-primary-0;
        box-shadow: rem(-2) 0 rem(1) 0 rgba($color-grey-900, 0.2);
      }
    
      &.is-open {
        padding: $space-lg;
        transform: translateX(0);
        border: 0;
        border-left: rem(1) solid $color-grey-300;
        background-color: $color-grey-0;
        box-shadow: rem(-3) 0 rem(2) 0 rgba($color-grey-900, 0.2);
        cursor: default;
    
        .c-modal--side__close {
          display: block;
          content: '×';
          position: absolute;
          top: 0;
          right: rem(308);
          width: rem(40);
          height: rem(40);
          margin: $space-xs;
          padding: 0 $space-xs;
          border: 0;
          border: rem(1) solid $color-grey-300;
          border-radius: 50%;
          background: none;
          background: $color-btn-background;
          font-size: 2rem;
          line-height: 1;
          cursor: pointer;
    
          &:hover {
            background: $color-btn-background-hover;
            color: darken($color-btn, 10%);
          }
        }
    
        > .c-modal--side__title {
          position: static;
          transform: none;
          font-size: $text-size-5;
          letter-spacing: normal;
          text-transform: capitalize;
        }
      }
    
    }
    
      .c-modal--side__title {
        position: sticky;
        top: 0;
        transform: translate(rem(-164), 25vh) rotate(-90deg);
        font-size: $text-size-7;
        letter-spacing: rem(1);
        text-transform: uppercase;
        @include text-preset-4--sm;
      }
    
      .c-modal--side__close {
        display: none;
      }
    
  • URL: /components/raw/modal/_modal.scss
  • Filesystem Path: components/_code-components/modal/_modal.scss
  • Size: 2.9 KB
  • Content:
    var sideModal = document.querySelectorAll('.c-modal--side');
    var sideClose = document.querySelectorAll('.c-modal--side__close');
    
    // Add open class by clicking the parent
    for (var i = 0, l = sideModal.length; i < l; i++) {
      sideModal[i].onclick = function() {
        this.classList.add('is-open');
        return false;
      }
    }
    
    // Remove open class of the parent
    for (var i = 0, l = sideClose.length; i < l; i++) {
      sideClose[i].onclick = function() {
        this.parentElement.classList.remove('is-open');
        event.stopPropagation();
        return false;
      }
    }
    
  • URL: /components/raw/modal/modal.js
  • Filesystem Path: components/_code-components/modal/modal.js
  • Size: 551 Bytes

There are no notes for this item.