some fixes

push plz
This commit is contained in:
Scott O'Hara 2013-07-13 21:03:23 -04:00
parent 64eab634f6
commit 9691bb2ec2
5 changed files with 11 additions and 2 deletions

View file

@ -2,10 +2,11 @@
// Project Specific: Header Area
// ----------------------------------------------------------------
// Apply to <header> for styling
// Apply to header for styling
.header-Base{
background:#65a0ad;
border-bottom:6px solid #e93250;
min-height:47px;
overflow:hidden;
}

View file

@ -934,6 +934,7 @@ a {
.header-Base {
background: #65a0ad;
border-bottom: 6px solid #e93250;
min-height: 47px;
overflow: hidden; }
@media (max-device-width: 480px), screen and (max-width: 800px) {

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,6 @@
$(document).ready(function() {
// this open and closes the small screen nav
$('.small-Nav').click(function(){
$('.header-Nav').toggleClass('show-Nav');
})
});

1
public/assets/scripts/nav.min.js vendored Normal file
View file

@ -0,0 +1 @@
$(document).ready(function(){$(".small-Nav").click(function(){$(".header-Nav").toggleClass("show-Nav")})});