Sha256: e30e32c63b5ea5629e8ac9e33656c5c3c89e5a1ee648a6524a8720c9d5a240be

Contents?: true

Size: 814 Bytes

Versions: 5

Compression:

Stored size: 814 Bytes

Contents

// style for bPopup

.modal{
  @include pad(20px);
  top: 20px !important;

  background: $modal_color;
  border-radius: 3px;
  border: solid 1px black;
  box-shadow: 0 0 10px 1px rgb(32, 32, 32);

  .header-text{
    font-size: $modal_title_font_size;
  }

  .question{
    @include pad(0 0 10px 0);
    font-size: 25px;
  }

  .text{
    @include pad(0 0 10px 0);
    font-size: $modal_section_font_size;
  }

  .other_html{
    position: relative;
  }

  .bClose{
    @include pad(1px 10px);

    background: white;
    z-index: 999;
    position: absolute;
    color: black;
    font-weight: bold;
    top: -21px;
    right: -25px;
    border-radius: 50%;
    border: solid 3px black;
    cursor: pointer;

    &:hover{
      background: black;
      color: white;
    }
  }

  .footer{
    height: auto;
  }
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
waterfall_bourbon_neat_rails-2.0.2.1 app/assets/stylesheets/custom/components/modals/_modals.scss
waterfall_bourbon_neat_rails-2.0.2 app/assets/stylesheets/custom/components/modals/_modals.scss
waterfall_bourbon_neat_rails-2.0.1.9.1 app/assets/stylesheets/custom/components/modals/_modals.scss
waterfall_bourbon_neat_rails-2.0.1.9 app/assets/stylesheets/custom/components/modals/_modals.scss
waterfall_bourbon_neat_rails-2.0.1.8 app/assets/stylesheets/custom/components/_modals.scss