/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* job/style.css
 *
 * copyright (c) 2022-2025 drow <drow@bin.sh>
 * all rights reserved
*/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* job form */

  div.job_sheet {
    margin: 4ex 2em;
    border: 1px solid;
    padding: 1ex 1em;
    padding-top: 4ex;
  }
  div.job_sheet div.row {
    margin-bottom: 2ex;
    display: flex;
  }
  div.job_sheet div.cell {
    flex-grow: 1;
    padding: 0.5ex 0.5em;
  }
  div.job_sheet div.cell:not(:first-child) {
    margin-left: 2ex;
  }
  div.job_header h1 {
    margin: 0px;
    text-align: left;
    font-size: 250%;
  }
  div.job_sheet div.data {
    border: 1px solid;
    display: flex;
  }
  div.data div:not(:first-child) {
    margin-left: 2ex;
  }
  div.job_sheet div.key {
    white-space: nowrap;
    font-family: 'OCR-A';
    font-weight: bold;
    color: #999999;
  }
  div.job_sheet div.entry {
    flex-grow: 1;
    text-align: center;
    font-family: 'Covered By Your Grace';
    font-size: 200%;
  }
  div.job_sheet div.icon {
    min-width: 24px;
  }

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* media */

  @media screen {
    .print_only { display: none; }
  }
  @media print {        
    .layout_header { display: none; }
    .layout_footer { display: none; }
    .screen_only { display: none; }
    .print_only { display: block; }
  }   

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
