32 lines
830 B
HTML
32 lines
830 B
HTML
<style>
|
|
#bannercontainer {
|
|
width: %100;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-bottom: -20px;
|
|
}
|
|
|
|
@media only screen and (min-width: 1px) {
|
|
#newbanner {
|
|
width: 80%;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 992px) {
|
|
#newbanner {
|
|
width: 60%;
|
|
}
|
|
}
|
|
|
|
/* tighten up elements at the top of the AtoZ */
|
|
#s-lib-public-header-desc { margin-top: -30px; }
|
|
#s-lib-public-main-searchbar { margin-top: -20px; }
|
|
|
|
/*change the background color of the header */
|
|
.navbar-expand-lg { background-color: #003466 !important; } /* color navbar when at full screen */
|
|
#az-public-mobile-filters { background-color: #003466; } /* color navbar when on mobile */
|
|
</style>
|