Advertisement
1xptolevitico69

Responsive Basics

Dec 27th, 2019
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.75 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title></title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width">
  7. <style>
  8.  
  9. body {
  10. margin:0;
  11. }
  12.  
  13. .header {
  14. font-size:8vw;
  15. text-align:center;
  16. font-family:arial;
  17. text-shadow:3px 3px 3px red;
  18. }
  19.  
  20. .responsive {
  21. display:none;
  22. font-size:8vw;
  23. text-align:center;
  24. font-family:arial;
  25. text-shadow:3px 3px 3px red;
  26. }
  27.  
  28. .landscape {
  29. display:none;
  30. font-size:8vw;
  31. text-align:center;
  32. font-family:segoe script;
  33. font-weight:900;
  34. }
  35.  
  36. iframe {
  37. border:5px solid red;
  38. padding:2px;
  39. width:70vw;
  40. height:39vw;
  41. display:block;
  42. margin:auto;
  43. }
  44.  
  45. .box {
  46. margin:8vw 0 6vw 0;
  47. }
  48.  
  49. .about {
  50. text-decoration:none;
  51. font-size:8vw;
  52. color:black;
  53. font-family:arial;
  54. text-shadow:3px 3px 3px red;
  55. }
  56.  
  57. .text {
  58. text-indent:100px;
  59. padding:6vw 4vw 8vw 4vw;
  60. display:block;
  61. font-size:3vw;
  62. text-align:justify;    
  63. text-justify:inter-word;
  64. font-family:courier;
  65. font-weight:bold;
  66. }
  67.  
  68.  
  69.  
  70.  
  71.                 @media all and (max-width: 425px){
  72. .header { display:none;  }
  73. .responsive {
  74. font-size:9vw;
  75. color:red;
  76. display:block;  
  77. text-shadow:3px 3px 2px black;
  78. }
  79. .about {
  80. font-size:8vw;
  81. color:green;
  82. font-weight:900;
  83. text-shadow:3px 3px 3px black;
  84. }
  85. .about:after {
  86. content:'Click here!';
  87. display:block;
  88. font-size:8vw;
  89. color:green;
  90. font-weight:900;
  91. text-shadow:3px 3px 3px black;
  92. }
  93. .text {
  94. text-indent:50px;
  95. padding:6vw 6vw 8vw 6vw;
  96. font-size:5vw;
  97. font-family:segoe print;
  98. }
  99. iframe {
  100. border:0;
  101. padding:0;
  102. width:80vw;
  103. height:45vw;
  104. }
  105. }
  106.  
  107.           @media all and (min-width: 426px) and (max-width: 538px){
  108. .header { display:none;  }
  109. .responsive { display:none;  }
  110. .landscape {
  111. display:block;
  112. font-size:10vw;
  113. text-align:center;
  114. font-family:impact;
  115. font-weight:900;
  116. }
  117. .about {
  118. text-decoration:underline;
  119. font-size:8vw;
  120. font-weight:900;
  121. font-family:impact;
  122. text-shadow:0 0 0 black;
  123. }
  124. .text {
  125. text-indent:50px;
  126. padding:6vw 6vw 8vw 6vw;
  127. font-size:4vw;
  128. font-family:arial;
  129. font-weight:bold;
  130. }
  131. iframe {
  132. border:0;
  133. padding:0;
  134. width:90vw;
  135. height:50vw;
  136. border-radius:20px;
  137. }
  138. }
  139.  
  140.  
  141. </style>
  142. </head>
  143. <body>
  144. <h1 class='header'>Responsive Basics</h1>
  145. <h1 class='responsive'>Responsive <br> Basics</h1>
  146. <h1 class='landscape'>Responsive</h1>
  147.  
  148.  
  149.  
  150. <div class='box'>
  151. <iframe width="560" height="315" src="https://www.youtube.com/embed/qJ0_r1Emui8" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
  152. </div>
  153.  
  154. <center><a class='about' href='http://www.bebobestmusic.com'>About</a></center>
  155.  
  156. <span class='text'>Italian composer, producer and multi-instrumentalist Bebo Best and his Super Lounge Orchestra blend bossanova, nu funk, and jazz-dance with the sounds of 60s and 70s lounge and exotica.</span>
  157.  
  158.  
  159.  
  160. </body>
  161. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement