Sha256: 42dd73ee6eaaddc20811bda776ea3c9596addea05e9de1448174e23da37e6c4d

Contents?: true

Size: 607 Bytes

Versions: 2

Compression:

Stored size: 607 Bytes

Contents

.overlay {

  /* must be initially hidden */
  display:none;
  /* place overlay on top of other elements */
  z-index:10000;
  position: absolute;
  /* styling */
  background-color: $content-background-color;

  width: $content-width - 100px;
  padding: 20px;
  min-height:200px;
  top: 0 !important;
  @include box-shadow(50px);
  @include corners-all(10px);
}

/* close button positioned on upper right corner */
.overlay .close {
  background:url(/assets/close.png);
  position:absolute;
  right:-15px;
  top:-15px;
  cursor:pointer;
  height:35px;
  width:35px;
}

.overlay img {
  max-width: 800px;
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sbdevcore-0.2.2 app/assets/stylesheets/_overlay.scss
sbdevcore-0.2.0 app/assets/stylesheets/_overlay.scss