Advertisement
jorandradefig

Netflix Showcase

Jun 26th, 2021
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.80 KB | None | 0 0
  1. <div class="download row col-12">
  2.  
  3. <div class="col-6 left">
  4.  
  5. <img src="assets/img/mobile-0819.jpg" />
  6.  
  7. <div class="animation row">
  8.  
  9. <div class="boxshot col-3">
  10. <img src="assets/img/boxshot.png" />
  11. </div>
  12.  
  13. <div class="text col-6">
  14. <h1>Stranger Things</h1>
  15. <p>Downloading...</p>
  16. </div>
  17.  
  18. <div class="icon col-3">
  19. <img src="assets/img/download-icon.gif"/>
  20. </div>
  21.  
  22. </div>
  23. </div>
  24.  
  25. <div class="col-6 right">
  26. <h1>Download your shows to watch offline.</h1>
  27. <p>Save your favorites easily and always have something to watch.</p>
  28. </div>
  29.  
  30. </div>
  31.  
  32.  
  33.  
  34. #showcase .download {
  35. height: 400px;
  36. border-bottom: 8px solid rgb(34, 34, 34);
  37. }
  38.  
  39. #showcase .download .left {
  40. position: relative;
  41. display: flex;
  42. justify-content: flex-end;
  43. align-items: center;
  44. }
  45.  
  46.  
  47. #showcase .download .left img {
  48. max-width: 88%;
  49. height: auto;
  50. margin: auto;
  51. margin-top: 12%;
  52. }
  53.  
  54. #showcase .download .left .animation {
  55. position: absolute;
  56. top: 0;
  57. left: 0;
  58. right: 0;
  59. bottom: 0;
  60. margin: auto;
  61. margin-top: 50%;
  62. background-color: #000;
  63. border: 1px solid grey;
  64. border-radius: 10px;
  65. height: 95px;
  66. width: 63%;
  67. padding: 5px;
  68. }
  69.  
  70. #showcase .download .left .animation .boxshot {
  71. display: flex;
  72. justify-content: center;
  73. align-items: center;
  74. padding: 0;
  75. }
  76.  
  77. #showcase .download .left .animation .boxshot img {
  78. margin: 0;
  79. height: 80%;
  80. width: auto;
  81. }
  82.  
  83. #showcase .download .left .animation .text {
  84. display: flex;
  85. flex-direction: column;
  86. justify-content: center;
  87. padding: 0;
  88. }
  89.  
  90. #showcase .download .left .animation .text h1 {
  91. color: #fff;
  92. font-family: "Netflix Sans Medium";
  93. font-size: 17px;
  94. margin-bottom: 0;
  95. }
  96.  
  97. #showcase .download .left .animation .text p {
  98. color: #0071eb;
  99. font-family: "Netflix Sans Regular";
  100. font-size: 15px;
  101. margin-bottom: 0;
  102. }
  103.  
  104. #showcase .download .left .animation .icon {
  105. display: flex;
  106. justify-content: center;
  107. align-items: center;
  108. padding: 0;
  109. }
  110.  
  111. #showcase .download .left .animation .icon img {
  112. margin: auto;
  113. }
  114.  
  115. #showcase .download .right {
  116. display: flex;
  117. flex-direction: column;
  118. justify-content: center;
  119. align-items: flex-start;
  120. padding-left: 50px;
  121. padding-right: 10px;
  122. }
  123. /* #ffffff */
  124. /* rgb(255,255,255) */
  125.  
  126. #showcase .download .right h1 {
  127. color: #fff;
  128. font-family: "Netflix Sans Medium";
  129. font-size: 49px;
  130. margin-bottom: 18px;
  131. }
  132.  
  133. #showcase .download .right p {
  134. color: #fff;
  135. font-family: "Netflix Sans Regular";
  136. font-size: 25px;
  137. line-height: 32px;
  138. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement