Display an error page if website is accessed through mobile.
I have already tried
@media only screen (max-device-width : 768px) {
html,body { display: none; }
}
and
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
getElementById('body').style.display = 'none';
}