Mobile.css

/*
Add transition to containers so they can push in and out.
*/

#wrapper,
#sidebar,
.menu-link {
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

#wrapper.active #bodycontent {
	overflow-y: hidden;
}

.menu-link {
	position: fixed;
	display: block;
	right: 0;
	font-size: 10px;
	/* change this value to increase/decrease button size */
	z-index: 10;
	width: 2em;
	height: auto;
	padding: 2.8em 2em;
	background: #1a3243;
}

#header .search {
	z-index: 9;
	position: absolute;
	display: block;
	right: 4em;
	height: auto;
	padding: 2.1em 2em;
}

#header .search span {
	background: url(images/icon_search.png) center center no-repeat;
	background-size: contain;
	width: 100%;
	height: 1.4em;
	position: absolute;
	left: 0;
	top: 1.4em;
}

#wrapper.active .menu-link {
	right: 300px;
}

.menu-link:hover,
.menu-link:focus,
.menu-link.active {
	background: #1a3243;
}

.menu-link span {
	position: relative;
	display: block;
}

.menu-link span,
.menu-link span:before,
.menu-link span:after {
	background-color: #fff;
	width: 100%;
	height: 0.2em;
}

.menu-link span:before,
.menu-link span:after {
	position: absolute;
	margin-top: -0.6em;
	content: " ";
}

.menu-link span:after {
	margin-top: 0.6em;
}


/* -- Responsive Styles (Media Queries) ------------------------------------- */

@media (min-width: 48em) {
	body {
		background: url(images/headerbg.jpg) top right no-repeat;
	}
	.menu-link,
	#header .search {
		display: none;
	}
	#wrapper.active .menu-link {
		right: 300px;
	}
}

@media (max-width: 48em) {
	img,
	iframe {
		max-width: 104%;
		margin: 0 -2%;
	}
	#header {
		background: #1d374b;
		height: 60px;
	}
	#header .header-left {
		padding-top: 15px;
	}
	#header .logo {
		font-size: 24px;
	}
	#header .tagline {
		display: none;
	}
	#header #search {
		margin: 0;
		display: none;
	}
	#bodycontent {
		width: 100%;
		padding-right: 2%;
		padding-left: 2%;
		overflow-x: hidden;
	}
	#bodycontent .post {
		padding-bottom: 5px;
	}
	#bodycontent .post h1 {
		font-size: 30px;
		line-height: 30px;
	}
	#bodycontent form.search {
		padding: 0em 0 1em 0;
	}
	#bodycontent form.search input {
		padding: 0.8em;
		border: 1px solid #cacaca;
		-webkit-appearance: none;
	}
	#bodycontent form.search input.search-submit {
		border-color: #1d374b;
		background-color: #1d374b;
		color: #fff;
		padding-left: 1.2em;
		padding-right: 1.2em;
	}
	#sidebar {
		margin-right: -300px;
		/* "#sidebar" width */
		width: 300px;
		position: fixed;
		top: -10px;
		right: 0;
		bottom: 0;
		z-index: 1000;
		/* so the menu or its navicon stays above all content */
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	#sidebar .featured {
		margin: 0;
	}
	#wrapper #sidebar.active {
		right: 300px;
	}
	#footer {
		padding: 10px;
	}
	#footer p.left-footer,
	#footer p.right-footer {
		width: 100%;
		max-width: 100%;
		text-align: center;
	}
}

@media (max-width: 25em) {
	#menuLink,
	#header .search {
		padding: 2.8em 1.2em;
	}
	#header .search {
		right: 3em;
	}
}
