@import url(https://fonts.googleapis.com/css?family=Black+Ops+One|Abel|Open+Sans);/*
 *  Provides an easy interface to import all modules into every scss file.
 *
 *  MAKE SURE ALL CURRENT MODULES ARE IMPORTED BELOW!
 */

/*****  ALL-PURPOSE COLORS  *****/

/*****  TABLE COLORS  *****/

/*****  SECTION COLORS  *****/

/*****  NAVIGATION COLORS  *****/

/*****  FOOTER COLORS  *****/

/*****  SCROLLBAR COLORS  *****/

/*
 *     CSS Document  - Login
 *
 * Provides the styling for the login/logout
 * page and any other non-authenticated pages.
 *
 */

* {
  box-sizing: border-box;
}

html,
body {
  background-color: #111;
  font-size: 18px;
  color: #FFF;
  height: 100%;
  width: 100%;
  font-family: "Abel", sans-serif;
  line-height: 26px;
  margin: 0px;
  padding: 0px;
  text-align: center;
}

img {
  border: 0;
}

a:link,
a:visited {
  /* unvisited/visited link */
  text-decoration: none;
  color: inherit;
}

a:hover {
  /* mouse over link */
  text-decoration: underline;
}

a.noUnderline:hover {
  text-decoration: none;
}

a:active {
  /* selected link */
  text-decoration: underline;
  color: #666;
}

#content {
  display: block;
  margin: auto;
  width: 400px;
}

form {
  width: 100%;
  min-width: 0;
  margin: 0px;
  padding: 0px;
  line-height: 24px;
}

input {
  width: 100%;
  height: 40px;
  border: 1px solid #666;
  font-size: 20px;
  font-family: "Abel", sans-serif;
  padding: 5px 10px;
  text-align: left;
  margin: 10px 0px;
  background-color: #FFF;
  color: #000;
  text-decoration: none;
  border-radius: 3px;
}

input[type=submit] {
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  color: #FFF;
  background-color: #CF1020;
  border: 2px solid #333;
  margin-top: 20px;
}

input[type=submit]:hover {
  background-color: #333;
  border: 2px solid #CF1020;
}

.obsidianText {
  font-family: "Black Ops One", sans-serif;
  font-size: 70px;
  line-height: 60px;
}

.title {
  font-size: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  margin: 20px;
  margin-top: 100px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}

#footer {
  margin: auto;
  width: 100%;
  text-align: center;
  color: #888;
  clear: both;
  font-size: 12px;
  position: absolute;
  bottom: 15px;
}

#browserNote {
  text-align: center;
  font-weight: bold;
  color: #AAA;
  visibility: hidden;
}

