|
<style type="text/css" rel="preload"> #landing-page { width: 95%; margin-left: 10% !important;margin-top: -20px !important; }#landing-page h4 { font-size: 15px !important;}#whats-new { background-color:#f5f5f5 !important; padding-left: 10%; padding-top: 8px; }#whats-new * h4 { font-weight:bold; padding-top:5px; font-size: 15px !important;}#banner { margin-bottom: 14% !important;}ul * { font-size: 12px !important;}.article__toc { display: none !important; box-shadow: 3px 3px 2px 2px rgba(0, 0, 255, .2); } input[type][value] { background-image: none !important; background: none !important; } </style> <script> const header = $("#header"); const fixedHeader = "fixed-header"; $(window).on("scroll", () => { if(window.pageYOffset > header.outerHeight()){ if(!header.hasClass(fixedHeader)){ header.addClass(fixedHeader); } } else { header.removeClass(fixedHeader); } }); </script> |