@import "/tutorials/base.css";

#cssTestWidget {
   position:fixed;
   right:0;
   bottom:0;
   opacity:0.75;
   filter:alpha(opacity=75);
   z-index:1000;
   width:20em;
   max-width:100%;

   -moz-box-sizing:box-border;
   -webkit-box-sizing:box-border;
   box-sizing:box-border;
}

#cssTestWidget textarea {
   width:95%;
   margin:0 0.25em;

   -moz-box-sizing:box-border;
   -webkit-box-sizing:box-border;
   box-sizing:box-border;
}

.exampleTest {
   max-width:50em;
   display:inline-block;
}

.applyButton {
   padding-left:1em;
   float:right;
}

@media print {
   #cssTestWidget, .submenu {
      display:none;
   }

}