/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/

/*
 * This css file is part of jquery terminal
 *
 * Licensed under GNU LGPL Version 3 license
 * Copyright (c) 2011-2013 Jakub Jankiewicz <http://jcubic.pl>
 *
 */
.terminal .terminal-output .format,
.terminal .cmd .format,
.terminal .cmd .prompt,
.terminal .cmd .prompt div,
.terminal .terminal-output div div {
  display: inline-block;
}
.terminal .clipboard {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.01;
  width: 2px;
}
.cmd > .clipboard {
  position: fixed;
}
.terminal {
  padding: 10px;
  position: relative;
  overflow: hidden;
}
.cmd {
  padding: 0;
  margin: 0;
  height: 1.3em;
  /*margin-top: 3px; */
}
.terminal .terminal-output div div,
.terminal .prompt {
  display: block;
  line-height: 18px;
  height: auto;
}
.terminal .prompt {
  float: left;
}
.terminal {
  font-family: FreeMono, monospace;
  color: #00FF50;
  background-color: rgba(20, 25, 25, 0.95);
  font-size: 16px;
  line-height: 18px;
}
.terminal-output > div {
  /*padding-top: 3px;*/
  min-height: 18px;
}
.terminal .terminal-output div span {
  display: inline-block;
}
.terminal .cmd span {
  float: left;
  /*display: inline-block; */
}
.terminal .cmd span.inverted {
  background-color: #aaa;
  color: #000;
}
.terminal .terminal-output div div::-moz-selection,
.terminal .terminal-output div span::-moz-selection,
.terminal .terminal-output div div a::-moz-selection {
  background-color: #aaa;
  color: #000;
}
.terminal .terminal-output div div::selection,
.terminal .terminal-output div div a::selection,
.terminal .terminal-output div span::selection,
.terminal .cmd > span::selection,
.terminal .prompt span::selection {
  background-color: #aaa;
  color: #000;
}
.terminal .terminal-output div.error,
.terminal .terminal-output div.error div {
  color: red;
}
.tilda {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
}
.clear {
  clear: both;
}
.terminal a {
  color: #0F60FF;
}
.terminal a:hover {
  color: red;
}

@import 'jquery.terminal.css';
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
}
@-webkit-keyframes animateBody {
  from {
    background-position: 0 bottom;
  }
  to {
    background-position: 100% bottom;
  }
}
@-moz-keyframes animateBody {
  from {
    background-position: 0 bottom;
  }
  to {
    background-position: 100% bottom;
  }
}
@keyframes animateBody {
  from {
    background-position: 0 bottom;
  }
  to {
    background-position: 100% bottom;
  }
}
body {
  background-image: url(images/flappybg.png);
  background-repeat: repeat-x;
  background-position: 0px bottom;
  background-color: #70c6d3;
}
body.play {
  -webkit-animation-name: animateBody ;
  -webkit-animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -webkit-animation-direction: reverse;
  animation-name: animateBody ;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: reverse;
}
.terminalContainer {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
}
