/**
 * Theme Name: Oxygen Child
 * Theme URI: http://alienwp.com/themes/oxygen/
 * Description: Child theme created from Oxygen. Oxygen is a minimalistic, mobile-optimized magazine theme with responsive layout. The main features include a featured content slider, custom front page template, 5 widget areas, and 3 menus.
 * Version: 0.5.4
 * Author: AlienWP
 * Author URI: http://alienwp.com
 * Tags: fluid-layout, theme-options, threaded-comments, microformats, translation-ready, rtl-language-support, three-columns, right-sidebar, left-sidebar, custom-background, featured-images
 * Template: oxygen
 * License: GNU General Public License v2.0
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 *
 */

@import url("../oxygen/style.css");

/* =Theme customization starts here
-------------------------------------------------------------- */


/* Fix the size of the titles in custom page views */

.entry-header h2.post-title.entry-title {
	font-size: 1.333333333333333em;
	margin-bottom: 0.15em;

}

/* Style attachment buttons on publication pages */

.attachment-button {
	display: inline-block;
	background-color: #7f0000;
	color: white;
	border-radius: 0.6em;
	margin-left: 0.15em;
	margin-right: 0.15em;
	margin-bottom: 0.15em;
	margin-top: 0.15em;
	padding-left: 0.6em;
	padding-right: 0.6em;
	border-bottom: 1px solid white;
}

.attachment-button:hover {
	color: white;
	background-color: red;
	border-bottom: 1px solid grey;
}

.attachment-button:visited {
	color: white;
}

/* Soft removing a posts page links from the publications views */

.page-template-publications .page-links {
	display: none;
}


/* Makes the basic afed info text widget appear at bottom in mobile view and left in tablet/desktop view, except for on the front page where it appears at the top in mobile view */

/* desktop/tablet */
@media only screen and (min-width: 768px) {
	#text-2 { display: block; }
	#text-3 { display: none; }
}

/* mobile */
@media only screen and (max-width: 767px) {
	.home #text-2 { display: block; }
	.home #text-3 { display: none; }
	#text-2 { display: none; }
	#text-3 { display: block; }
}

#text-3 {
	padding-top: 15px;
	border-top: 1px solid #bbb;
}


/*  Soft hide the links to supposedly next and previous articles because the links are just confusing */

.loop-nav {
	display:none
}


/* Make blockquote text a little bit darker */

blockquote {
	color: #444 !important;
}