/*
  Copyright (c) 2012 The Chromium Authors. All rights reserved.
  Use of this source code is governed by a BSD-style license that can be
  found in the LICENSE file.
*/

/* Overall Style */
body {
  font-family: monospace;
  font-size: 10pt;
}

.btn {
  display: block;
}

/* Lookup Boxes */
.lookup-box {
  border: 1px solid gray;
  font-family: Helvetica, Arial;
}

.lookup-box input[type="text"] {
  font-family: monospace;
}

.lookup-box > div {
  padding: 2pt;
}

.lookup-box .header {
  font-weight: bold;
  font-size: 11pt;
  background-color: lightblue;
  border-bottom: 1px solid gray;
}

.lookup-box .desc {
  font-family: Helvetica, Arial;
  font-size: 8pt;
  margin-bottom: 5pt;
}

.lookup-box .input {
  padding: 4pt;
}

.lookup-box .input a {
  font-weight: bold;
}

.lookup-box .result {
  border-top: 1px solid gray;
  background-color: orange;
}

.lookup-box .error {
  color: red;
  font-weight: bold;
}

.lookup-box .result .name {
  font-weight: bold;
}

.lookup-box .result .value {
  font-family: monospace;
}

/* Table Styles */
table {
  border-collapse: collapse;
  border-color: rgb(100, 100, 100);
  border-style: solid;
  border-width: 1px 0px 1px 0px;
}

table td {
  padding: 3px;
  border-color: rgb(100, 100, 100);
  border-style: solid;
  border-width: 0px 1px 0px 1px;
}

thead {
  background-color: lightblue;
  font-weight: bold;
  border-style: solid;
  border-color: rgb(100, 100, 100);
  border-width: 0px 0px 2px 0px;
}

tbody tr:nth-child(odd) {
  background-color: rgb(230, 230, 230);
}

tbody tr:hover {
  background-color: orange;
}

/* Home Page */
#swap-changelog {
  float: right;
  font-size: 14pt;
  font-weight: bold;
  padding: 3pt;
}

#version-list {
  margin-top: 5pt;
  border: 0;
  width: 100%;
  height: 585px;
}
