.menu {
position: fixed;
top: 0;
right: 0;
background: none;
}
@media screen and (max-width: 640px) {
background: orange !important;
}
$(window).on('load scroll', function() {
if ($(this).scrollTop() >= '1') {
$('.menu').css('background', 'orange');
} else {
$('.menu').css('background', 'none');
}
});