Advertisement
1xptolevitico69

Mobile only

Jul 17th, 2020
1,026
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.08 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Mobile only</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width">
  7. <style>
  8.  
  9. body {
  10.   margin: 0;
  11. }
  12. .iframe_container {
  13.   width: 800px;
  14.   height: 450px;
  15.   border: 5px solid red;
  16.   margin: 20px auto;
  17. }
  18.  
  19. iframe {
  20.   width: 100%;
  21.   height: 100%;
  22. }
  23.  
  24. .desktop {
  25.   display: none;
  26.   color: white;
  27.   font-size: 100px;
  28.   text-align: center;
  29.   font-family: arial black;
  30. }
  31.  
  32. @media all and (min-width: 320px) and (max-width: 425px) {
  33.   body {
  34.     background-color: olive;
  35.   }
  36.   .iframe_container {
  37.     width: 90%;
  38.     height: 162px;
  39.   }
  40. }
  41.  
  42. @media all and (min-width: 320px) and (max-width: 823px) and (orientation: landscape) {
  43.   body {
  44.     background-color: black;
  45.   }
  46.   .iframe_container {
  47.     border: 5px solid white;
  48.   }
  49. }
  50.  
  51. @media all and (min-width: 320px) and (max-width: 538px) and (orientation: landscape) {
  52.   .iframe_container {
  53.     width: 90%;
  54.     height: 272px;
  55.   }
  56. }
  57.  
  58. @media all and (min-width: 539px) and (max-width: 568px) and (orientation: landscape) {
  59.   .iframe_container {
  60.     width: 90%;
  61.     height: 272px;
  62.   }
  63. }
  64.  
  65. @media all and (min-width: 569px) and (max-width: 640px) and (orientation: landscape) {
  66.   .iframe_container {
  67.     width: 90%;
  68.     height: 287px;
  69.   }
  70. }
  71.  
  72. @media all and (min-width: 641px) and (max-width: 667px) and (orientation: landscape) {
  73.   .iframe_container {
  74.     width: 90%;
  75.     height: 337px;
  76.   }
  77. }
  78.  
  79. @media all and (min-width: 668px) and (max-width: 823px) and (orientation: landscape) {
  80.   .iframe_container {
  81.     width: 90%;
  82.     height: 416px;
  83.   }
  84. }
  85.  
  86. @media all and (min-width: 824px) {
  87.   body {
  88.     background-color: red;
  89.   }
  90.   .iframe_container {
  91.     display: none;
  92.   }
  93.   .desktop {
  94.     display: block;
  95.   }
  96. }
  97.  
  98.  
  99. </style>
  100. </head>
  101. <body>
  102.  
  103. <div class='iframe_container'>
  104.   <iframe src="https://www.youtube.com/embed/Jn8v3AfyrX0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
  105. </div>
  106.  
  107. <h1 class='desktop'>MOBILE <br /> ONLY</h1>
  108.  
  109.  
  110. </body>
  111. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement