/**
 * @file
 * Styles for node preview page.
 */

.node-preview-container {
    background: #d1e8f5;
    background-image: -webkit-linear-gradient(top, #d1e8f5, #d3e8f4);
    background-image: linear-gradient(to bottom, #d1e8f5, #d3e8f4);
    font-family: Arial, sans-serif;
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.3333);
    position: fixed;
    z-index: 499;
    width: 100%;
    padding: 5px 10px;
}

@media only screen and (min-width: 36em) {
  .node-preview-container .form-type-select {
    margin-left: 25%; /* LTR */
  }
  [dir="rtl"] .node-preview-container .form-type-select {
    margin-right: 25%;
    margin-left: 0;
  }
}
