Not sure why it's different for you, but for your theme, position:fixed worked better:
<script>
/* snow flakes */
var wA = [],
sA = [10,11,12],
tA = [2,4,6,8,10,12,14],
fA = ['❄', '❅', '❆'];
function r(a) {return a[Math.floor(Math.random() * a.length)]}
for (var i = 0; i < $(window).innerWidth(); i++) {wA.push(i)}
for (var i = 0; i < 15; i++) {$('<div class="s-fl" style="text-shadow: 2px 2px black; position: fixed; color: #fff; top: -20px; left: '+r(wA)+'px; font-size: 20px;">'+r(fA)+'</div>').appendTo(this.element.closest('.app-sites'))}
$('.s-fl').each(function(){
var el = $(this)
setTimeout(function(){
el.animate({'top' : '100%'}, r(sA) * 1000, function(){
$(this).css('top', -20);
setInterval(function(){
el.animate({'top' : '100%'}, r(sA) * 1000, function(){
$(this).css('top', -20);
})}, r(tA) * 1000);
})
}, r(tA) * 1000);
});
</script>
<style>
.ui-theme-pageicon1-container {overflow-x: hidden;}
body {
background: #000;
}
.lightrope {
text-align: center;
white-space: nowrap;
overflow: hidden;
position: fixed;
top: 157px;
left: 0px;
z-index: 1;
margin: 0 0 0 0;
padding: 0;
pointer-events: none;
width: auto;
}
.lightrope li {
position: relative;
animation-fill-mode: both;
animation-iteration-count: infinite;
list-style: none;
margin: 0;
padding: 0;
display: block;
width: 12px;
height: 28px;
border-radius: 50%;
margin: 20px;
display: inline-block;
background: rgba(12, 236, 65, 1);
box-shadow: 0px 4.6666666667px 24px 3px rgba(12, 236, 65, 1);
animation-name: flash-1;
animation-duration: 2s;
}
.lightrope li:nth-child(2n+1) {
background: rgba(255, 236, 122, 1);
box-shadow: 0px 4.6666666667px 24px 3px rgba(255, 236, 122, 0.5);
animation-name: flash-2;
animation-duration: 0.4s;
}
.lightrope li:nth-child(4n+2) {
background: rgba(220, 0, 77, 1);
box-shadow: 0px 4.6666666667px 24px 3px rgba(220, 0, 77, 1);
animation-name: flash-3;
animation-duration: 1.1s;
}
.lightrope li:nth-child(odd) {
animation-duration: 1.8s;
}
.lightrope li:nth-child(3n+1) {
animation-duration: 1.4s;
}
.lightrope li:before {
content: "";
position: absolute;
background: #222;
width: 10px;
height: 9.3333333333px;
border-radius: 3px;
top: -4.6666666667px;
left: 1px;
}
.lightrope li:after {
content: "";
top: -14px;
left: 9px;
position: absolute;
width: 52px;
height: 18.6666666667px;
border-bottom: solid #222 2px;
border-radius: 50%;
}
.lightrope li:last-child:after {
content: none;
}
.lightrope li:first-child {
margin-left: -40px;
}
@keyframes flash-1 {
0%, 100% {
background: rgba(12, 236, 65, 1);
box-shadow: 0px 4.6666666667px 24px 3px rgba(12, 236, 65, 1);
}
50% {
background: rgba(12, 236, 65, 0.4);
box-shadow: 0px 4.6666666667px 24px 3px rgba(12, 236, 65, 0.2);
}
}
@keyframes flash-2 {
0%, 100% {
background: rgba(255, 236, 122, 1);
box-shadow: 0px 4.6666666667px 24px 3px rgba(255, 236, 122, 1);
}
50% {
background: rgba(255, 236, 122, 0.4);
box-shadow: 0px 4.6666666667px 24px 3px rgba(255, 236, 122, 0.2);
}
}
@keyframes flash-3 {
0%, 100% {
background: rgba(220, 0, 77, 1);
box-shadow: 0px 4.6666666667px 24px 3px rgba(220, 0, 77, 1);
}
50% {
background: rgba(220, 0, 77, 0.4);
box-shadow: 0px 4.6666666667px 24px 3px rgba(220, 0, 77, 0.2);
}
}
</style>
<ul class="lightrope">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
I've put it on the student dashboard