@import "compass/css3";

$scanLineWidth: 1px;

html, body, .fullHeight {
  height: 100%;
  margin: 0;
}

.image {
  background: url("http://upload.wikimedia.org/wikipedia/commons/2/2f/G%C3%BCnz6.jpg") no-repeat center;
}

.scanLines {
  /*** WEBKIT ***/
  background: -webkit-repeating-linear-gradient(
    top,
    transparent 0px,
    transparent $scanLineWidth,
    rgba(0,0,0,0.25) $scanLineWidth,
    rgba(0,0,0,0.25) $scanLineWidth*2
  );
  -webkit-background-size: 100% $scanLineWidth*2;
  /** MOZILLA **/
  background: -moz-repeating-linear-gradient(
    top,
    transparent 0px,
    transparent $scanLineWidth,
    rgba(0,0,0,0.25) $scanLineWidth,
    rgba(0,0,0,0.25) $scanLineWidth*2
  );
  -moz-background-size: 100% $scanLineWidth*2;
}