Advertisement
peachlyts

ABOUT ME FILLER | U BETCHA

Aug 11th, 2019
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.09 KB | None | 0 0
  1. :: notes n rules ::
  2. ✩ rules as usual:
  3. ✩ don't use this code as a base to claim/repost as your own. i know my coding and
  4. will not hesitate to raise a ruckus if i see this reposted as someone else's.
  5. ✩ inspo credit to illmakegaycodesforu "001 happy ending".
  6. ✩ leave the credit on!!!! leave it!! just leave it in the code!! give ME credit
  7. for MY work. it's the LEAST you could do. leaving the internal credit will not
  8. show anywhere physically on your layout.
  9. ✩ like what you take, take what you like. these things were coded with y'all in mind.
  10.  
  11. ✩ small icon is 70x70.
  12. ✩ colors in this about me filler are: #f2bcbc, #fff2f2 and #7a7a7a. change the colors
  13. at ur own discretion (or not).
  14. ✩ scrollbar colors are: #f4cbcb, #ffeaea + fff2f2.
  15. ✩ background img size is 350x180. this will resize on its own but if you can't access photoshop
  16. or another photo editor to crop + resize, make sure the bg is at least 500x300.
  17. ✩ to change the color of the about me scroll box you will need the rgb #'s. you can access
  18. those here (https://www.w3schools.com/colors/colors_picker.asp) or from any other rgb color
  19. selector, on photoshop, etc. you will need to copy the 3 numbers in the parenthesis, for ex:
  20. "rgb(255, 26, 117)", you will take 255, 26, 117 (in that order) and paste it into the code
  21. under "background" in the div "peach-right-about".
  22. ✩ about me scrolls.
  23. ✩ if you need further help, feel free to reach out to me (mia) @ roleplayer.me/681968
  24.  
  25. ✩ ✩ paste everything below the line in your about me section ✩ ✩
  26. ------------------
  27.  
  28. <style>
  29. /*about me filler by mia villamor for peachlyts.
  30. please do not delete this credit. it will not affect
  31. how the filler shows on your profile. thank you! :-)
  32. */
  33.  
  34. @import url('https://fonts.googleapis.com/css?family=Inconsolata:400,700');
  35.  
  36. #peach-web {
  37. position: relative;
  38. margin: 0 auto;
  39. width: 350px;
  40. height: 180px;
  41. padding: 10px;
  42. text-align: center;
  43. overflow: hidden;
  44. background-image: url('https://placehold.it/350x180');
  45. background-size: cover;
  46. border: .5px solid #f2bcbc;
  47. border-top: none;
  48. }
  49.  
  50. #peach-web-top {
  51. position: relative;
  52. left: -10px;
  53. margin-top: -10px;
  54. height: 10px;
  55. width: 350px;
  56. padding: 10px;
  57. background-color: #fff2f2;
  58. border: .5px solid #f2bcbc;
  59. }
  60.  
  61. #peach-web-circles {
  62. position: relative;
  63. float: left;
  64. top: -5px;
  65. left: -5px;
  66. margin: 5px;
  67. width: 10px;
  68. height: 10px;
  69. border-radius: 100%;
  70. border: .5px solid #f2bcbc;
  71. }
  72.  
  73. #peach-inner {
  74. position: relative;
  75. margin-top: 12px;
  76. width: 330px;
  77. height: 130px;
  78. padding: 10px;
  79. overflow-y: hidden;
  80. overflow-x: auto;
  81. background-color: transparent;
  82. }
  83.  
  84. #peach-left {
  85. position: relative;
  86. float: left;
  87. left: -8px;
  88. margin-top: -10px;
  89. width: 340px;
  90. height: 120px;
  91. padding: 10px;
  92. background-color: transparent;
  93. }
  94.  
  95. #peach-right {
  96. position: relative;
  97. margin-left: 390px;
  98. margin-top: -10px;
  99. width: 330px;
  100. height: 120px;
  101. padding: 10px;
  102. background-color: transparent;
  103. }
  104.  
  105. #peach-left-bnr {
  106. position: relative;
  107. margin-top: 45px;
  108. left: -10px;
  109. width: 360px;
  110. height: 40px;
  111. background-color: #fff2f2;
  112. }
  113.  
  114. #peach-left-icon {
  115. position: relative;
  116. width: 60px;
  117. height: 60px;
  118. margin-top: 10px;
  119. left: -5px;
  120. border-radius: 100%;
  121. border: 2px solid #fff;
  122. padding: 5px;
  123. }
  124.  
  125. #peach-right-icon {
  126. position: relative;
  127. display: block;
  128. top: -2px;
  129. left: -15px;
  130. width: 80px;
  131. height: 80px;
  132. margin: 10px;
  133. border: 2px solid #fff;
  134. border-radius: 100%;
  135. padding: 5px;
  136. }
  137.  
  138. #peach-right-about {
  139. position: relative;
  140. width: 210px;
  141. height: 80px;
  142. overflow: scroll;
  143. overflow-x: hidden;
  144. padding: 10px;
  145. margin-top: -110px;
  146. left: 100px;
  147. border-radius: 10px;
  148. background: rgba(255, 242, 242, 0.5);
  149. text-align: justify;
  150. color: #7a7a7a;
  151. font-size: 10px;
  152. font-family: 'inconsolata', monospace;
  153. }
  154.  
  155. #peach-left-sub {
  156. position: relative;
  157. margin-top: 10px;
  158. text-align: center;
  159. font-family: 'inconsolata', monospace;
  160. font-size: 10px;
  161. color: #7a7a7a;
  162. }
  163.  
  164. #peach-inner::-webkit-scrollbar-thumb {
  165. height:auto;
  166. background-color: #f4cbcb;
  167. border: 2px solid #ffeaea;}
  168.  
  169. #peach-inner::-webkit-scrollbar {
  170. height:9px;
  171. width: 9px;
  172. background-color: #f9d6d6;
  173. border: 4px solid #fff2f2;
  174. }
  175.  
  176. #peach-right-about::-webkit-scrollbar-thumb {
  177. height:auto;
  178. background-color: #f4cbcb;
  179. border: 2px solid #ffeaea;
  180. border-top-right-radius: 10px;
  181. border-bottom-right-radius: 10px;}
  182.  
  183. #peach-right-about::-webkit-scrollbar {
  184. height:9px;
  185. width: 9px;
  186. background-color: #f9d6d6;
  187. border: 4px solid #fff2f2;
  188. border-top-right-radius: 10px;
  189. border-bottom-right-radius: 10px;
  190. }
  191. </style>
  192.  
  193. <div id="peach-web">
  194. <div id="peach-web-top">
  195. <div id="peach-web-circles" style="background-color: #ffeaea;"></div>
  196. <div id="peach-web-circles" style="background-color: #f9d6d6;"></div>
  197. <div id="peach-web-circles" style="background-color: #f4cbcb;"></div>
  198. </div>
  199. <div id="peach-inner">
  200.  
  201. <div id="peach-left">
  202. <img src="https://placehold.it/60x60" id="peach-left-icon">
  203. <div id="peach-left-sub">title here <i>!</i></div>
  204. </div>
  205.  
  206. <div id="peach-right">
  207. <img src="https://placehold.it/80x80" id="peach-right-icon">
  208. <div id="peach-right-about">
  209. about me here about me here about me here about me here
  210. about me here about me here about me here about me here
  211. about me here about me here about me here about me here
  212. about me here about me here about me here about me here
  213. about me here about me here about me here about me here
  214. about me here about me here about me here about me here
  215. about me here about me here about me here about me here
  216. </div>
  217.  
  218. </div>
  219.  
  220.  
  221.  
  222. </div>
  223. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement