cctiger36/batch_manager

View on GitHub
app/assets/stylesheets/batch_manager/application.css

Summary

Maintainability
Test Coverage
/*
 *= require_self
 *= require_tree .
 */

body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 13px;
  line-height: 18px;
  color: #333;
  background: #fff;
}

#wrapper {
  width: 1200px;
  margin: 0 auto;
  min-height: 600px;
}

header {
  height: 36px;
  padding: 5px;
  background: #F1F1F1;
  -webkit-box-shadow: 0 1px 10px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 1px 10px rgba(0,0,0,0.1);
  box-shadow: 0 1px 10px rgba(0,0,0,0.1);
  border-bottom: 1px solid #d4d4d4;
  margin-bottom: 20px;
}

header .inner {
  width: 1200px;
  margin: 0 auto;
}

header h1 {
  float: left;
  margin: 0;
  padding: 0;
  font-family: "Yanone",sans-serif;
  font-size: 18px;
  line-height: 36px;
  font-weight: normal;
  text-shadow: 0 1px 0 #ffffff;
}

header h1 a {
  color: #777777;
  text-decoration: none;
}

header .new_link {
  float: right;
  font-size: 14px;
  line-height: 36px;
  font-weight: bold;
}

header .new_link a {
  color: #ccc;
  text-shadow: 0 1px 1px #ffffff;
  text-decoration: none;
}

header .new_link a:hover {
  color: #aaa;
  text-decoration: underline;
}

.title {
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e2e2e2;
}

.title .new_batch {
  color: #aaa;
  line-height: 22px;
}

.title input {
  margin: 0;
  margin-top: -2px;
  padding: 2px 5px;
  font-size: 14px;
  line-height: 18px;
  width: 250px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  color: #555;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
}

h2 {
  color: #777;
  font-size: 18px;
  line-height: 18px;
  margin: 0;
  padding: 0;
}

textarea {
  border: 1px solid #ccc;
  color: #333;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  height: 500px;
}

#editor {
  border: 1px solid #ccc;
  width: 100%;
  height: 500px;
}

a.cancel {
  color: #aaa;
  text-decoration: none;
}

a.cancel:hover {
  color: #999;
  text-decoration: underline;
}

.divider {
  padding: 0 5px;
  color: #aaa;
}

footer {
  text-align: center;
  padding: 30px 0;
  margin-top: 70px;
  border-top: 1px solid #e5e5e5;
  background-color: #f5f5f5;
}

footer p {
  padding: 0;
  margin: 0;
  color: #999;
  text-shadow: 0 1px 1px #ffffff;
}

footer a {
  color: #999;
  font-weight: bold;
  text-decoration: none;
}

footer a:hover {
  color: #777;
  text-decoration: underline;
}

.group:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}