Advertisement
Guest User

Untitled

a guest
Jan 17th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.86 KB | None | 0 0
  1.  
  2. body {
  3. overflow: hidden;
  4. background: rgb(231, 231, 231);
  5. position: fixed;
  6. height: 100vh;
  7. width: 100vw;
  8. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  9. }
  10.  
  11. .post_preview {
  12. background-size: cover !important;
  13. }
  14.  
  15. .m_search_box{
  16. display: flex;
  17. margin-right: 2vw;
  18. width: 62vw;
  19. height: 15vw;
  20. flex-direction: column;
  21. overflow: hidden;
  22. }
  23.  
  24. .m_search_input{
  25. position: relative;
  26. flex-shrink: 0;
  27. padding: 2.5vw;
  28. border: 0;
  29. font-size: 9vw;
  30. font-weight: 300;
  31. font-family: Arial, Helvetica, sans-serif;
  32. background: rgba(15, 15, 15, 0.1);
  33. }
  34.  
  35. .mobile_blog{
  36. color: #373737;
  37. }
  38.  
  39. .mobile_blog_post_list a{
  40. color: #373737;
  41. }
  42.  
  43. .mobile_blog_header{
  44. display: flex;
  45. justify-content: flex-end;
  46. align-items: center;
  47. }
  48.  
  49. .mobile_blog_header h3{
  50. flex-shrink: 0;
  51. position: relative;
  52. margin:0;
  53. line-height: 15vw;
  54. font-size: 14vw;
  55. text-align: center;
  56. width: 66vw;
  57. font-weight: 400;
  58. color: #868686;
  59. }
  60.  
  61. .mobile_blog_header img{
  62. width: 14vw;
  63. margin-top: 2vw;
  64. margin-right: 4vw;
  65. }
  66.  
  67. .mobile_blog_content{
  68. height: 80vh;
  69. width: 100vw;
  70. position:relative;
  71. overflow-y: auto;
  72. overflow-x: hidden;
  73. display: flex;
  74. flex-direction: column;
  75. align-items: center;
  76. -webkit-overflow-scrolling: touch;
  77. }
  78.  
  79. .mobile_blog_post_correct{
  80. height: 30vh;
  81. }
  82.  
  83. .mobile_blog_circles{
  84. position: fixed;
  85. top: 0;
  86. width: 100vw;
  87. height: 100vh;
  88. overflow: hidden;
  89. z-index: -1000;
  90. }
  91.  
  92. .mobile_blog_circles div{
  93. position: absolute;
  94. top: 25vh;
  95. background: #FF5D00;
  96. height: 90vw;
  97. width: 90vw;
  98. border-radius: 50%;
  99. box-shadow: inset 0vw 4vw 0vw 0vw #BD4100;
  100. }
  101.  
  102. .mobile_blog_left_circle{
  103. left: -75vw;
  104. }
  105.  
  106. .mobile_blog_right_circle{
  107. right: -75vw;
  108. }
  109.  
  110.  
  111. .mobile_blog_post_list>ul{
  112. display: flex;
  113. flex-direction: column;
  114. align-items: center;
  115. height: auto;
  116. }
  117.  
  118. .mobile_blog_post_data{
  119. display: flex;
  120. flex-direction: column;
  121. width: auto;
  122. }
  123.  
  124. .mobile_blog_post{
  125. flex-shrink: 0;
  126. height: auto;
  127. width: 65vw;
  128. display: flex;
  129. align-items: center;
  130. justify-content: space-between;
  131. z-index: 10;
  132. padding-top: 2vw;
  133. padding-bottom: 2vw;
  134. border-radius: 2vw;
  135. padding: 1vw;
  136. }
  137.  
  138. .mobile_blog_post_date{
  139. margin-right: 5%;
  140. font-weight: 500;
  141. font-size: 10vw;
  142. }
  143.  
  144. .mobile_blog_post h3, h2{
  145. margin: 0;
  146. font-weight: 500;
  147. z-index: 100;
  148. white-space: pre-wrap;
  149. }
  150.  
  151. .mobile_blog_post h3{
  152. font-size: 5vw;
  153. }
  154.  
  155. .mobile_blog_post h2{
  156. font-size: 5vw;
  157. line-height: 5vw;
  158. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement