/* Minimal stylesheet for ojs. This stylesheet allows us to control navigation menu colors, header image size, and footer image */
/* This stylesheet was adapted from the basic_stylesheet, which was in turn adapted from the eblip stylesheet */

/* ensures the pkp/ojs footer image is invisible */
.pkp_brand_footer img {
	max-height:0px;
}


/* Main menu style settings. The important ones for us are color and background */
#navigationPrimary a {
font-family: 'Open Sans', sans-serif;
    font-size: 13px;
}

/* navigation menu text color when hovering */
#navigationPrimary a:hover, #navigationPrimary a:focus {
  color:#878787;
}

/* Handling site header image */
.pkp_site_name .is_img img {
	display: block;
    max-height: 350px;
    max-width: 100%;
    width: auto;
    height: auto;
}


/* Below is optional color customization. */
/* main background color, background-image ok  -- defaults to OJS grey when not set */
body {
font-family: 'Open Sans', sans-serif;
}

/* body link colors -- defaults to OJS blue when not set */
a {
  color:#f08353;
}
  
/* body link hover/focus colors -- defaults to OJS blue when not set */
a:hover, a:focus {
  color:#f08353;
}


/* "read more" link text  -- defaults to OJS blue when not set */
.obj_announcement_summary .read_more, .pkp_page_index .current_issue .read_more {
color: #4c4c4c;
}

/* "read more" link hover/focus colors  -- defaults to OJS blue when not set */
.obj_announcement_summary .read_more:hover, .pkp_page_index .current_issue .read_more:hover,.pkp_page_index .current_issue .read_more:focus{
  color:#979797;
}

/* Below is optional customization that will greatly impact the appearance of the journal. */
/* A background image can be added to the top bar behind the logo or in place of the logo if desired  -- defaults to "Colour" set in OJS Website Settings when not set */ 
.pkp_head_wrapper{
    background-image:url(/csp/public/site/images/ojsadmin/gradient.jpg);
background-size: 80% 100%;
}

::selection {
  background: #f08353; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #f08353; /* Gecko Browsers */
}