/*
 * This .css file handles the layouts for the libguides website. If you have any
 * questions, please contact the library website administrator, Ibukun Fasoranti
 * at ifasora@jmls.edu or x726
 */

/*This code changes the buttons on the homepage */
.nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {
  color: #fff;
  background-color: #990000;
  opacity: .8;
 }
 
/*This code changes the text color for homepage links */ 
.ui-widget-content a, a {
  color: #990000;
}

/* For the alert boxes on the homepage, change the background colors */
.alert-info {
  color: #000;
  background-color: #D3D3D3;
  border-color: #D3D3D3;
}

/* This code changes the right sidebar buttons font colors, background colors, and border colors*/
.btn-info {
  color: #fff;
  background-color: #990000;
  border-color: #990000;
}

/* This code handles the right sidebar opacity look on scrollover.*/
.btn-info:hover {
	background-color: #990000;
	border-color: #990000;
	opacity: .8;
}

/* This code handles mouse over links for all links on the libguides site */
a:hover {
    color: red;
}

/* When a link is clicked, the focus color of that link will remain consistent */
a:focus {
    color: #990000;
    text-decoration: none;
}

/* For all Guides increase the size of all header texts to 25 */
#s-lg-guide-name {
  font-size: 25px;
}

/* For all Guides change font-weight to bold and color to black */
h1#s-lg-guide-name {
  font-weight: bold;
  color: #000;
}

/* On the Guides pages, change the color of the "Email Me Button"*/
.label-info {
    background-color: #990000;
}

/* This code handles the right sidebar "Email Me Button" opacity look on scrollover. 
 Also handles the [href] hover and focus colors to maintain the look and simply
 lighten the color of the button*/
.label-info:hover, .label-info[href]:focus, .label-info[href]:hover {
	background-color: #990000;
	border-color: #990000;
	opacity: .8;
}


