﻿/* ======================================= */
/*  TPSDebug.css                           */
/*                                         */
/*  DEBUG CONSOLE WIDGET STYLING           */ 
/* ======================================= */
.clsTPSDEBUGCONTROLS {
  border: solid red 3px;
  background-color: Black;
  color: White;
  margin: 0 1.3em;;
  padding: .3em .5em;
  font-family: Courier New;
  font-family: 'Trebuchet MS';
  font-size: .9em;
  height: 3em;
}
.clsTPSDEBUGPANEL {
  border: solid red 3px;
  background-color: Black;
  color: White;
  margin: 0 1.3em;
  margin-bottom: .85em;
  padding: 0 .5em;
  font-family: Courier New;
  xfont-family: 'Trebuchet MS';
  font-size: .9em;
  height: 6.5em;
}
.clsTPSCONSOLE {
  font-family: 'courier new';
  xfont-family: 'Trebuchet MS';
  font-size: 1em;
}
.clsTPSCLEARBUTTON-blue {
  border: solid #303030 1px;
  text-decoration: none;
  color: black;
  background: linear-gradient(to bottom, white 0%, #AEBBFE 100%);
  border-radius: 5px;
  font-size: .85em;
  margin-top: 0.4em;
  margin-right: .5em;
  margin-bottom: .5em;
  padding: 0.3em 0.8em;
  width: 7em;
}
.clsTPSCLEARBUTTON-blue:hover {
  font-weight      : bold;
  text-decoration  : underline;
  background-color : #6876fc;
  background       : linear-gradient(to bottom, white 0%, #CBCEEF 50%, #6876fc 100%);
}
.clsTPSCLEARBUTTON-blue:focus {
  font-weight      : bold;
  text-decoration  : underline;
  background-color : #6876fc;
  background       : linear-gradient(to bottom, white 0%, #CBCEEF 50%, #6876fc 100%);
}
.clsASSERTPASS {
  color: white;
  background-color: green;
  font-weight: bold;
}
.clsASSERTFAIL {
  color: yellow;
  background-color: red;
  font-weight: bold;
}