/*
    Document   : style.css
    Created on : Sep 18, 2012, 9:44:09 PM
    Author     : sbourget
    Description: CSS rules for all pages in the check-in application.
*/

@charset "utf-8";
/* CSS Document */

/*
* CSS USED FOR GENERAL CLASSES
*/

.center {
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}

.clear {
    clear:both;
}

div.header-logo {
    width:100%;
    height: 130px;
}
header.header-main {
    border-bottom: black 4px solid;
}
h1.card-header {
    font-size: 1.3em;
}

h2.card-body {
    font-size: 1.1em;
}

a {
    color: #1178a1;
}

.inline {
    display:inline;
}

.spacer {
    margin-bottom:30px;
}
/**
* CSS USED FOR LOGIN / LOGOUT
*/

.loggedinuser {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align:right;
    background-color: white;
    opacity: 0.75;
    padding: 8px;
    border-radius: 25px;

}

.loggedoutuser {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align:right;
    background-color: white;
    opacity: 0.75;
    padding: 8px;
    border-radius: 25px;
}

/**
 * Login Form
**/
.form-signin {
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
}

.form-signin .form-signin-heading,
.form-signin {
  margin-bottom: 10px;
}

.form-signin .form-control {
  position: relative;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  font-size: 16px;
}

.form-signin .form-control:focus {
  z-index: 2;
}

.form-signin input[type="text"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.form.right, .form.left {
    border: 2px solid #D88F71;
    height: 100px;
}

/*
* CSS USED FOR DEBUGGING OUTPUT
*/


.post {
    color:red;
}

.get {
    color:orange;
}

.session {
    color:green;
}

.cookie {
    color:#a0522d;
}

.file {
    color:blue;
}

.server {
    color:purple;
}

