/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* 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: 'Saira Stencil One';
    font-weight: normal;
    font-size: 250%;
  }
  div.npc_sheet div.key {
    text-transform: uppercase;
    font-family: 'Saira Stencil One';
    font-weight: normal;
    color: #999999;
  }
  div.npc_sheet div.name {
    font-size: 200%;
  }

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

  @media screen {
    body.dark_mode div.npc_sheet {
      background-image: url('https://khazad-cdn.com/mines/9a6dc6db9d55543d35a885c8286df0bb-0aaacadf1280ce24ac39bb516d489045.jpg');
      background-size: cover;
      color: #312420;
    }
    body.dark_mode div.key {
      color: #494069;
    }
    body.dark_mode div.npc_sheet div.image img {
      filter: sepia(100%) hue-rotate(135deg);
    }
  }

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

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