Template:Sticky/style.css

Template page
.sticky {
   position: sticky;
   z-index: 4;
}

/* don't sticky if there's not much vertical space */
@media (max-height: 800px) {
   .sticky {
      position: static;
   }
}