Вам просто нужно показать его на определенной ширине + на ландшафте для медиа-запроса, например
@media only screen and (max-width: 769px) and (orientation: landscape) {
.notification {
display: block;
}
}
Вот полный пример:
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title></title>
<style media="screen">
body {
background-color: #666;
}
.notification {
display: none;
position: absolute;
top: 10%;
right: 10%;
left: 10%;
bottom: 10%;
background: white;
box-shadow: 5px 5px;
}
@media only screen and (max-width: 769px) and (orientation: landscape) {
.notification {
display: block;
}
}
</style>
</head>
<body>
<div class="notification">
Please flip your Phone!
</div>
</body>
</html>