Advertisement
1xptolevitico69

@About Media

Nov 22nd, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.53 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>About @Media</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width">
  7. <style>
  8.  
  9. body {
  10. width:100%;
  11. margin:0;
  12. background-color:black;
  13. }
  14. .header {
  15. color:white;
  16. text-align:center;
  17. font-size:12vw;
  18. }
  19. .chris {
  20. color:white;
  21. text-align:center;
  22. font-size:8vw;
  23. margin:15vw 0;
  24. }
  25. .about {
  26. color:white;
  27. text-align:center;
  28. font-size:3vw;
  29. font-family:segoe script;
  30. text-align:justify;    
  31. text-justify:inter-word;
  32. padding:0 90px;
  33. margin:15vw 0 10vw 0;
  34. }
  35. iframe {
  36. width:80%;
  37. height:44.4vw;
  38. margin:auto;
  39. display:block;
  40. margin-bottom:5vw;
  41. }
  42. #tr {
  43. color:white;
  44. font-size:12px;
  45. cursor:pointer;
  46. }
  47.  
  48.  
  49.  
  50.                  @media all and (max-width: 425px){
  51. body {
  52. background-color:white;
  53. }
  54. .header {
  55. color:maroon;font-family:ink free;
  56. }
  57. .chris {
  58. color:maroon;
  59. }
  60. .about {
  61. color:maroon;
  62. font-size:16px;
  63. font-family:courier;
  64. padding:0 40px;
  65. }
  66. #tr {
  67. color:maroon;
  68. }
  69.  }
  70.  
  71.  
  72.  
  73.  
  74.             @media all and (min-width: 426px) and (max-width: 538px){  
  75. body {
  76. background-color:white;
  77. }
  78. .header {
  79. color:olive;font-family:arial;
  80. }
  81. .chris {
  82. color:olive;
  83. }
  84. .about {
  85. color:olive;
  86. font-size:16px;
  87. font-family:courier;
  88. padding:0 40px;
  89. }
  90. #tr {
  91. color:olive;
  92. }
  93. iframe {
  94. width:90%;
  95. height:49.95vw;
  96. }
  97. }
  98.  
  99. </style>
  100. </head>
  101. <body>
  102.  
  103. <h1 class='header'>CHRISTINA KERSCHNER</h1>
  104. <h2 class='chris'>@About<span id='tr'>ranslation</span></h2>
  105. <h2 id='about' class='about'>Christina Kerschner ist eine junge Singer/Songwriterin aus Niederösterreich. Charakteristisch für ihre Musik sind ruhige und verträumte Melodien am Klavier geschmückt mit Texten in deutscher als auch englischer Sprache.</h2>
  106. <iframe id='box' src="https://www.youtube.com/embed/CgiXFxv6wik" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
  107.  
  108.  
  109. <script>
  110. i=0;
  111.  
  112. /*
  113.  Responsive iframe / 1% ( width) = .555vw ( height )
  114.  Not responsive / 1px ( width) = .562px ( height )
  115. */
  116.  
  117. tr.onclick=function(){
  118. if(i==0){i=1;
  119. about.innerHTML='Christina Kerschner is a young singer / songwriter from Lower Austria. Characteristic of her music are quiet and dreamy melodies on the piano decorated with texts in German and English.';
  120. }else if(i==1){i=0;
  121. about.innerHTML='Christina Kerschner ist eine junge Singer/Songwriterin aus Niederösterreich. Charakteristisch für ihre Musik sind ruhige und verträumte Melodien am Klavier geschmückt mit Texten in deutscher als auch englischer Sprache.';
  122. }
  123. }
  124.  
  125. </script>
  126. </body>
  127. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement