added responsive css

This commit is contained in:
SundaySalsa
2015-01-31 13:35:09 +03:00
committed by r888888888
parent c900816b3e
commit a6233f297e
8 changed files with 285 additions and 8 deletions

View File

@@ -0,0 +1,8 @@
// Whoever did the rest of js files, he/she did it in some other way
// Hope this is not very wrong
$(document).ready(function() {
$("#maintoggle").click(function(){
$('#nav').toggle();
$('#maintoggle').toggleClass('toggler-active');
});
});