/*
Copyright 2012 Eiji Kitamura

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Author: Eiji Kitamura (agektmr@gmail.com)
*/
.box {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  background-color: gray;
  width: 300px;
  height: 200px;
  -webkit-transition: all 0.1s ease-out 0s;
}
.box div {
  background-color: #eee;
  border: outset 1px #aaa;
  -webkit-transition: all 0.1s ease-out 0s;
  white-space: no-wrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.hover {
  background-color: #555 !important;
  border-color: #111 !important;
}
.visual {
  margin: 5px 10px;
  display: -webkit-flex;
  -webkit-justify-content: center;
}
.sticky {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top: 15px;
}
.box-definition {
  border-radius: 5px;
  border: solid 1px gray;
  margin: 2px 0 2px 10px;
  padding: 0 5px;
}
.form {
  font-family: 'Courier New', monospace;
}
.form i {
  margin-left: -23px;
}
ul {
  list-style: none;
}
li {
  min-height: 24px;
}
select,
input {
  margin: 0;
  border: none !important;
  background: transparent !important;
  -webkit-appearance: none !important;
  box-shadow: none !important;
  font-family: 'Courier New', monospace;
}
select {
  width: 100px !important;
}
input {
  width: 60px !important;
}
select:hover,
input:hover {
  outline: 1px solid #ccc;
}
@media (max-width: 767px) {
  .hero-unit {
    padding: 20px;
  }
  .sticky {
    position: static;
  }
}
