Advertisement
hanimjay

Partners in Crime (thread)

Jul 29th, 2020 (edited)
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.58 KB | None | 0 0
  1. <style>
  2. :root{
  3. --black: #111111;
  4. --white: #ffffff;
  5. --yellow: #F0EBC5;
  6. --red: #FF512B;
  7. }
  8.  
  9. #pic-thread ::-webkit-scrollbar {
  10. width: 5px;
  11. }
  12.  
  13. #pic-thread ::-webkit-scrollbar-track {
  14. background: var(--white);
  15. }
  16.  
  17. #pic-thread ::-webkit-scrollbar-thumb {
  18. background: var(--white);
  19. border: 0.5px solid var(--black);
  20. }
  21.  
  22. #pic-thread{
  23. position: relative;
  24. margin: 10px auto;
  25. overflow: hidden;
  26. width: 500px;
  27. height: 650px;
  28. background: var(--yellow);
  29. }
  30.  
  31. #pic-thread .border{
  32. position: absolute;
  33. top: 10px;
  34. left: 10px;
  35. width: 480px;
  36. height: 630px;
  37. border: 0.5px solid var(--black);
  38. background: transparent;
  39. z-index: 2;
  40. }
  41.  
  42. #pic-thread .ellipse{
  43. position: absolute;
  44. top: 272px;
  45. left: 215px;
  46. width: 530px;
  47. height: 530px;
  48. border: 0.5px solid var(--black);
  49. background: transparent;
  50. border-radius: 500px;
  51. }
  52.  
  53. #pic-thread .title{
  54. position: absolute;
  55. top: 53px;
  56. left: 0px;
  57. width: 500px;
  58. background: transparent;
  59. }
  60.  
  61. #pic-thread .title t1{
  62. font-family: 'Krona One', sans-serif;
  63. font-weight: 400;
  64. font-size: 28px;
  65. line-height: 35px;
  66. text-align: center;
  67. text-transform: uppercase;
  68. color: var(--white);
  69. text-shadow:
  70. -1px 0px 0 #000,
  71. 0px -1px 0 #000,
  72. -1px 1px 0 #000,
  73. 1px 0px 0 #000;;
  74. }
  75.  
  76. #pic-thread .title t2{
  77. font-family: Lora;
  78. font-weight: 700;
  79. font-size: 12px;
  80. line-height: 40px;
  81. text-align: center;
  82. letter-spacing: 6px;
  83. text-transform: uppercase;
  84. color: var(--black);
  85. background: var(--white);
  86. border: 0.5px solid var(--black);
  87. padding: 5px 28px 5px 33px;
  88. border-radius: 80px / 25px;
  89. }
  90.  
  91. #pic-thread .title t3{
  92. font-family: Krona One;
  93. font-style: normal;
  94. font-weight: normal;
  95. font-size: 13px;
  96. line-height: 16px;
  97. text-align: center;
  98. letter-spacing: 0.5em;
  99. text-transform: uppercase;
  100. color: var(--black);
  101. }
  102.  
  103. #pic-thread .text-bg{
  104. position: absolute;
  105. bottom: 65px;
  106. left: 0px;
  107. width: 345px;
  108. height: 400px;
  109. background: var(--white);
  110. }
  111.  
  112. #pic-thread .textbox{
  113. position: absolute;
  114. top: 53.5px;
  115. left: 65px;
  116. width: 218px;
  117. height: 292px;
  118. background: transparent;
  119. overflow: auto;
  120. z-index: 3;
  121. font-family: 'Rubik', sans-serif;
  122. font-weight: 400;
  123. font-size: 10px;
  124. line-height: 15px;
  125. text-align: justify;
  126. color: var(--black);
  127. padding-right: 14px;
  128. }
  129.  
  130. #pic-thread .words-bg{
  131. position: absolute;
  132. top: 208px;
  133. right: 80px;
  134. color: var(--red);
  135. font-size: 166px;
  136. line-height: 0px;
  137. transform: rotate(33deg);
  138. }
  139.  
  140. #pic-thread .words{
  141. position: absolute;
  142. top: 192px;
  143. right: 132px;
  144. font-family: 'Krona One', sans-serif;
  145. font-style: normal;
  146. font-weight: normal;
  147. font-size: 8px;
  148. line-height: 12px;
  149. text-align: center;
  150. text-transform: uppercase;
  151. color: var(--black);
  152. }
  153.  
  154. #pic-thread .quote{
  155. position: absolute;
  156. bottom: 56px;
  157. right: 43px;
  158. width: 75px;
  159. background: transparent;
  160. font-family: 'Times New Roman', serif;
  161. font-style: italic;
  162. font-weight: 400;
  163. font-size: 10px;
  164. line-height: 13px;
  165. text-align: justify;
  166. letter-spacing: 0.3px;
  167. color: var(--black);
  168. }
  169.  
  170. #pic-thread .quote b{
  171. font-family: 'Krona One', sans-serif;
  172. font-weight: 400;
  173. font-style: normal;
  174. font-size: 8.5px;
  175. line-height: 12px;
  176. text-transform: uppercase;
  177. letter-spacing: 0px;
  178. }
  179.  
  180. #pic-thread .notes{
  181. position: absolute;
  182. bottom: 31px;
  183. left: 42px;
  184. background: transparent;
  185. font-family: 'Krona One', sans-serif;
  186. font-weight: 400;
  187. font-size: 8px;
  188. line-height: 10px;
  189. text-transform: uppercase;
  190. color: var(--black);
  191. z-index: 3;
  192. }
  193.  
  194. #pic-thread .notes a{
  195. text-decoration: none;
  196. color: var(--red);
  197. margin-right: 5px;
  198. font-size: 10px;
  199. }
  200. </style>
  201.  
  202. <link href="https://fonts.googleapis.com/css2?family=Krona+One&family=Lora:wght@600;700&family=Rubik:ital@0;1&display=swap" rel="stylesheet">
  203.  
  204. <center>
  205. <div id="pic-thread">
  206. <div class="border"></div>
  207. <div class="ellipse"></div>
  208.  
  209. <div class="title">
  210. <t1>Partners</t1><br>
  211. <t2>in</t2><br>
  212. <t3>Crime</t3>
  213. </div>
  214.  
  215. <div class="text-bg">
  216. <div class="textbox">
  217. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
  218. <br><br>
  219. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.
  220. </div>
  221. </div>
  222.  
  223. <div class="words-bg">&#10041;</div>
  224. <div class="words">###<br>words</div>
  225.  
  226. <div class="quote">
  227. <b>Quote</b><p>
  228. Lorem ipsum dolor sit amet, consectetur adipiscing elit,
  229. sed do eiusmod tempor
  230. </div>
  231.  
  232. <div class="notes">
  233. <a href="https://shadowplayers.jcink.net/index.php?showuser=95" title="Hanie ©">&#10022;</a>
  234. notes / @tags
  235. </div>
  236.  
  237. </div>
  238. </center>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement