| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 | 
							- @import url(//fonts.googleapis.com/css?family=Open+Sans:400,700,600);
 
- * {
 
- 	box-sizing: border-box;
 
- }
 
- html, body {
 
- 	margin: 0;
 
- 	padding: 0;
 
- 	background-color: #F7F8F9;
 
- 	height: 100vh;
 
- 	font-family: 'Open Sans';
 
- }
 
- button {
 
- 	border-radius: 0;
 
- 	width: 100%;
 
- 	height: 50%;
 
- }
 
- 	button[type="submit"] {
 
- 		-webkit-appearance: none;
 
- 		-webkit-border-radius: 0;
 
- 	}
 
- 	button i {
 
- 		float: right;
 
- 		padding-right: 30px;
 
- 		margin-top: 3px;
 
- 	}
 
- 	button.a {
 
- 		background-color: #1aaaf8;
 
- 	}
 
- 	button.b {
 
- 		background-color: #00cbca;
 
- 	}
 
- #tip {
 
- 	text-align: left;
 
- 	color: #c0c9ce;
 
- 	font-size: 14px;
 
- }
 
- #hostname {
 
- 	position: absolute;
 
- 	bottom: 100px;
 
- 	right: 0;
 
- 	left: 0;
 
- 	color: #8f9ea8;
 
- 	font-size: 24px;
 
- }
 
- #content-container {
 
- 	z-index: 2;
 
- 	position: relative;
 
- 	margin: 0 auto;
 
- 	display: table;
 
- 	padding: 10px;
 
- 	max-width: 940px;
 
- 	height: 100%;
 
- }
 
- #content-container-center {
 
- 	display: table-cell;
 
- 	text-align: center;
 
- }
 
- 	#content-container-center h3 {
 
- 		color: #254356;
 
- 	}
 
- #choice {
 
- 	transition: all 300ms linear;
 
- 	line-height: 1.3em;
 
- 	display: inline;
 
- 	vertical-align: middle;
 
- 	font-size: 3em;
 
- }
 
- 	#choice a {
 
- 		text-decoration: none;
 
- 	}
 
- 		#choice a:hover, #choice a:focus {
 
- 			outline: 0;
 
- 			text-decoration: underline;
 
- 		}
 
- 	#choice button {
 
- 		display: block;
 
- 		height: 80px;
 
- 		width: 330px;
 
- 		border: none;
 
- 		color: white;
 
- 		text-transform: uppercase;
 
- 		font-size: 18px;
 
- 		font-weight: 700;
 
- 		margin-top: 10px;
 
- 		margin-bottom: 10px;
 
- 		text-align: left;
 
- 		padding-left: 50px;
 
- 	}
 
- 		#choice button.a:hover {
 
- 			background-color: #1488c6;
 
- 		}
 
- 		#choice button.b:hover {
 
- 			background-color: #00a2a1;
 
- 		}
 
- 		#choice button.a:focus {
 
- 			background-color: #1488c6;
 
- 		}
 
- 		#choice button.b:focus {
 
- 			background-color: #00a2a1;
 
- 		}
 
- #background-stats {
 
- 	z-index: 1;
 
- 	height: 100%;
 
- 	width: 100%;
 
- 	position: absolute;
 
- }
 
- 	#background-stats div {
 
- 		transition: width 400ms ease-in-out;
 
- 		display: inline-block;
 
- 		margin-bottom: -4px;
 
- 		width: 50%;
 
- 		height: 100%;
 
- 	}
 
 
  |