/*
 * Armadillo File Manager
 * Copyright (c) 2010-2011, Robert Sesek <http://www.bluestatic.org>
 *
 * 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 any later version.
 */

body {
  font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
  padding: 1.5em;
  font-size: 1em;
  background-color: rgb(245, 245, 245);
}

h1 {
  font-size: 2em;
}

#footer {
  margin-top: 0.6em;
  font-size: 0.6em;
  text-align: right;
}

.smallfont {
  font-size: 0.7em;
}

#mkdir {
  float: right !important;
}

#ls {
  list-style: none;
}

#ls li {
  padding: .3em;
  min-height: 1.5em;
  line-height: 1.5em;
}

#ls li:nth-child(odd) {
  background-color: rgb(223, 235, 246);
}
#ls li:nth-child(even) {
  background-color: rgb(255, 255, 255);
}

#ls li.file-selected {
  background-color: rgb(255, 208, 164);
}

#ls li.file-active {
  background-color: rgb(255, 162, 74);
}

#ls li a {
  text-decoration: underline;
}

#error {
  border-style: solid;
  border-width: .15em;
  border-top-width: 0em;
  border-color: rgb(167, 40, 26);
  border-radius: 0em 0em .5em .5em;
  padding: .2em;

  background-color: rgba(167, 40, 26, 0.3);
  color: rgb(0, 30, 30);

  position: absolute;
  width: 75%;
  top: 0px;
  left: 0px;
  right: 0px;
  margin-left: auto;
  margin-right: auto;
}

.actor {
  background-color: rgb(77, 79, 83);

  padding: .1em;

  border-width: .1em;
  border-color: rgb(0, 0, 0);
  border-style: solid;
}

.tile {
  padding: 0em 1em 0em 1em;
  height: 2em;
  display: inline-block;
  margin: .1em;

  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(1, rgb(255,255,255)),
      color-stop(0, rgb(173,175,175))
  );
  background: -moz-linear-gradient(
      center bottom,
      rgb(255,255,255) 100%,
      rgb(173,175,175) 0%
  );

  border-top-color: black;
  border-left-color: black;
  border-right-color: rgb(100, 100, 100);
  border-bottom-color: rgb(100, 100, 100);
  border-style: solid;
  border-width: .1em;

  text-align: center;
  line-height: 1.75em;
}

.tile .title {
  font-size: 0.7em;
}

.tile:active {
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(0, rgb(255,255,255)),
      color-stop(1, rgb(173,175,175))
  );
  background: -moz-linear-gradient(
      center bottom,
      rgb(255,255,255) 0%,
      rgb(173,175,175) 100%
  );
}

.modalDialog {
  position: absolute;
  background: white;
  border: 3px solid red;
  padding: 5px;
  z-index: 99999;
  top: 25%;
  width: 50%;
  left: 25%;
}