@charset "UTF-8";
div.warning {
  border: 2px solid red;
}

@keyframes Shake {
    0%      {transform: translate( 0px,  0px)}
   99%      {transform: translate( 0px,  0px)}
   99.1%    {transform: translate( 1px,  2px)}
   99.2%    {transform: translate( 2px, -1.5px)}
   99.3%    {transform: translate(-2px,  1.5px)}
   99.4%    {transform: translate( 0px,  4px)}
   99.5%    {transform: translate( 0px, -1px)}
   99.6%    {transform: translate( 2px,  2px)}
   99.7%    {transform: translate( 2px, -1.5px)}
   99.8%    {transform: translate( 1px, -2px)}
   99.9%    {transform: translate( 2px, -2px)}
   100%     {transform: translate( 0px,  0px)}
}

.DemiplaneWarning {
  width: 100%;
  text-align: center;
  color: #ddddff;
  font-weight: bold;
  background-color: #112280;
  padding-top: 0.25em;
  padding-bottom: 0.5em;
}

.DemiplaneWarning h3 {
  animation: Shake 15s;
  animation-iteration-count: infinite;
  margin-bottom: 0px;
}
.DemiplaneWarning h5 {
  margin-top: 0px;
}

div.full-width-container {
  margin: 0 2rem;
}

table.table-sticky-header>thead>tr>th {
  position: sticky;
  top: 0;
  background-color: lightblue;
}

table.diff {
  width: 100%;
  font-family: 'Courier New', Courier, monospace;
}
table.diff a:target {
  background-color: greenyellow;
}

table.diff span.diff_chg, table.diff span.diff_add, table.diff span.diff_sub {
  background-color:yellow;
}

table.thin-table td,
table.thin-table th {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* 

Color coded bar on each page to make sure no confusion between dev/prod.
The known envs are in the HUMAN_READABLE_ENV_NAME: 
 - Unknown
 - DEMIPLANE
 - LXC
 - Production
 - QA
 - Sandbox
 - Staging
 - VM
*/

div.bar {
  width: 100%;
  height: 5px;
  position: sticky;
  top: 0;
}

/* Player facing environment: extreme caution advised */
div.bar.env-name-Production {
  background-color: red;
}

/* Shared environment between devs/external/qa but not players. Don't be silly. */
div.bar.env-name-Staging, div.bar.env-name-Develop, div.bar-env-name-Sandbox {
  background-color: yellow;
}

/* Your own disposable environment. Go to town. */
div.bar.env-name-VM, div.bar.env-name-LXC {
  background-color: limegreen;
}

/* Your own disposable environment. Go to town. */
div.bar.env-name-DEMIPLANE, div.bar.env-name-Unknown {
  background-color: grey;
}

div.build-result-holder {
  min-width: 30rem;
}
div.build-result-holder>span:nth-child(1) {
  display:inline-block;
  min-width: 2rem;
}
div.build-result-holder>span:nth-child(2) {
  display:inline-block;
  min-width: 7rem;
}
div.build-result-holder>span:nth-child(3) {
  display:inline-block;
  min-width: 7rem;
}
div.build-result-holder>span:nth-child(4) {
  display:inline-block;
  min-width: 10rem;
}

div.build-result-holder > span:nth-child(2)::before {
  content: "P4: ";
  color: grey;
}
div.build-result-holder > span:nth-child(3)::before {
  content: "Unity: ";
  color: grey;
}

