/*
	@ Harris Christiansen (Harris@HarrisChristiansen.com)
	2016-01-25
	For: Purdue Hackers - Battleship
	Battleship Admin
*/

.mainContentContainer {
	position: fixed;
	width: 100%;
	height: 100%;
  padding: 0;
}

body {
  font-family: 'Lato';
  background-image: url('/images/white_wall_hash.png');
}

/* ------------------------ Title Page ------------------------- */

.titleImage {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: inline-block;
  margin-top: -150px;
  margin-bottom: -50px;
}
.titleWords {
  padding-top: 100px;
}
.titlePage {
	padding: 40px 15px;
	text-align: center;
	font-weight: 900;
}
.titlePageTitle {
  font-size: 92px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 4px;
  color: #345A6C;
  margin-bottom: 20px;
}
.titlePageSub {
  color: #BEBEBE;
  font-size: 24px;
  margin-bottom: -32px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.titlePageText {
  color: #888888;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.titlePageLink {
	font-size: 18px;
	color: #333333;
	text-decoration: none;
	font-weight: 400;
	background-color: #BEBEBE;
	padding: 10px 14px;
	border-radius: 4px;
	color: white;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: all 0.1s ease;
}
.titlePageLink:hover {
  text-decoration: none;
  color: white;
  background-color: #345A6C;
}

/* ------------------------ Leaderboard ------------------------- */

.leaderboardTable {
	text-align: left;
}

.leaderboardTable td:first-child, .leaderboardTable th:first-child {
	text-align: center;
	width: 100px;
}

/* ------------------------ Sidebar ------------------------- */

/* Hide for mobile, showlater */
.sidebar {
  display: none;

}
@media (min-width: 768px) {
  .sidebar {
    padding: 0;
    position: absolute;
    top: 0px;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: block;
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
    background-color: #ECF0F1;
    box-shadow: inset 2px 0 10px #7F8C8D;
  }
}

/* Sidebar navigation */
.nav-header {
  background-color: #345A6C;
  margin: 0;
  height: 60px;
  padding: 18px 10px;
  color: #ECF0F1;
  font-size: 20px;
  text-align: center;
  font-weight: 900;
  letter-spacing: 3px;
}
.nav-header span {
  color: #F1C40F;
  font-weight: 400;
}
.nav-sidebar {
  padding: 10px;
  box-sizing: border-box;
}
.nav-sidebar > li {
  margin-bottom: 10px;
}
.nav-sidebar > li > a {
  padding-right: 10px;
  padding-left: 10px;
  background-color: #fff;
  border-radius: 4px;
  color: #345A6C;
  font-weight: 400;
  transition: all 0.25s ease;
  border: none;
}
.nav-sidebar > li > a:hover {
  background-color: #BDC3C7;
  color: white;
}
.nav-sidebar > .active > a,
.nav-sidebar > .active > a:hover,
.nav-sidebar > .active > a:focus {
  color: #fff;
  background-color: #BDC3C7;
}

/* ------------------------ Game Viewer ------------------------- */

.main {
  background: #fff;
  height: 100%;
  padding: 0 10px;
}

.main h1 {
  height: 60px;
  margin: 0;
  border-bottom: 1px solid #BDC3C7;
  margin-bottom: 10px;
  font-size: 20px;
  padding: 18px 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  color: #345A6C;
}

#gameHeadFloatRight {
	float: right;
	margin-top: -6px;
}

#killBtn {
	display: inline;
	margin-left: 5px;
}

#delayPicker {
	display: inline;
	font-size: 0.8em;
}

#delayPickerSelect {
	display: inline;
	width: 200px;
}

.main .table {
  background-color: #ECF0F1;
  border-radius: 4px;
  border: none;
  width: 360px;
  height: 360px;
}

.main .board-container {
  width: 360px;
  margin: 0 auto;
}

.main .board-container h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 3px;
  color: #345A6C;
  text-align: center;
}

.main .table .status-miss {
  position: relative;
  background-color: #345A6C;
  color: rgba(0,0,0,0);
  text-align: left;
}
.status-miss::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border: 2px solid white;
  opacity: 0.5;
}

.main .table .status-hit {
  position: relative;
  background-color: #345A6C;
  color: rgba(0,0,0,0);
  text-align: left;
}
.status-hit::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #F39C12;
}

.main .table .status-none {
  position: relative;
  background-color: #345A6C;
  color: rgba(0,0,0,0);
  text-align: left;
}
.status-none::before {
  content: "\02A2F";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #345A6C;
  color: white;
  opacity: 0.5;
  text-align: center;
  font-size: 40px;
  line-height: 3px;
}

.main .table th, .main .table td {
  border: none;
  padding: 10px;
  text-align: center;
  font-weight: 700;
}
