|
|
Line 9: |
Line 9: |
| } | | } |
| h3{ | | h3{ |
− | margin-left: auto;
| + | |
− | margin-right: auto;
| + | |
| text-align: center; | | text-align: center; |
| } | | } |
Revision as of 19:05, 16 October 2016
iGEM NYUAD Wiki
$(document).ready(function(){
$(window).scroll(function() {
if ($(document).scrollTop() > 50) {
// alert('you');
$('nav').addClass('shrink');
$('#nyuad-logo').css("height","44px");
} else {
$('nav').removeClass('shrink');
$('#nyuad-logo').css("height","66px");
}
});
});
Integrated Human Practices