/**
 * about:blank stripes
 * by wifflebunz http://userstyles.org/users/23718
 *
 * Firefox 4+
 */

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url("about:blank") {

body:empty {
margin: 0 !important;
padding: 0 !important;
height: 100% !important;
width: 100% !important;
background-color: #eaeaea !important;
background-image:
  -moz-radial-gradient(center 20% 45deg, transparent 20%, rgba(0,0,0,.2) 90%),
  -moz-linear-gradient(left, rgba(200,200,200,.2) 32px, transparent 0),
  -moz-linear-gradient(top, #f3f3f3, #eaeaea)
  !important;
background-position: center !important;
background-size: cover, 60px 100%, cover !important;
background-repeat: no-repeat, repeat, repeat !important;
}

body:empty:-moz-window-inactive {
background-image:
  -moz-radial-gradient(center 20% 45deg, transparent 20%, rgba(0,0,0,.1) 90%),
  -moz-linear-gradient(left, rgba(200,200,200,.2) 32px, transparent 0),
  -moz-linear-gradient(top, #f3f3f3, #eaeaea)
  !important;
}

}