body {
	margin: 0;
	padding: 0;
	font-family: "Trebuchet MS",Helvetica,sans-serif;
	font-size: 14px;
}
a {
	text-decoration: none;
}
img.spinner {
	display: block;
	margin: 15px auto;
}
header {
	background-color: #000;
	background-image: url('/img/mario.jpg');
	background-position: right top;
	background-repeat: no-repeat;
	height: 180px;
	border-bottom: 3px #7bc8a4 solid;
	color: #eee;
	text-align: center;
	overflow: auto;
}
header h1 {
	font-weight: normal;
	margin: 0.5em 0 0.4em 0;
}
header h3 {
	font-family: courier;
	font-weight: normal;
	text-transform: lowercase;
}
header ul.header-links {
	list-style: none;
	margin: 25px 0 0 0;
	padding: 0;
}
header ul.header-links li {
	display: inline-block;
	margin: 0 5px;
}
header ul.header-links li a {
	display: block;
	width: 46px;
	height:46px;
	background-image: url('/img/sprite.png');
	background-repeat: no-repeat;
	text-indent: 100%;
	overflow: hidden;
}
header ul.header-links li a.twitter {
	background-position-x: -46px; 
}
header ul.header-links li a.npm {
	background-position-x: -92px; 
}
header ul.header-links li a:hover {
	background-position-y: -46px; 
}
section.github h2 {
	text-align: center;
}
article.repo {
	float: left;
	width:30%;
	margin: 15px 1.5%;
	height: 100px;
	overflow: hidden;
	border-bottom: 1px #ccc solid;
	position: relative;
}
article.repo img {
	float: left;
}
article.repo h3 {
	margin-top: 0;
}
article.repo h3 a {
	color: #f16745;
}
article.repo span.lang {
	position:absolute;
	top:0;
	right:0;
	display: block;
	width:20px;
	height:20px;
	background: url('/img/lang-sprites.png') no-repeat;
}
article.repo span.lang.JavaScript {
	background-position: -20px 0;
}
article.repo span.lang.Swift {
	background-position: -40px 0;
}
article.repo span.lang.PHP {
	background-position: -60px 0;
}
article.repo span.lang.Ruby {
	background-position: -80px 0;
}
article.repo span.lang.CSS {
	background-position: -100px 0;
}
article.repo span.lang.Arduino {
	background-position: -120px 0;
}
article.repo span.lang.Python {
	background-position: -140px 0;
}
/* for retina/high res displays */
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) { 

	header {
		background-image: url('/img/mario@2x.jpg');
		background-size: 170px 170px;
	}
	header ul.header-links li a {
		background-image: url('/img/sprite@2x.png');
		background-size: 138px 92px;
	}
}