﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 50px;
    padding-bottom: 20px;
    background-color: aquamarine;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input[type="text"],
input[type="password"] {
    max-width: 280px;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }
    .body-content {
        padding: 0;
    }
}


/**
 * jQuery Stopwatch
 * by @websightdesigns
 */

#timeContainer,
#timerButtons {
	margin-left: auto;
	margin-right: auto;
}

#timeContainer {
	margin-top: 1em;
}

#timerValue {
	font-size: 1.5em;
}

#timerButtons {
	text-align: center;
}

#timerButtons button {
	font-size: 0.8em;
}

@media (min-width: 768px) {
	#timeContainer,
	#timerButtons {
		width: 210px;
	}
}

@media (max-width: 767px) {
	#timeContainer {
		width: 184px;
	}
	#timerButtons button {
		max-width: 32.75%;
		display: inline-block;
	}
}

@media (max-width: 240px) {
	#timeContainer {
		width: 100%;
	}
	#timerButtons button {
		width: 100%;
		max-width: 100%;
		clear: both;
		display: block;
		margin-bottom: 0.75em;
	}
}
