/* openjscad.css, originally written by Joost Nieuwenhuijse
 *    few changes made by Rene K. Mueller for OpenSCAD.org
 */
#filebuttons {
  /* float: right; */
  margin-left: 2em;
  display: inline;
}

canvas { 
  cursor: move; 
}

.downloadOutputFileLink {
   padding: 2px;
   padding-left: 8px;
   padding-right: 8px;
   border: 1px solid black;

   border-radius: 4px;  /* css mess */
   -webkit-border-radius: 4px;
   -moz-border-radius: 4px;

   background: #d8f;
   background: -webkit-gradient(linear, left top, left bottom, from(#ddd), to(#efefef));
   background: -moz-linear-gradient(top,  #ddd,  #efefef);

   text-decoration: none;
   color: black;
   font-size: 0.8em;
   font-weight: normal;
   box-shadow: 0px 0px 8px #808080;
}

#parametersdiv {
  /* display: inline-block;     ineffective since we do control in openjscad.js */
  position: absolute;         

  bottom: 9em;                /* draggable via jQuery cannot move bottom: align, stick at the bottom (bug!!) */
  left: 1em;
  /* top: 2em;                if draggable, but must be left/top oriented, cannot be aligned bottom which looks nicer
     left: 16em;
   */
  
  z-index: 4;
  border: 1px solid rgb(200,200,200);
 
  border-radius: 5px;     
  -moz-border-radius: 5px;    /* css mess */
  -webkit-border-radius: 5px;

  padding: 10px;
  background: #fff;
  opacity: 0.8;
  
  /* box-shadow: 0px 0px 15px black;  no shadow, it would indicate moveable/dragable */
  
  /* cursor: move;     moveable now */
}
#parametersdiv td {
  font-size: 0.8em;
}
#parametersdiv input, #parametersdiv textarea, #parametersdiv select {
  font-size: 0.9em;
  background: #f6f6f6;
  border: none;
}

#parametersdiv .parameterheader {
   font-weight: bold;
   font-size: 0.9em;
}

#parametersdiv .caption {
   text-align: right;
}

#instantUpdate {
   margin-left: 1em;
}

#instantUpdateLabel {
   font-size: 0.9em;
}

.statusdiv {
}
