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

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* npc sheet */

  div.npc_sheet {
    border: 1px solid;
    font-family: 'Hack';
  }
  div.npc_sheet div.section.header {
    margin: 2ex 0px;
  }
  div.npc_sheet div.section.header h1 {
    margin: 0px;
    text-align: left;
    text-transform: uppercase;
    font-family: 'OCR-A';
    font-weight: normal;
    font-size: 200%;
  }
  div.npc_sheet div.key {
    text-transform: uppercase;
    font-family: 'OCR-A';
    color: #999999;
  }
  div.npc_sheet div.name {
    font-size: 200%;
  }

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* dark mode */

  @media screen {
    body.dark_mode div.npc_sheet {
      font-family: 'OCR-A';
      color: #993399;
    }
    body.dark_mode div.key {
      color: #993399;
    }
    body.dark_mode div.cell:hover {
      background: #993399;
      color: #ffffff;
    }
    body.dark_mode div.cell:hover div.key {
      color: #ffffff;
    }
    body.dark_mode div.npc_sheet div.image img {
      filter: sepia(100%) hue-rotate(75deg) saturate(200%);
    }
    body.dark_mode svg {
      color: #993399;
    }
  }

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* 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; }
  }   

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