/************************************************************************/
/* This program is free software: you can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation, either version 3 of the License, or    */
/* (at your option) any later version.                                  */
/*                                                                      */
/* This program is distributed in the hope that it will be useful,      */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of       */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        */
/* GNU General Public License for more details.                         */
/*                                                                      */
/* You should have received a copy of the GNU General Public License    */
/* along with this program.  If not, see <http://www.gnu.org/licenses/>.*/
/************************************************************************/

/*
 *main.css
 *Stuff goes here until it is moved elsewhere.
 */

/* MAIN */
body {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  background-color: #101214;
}

img {
  align-self: flex-start;
}

.resource {
  display: none;
}

/* LOGGER */
#console-container {
  display: flex;
  align-self: stretch;
  flex: 1 1 auto;
}
.console {
  display: flex;
  align-self: stretch;
  flex: 1 1 auto;
  flex-flow: column nowrap;
  padding: 0.5em 0em;

  border-left: 0.5em solid #e0e0e0;
  background-color: #f0f0f0;
}

.log-death,.log-error,.log-warn,.log-note,.log-v,.log-good{
  display: block;
  padding: 0em 0.5em;
  white-space: pre-line;
}

.log-death {
  color: #e0e0e0;
  background-color: #671140;
}

.log-error {
  color: #e0e0e0;
  background-color: #801815;
}

.log-warn {
  color: #AA6D39;
}

.log-note {
  color: rgba(0,0,0,0.9);
}

.log-v { /* v stands for verbose */
  color: rgba(0,0,0,0.5);
}

.log-good {
  color: #236467;
}
