Advertisement
peachlyts

ABOUT ME FILLER O16 | mango

Aug 5th, 2019
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 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. ✩ leave the credit on!!!! leave it!! just leave it in the code!! give ME credit
  6. for MY work. it's the LEAST you could do. leaving the internal credit will not
  7. show anywhere physically on your layout.
  8. ✩ like what you take, take what you like. these things were coded with y'all in mind.
  9. ✩ notes:
  10. ✩ icon is 80x80. this will resize on its own.
  11. ✩ right side background image is 170x180. this will resize on its own.
  12. to change the background img search for "#peach-right-div" and paste the
  13. background img url into that section of code.
  14. ✩ orange bg color is #f2a58c.
  15. ✩ border bottom color is #fce176.
  16. ✩ about me is NOT scrollable. you can write up to a MAXIMUM of 5 lines of
  17. text before it flows off the div. sorry! i didn't want this one to scroll. :-)
  18. ✩ put whatever ONE letter you want where it says "M". One letter only.
  19. ✩ i think that's it!! if you have any other questions about this code
  20. feel free to msg/cmnt me on rper! (roleplayer.me/dlovato)
  21.  
  22. ✩ ✩ paste everything below the line in your about me section ✩ ✩
  23. ------------------
  24. <style>
  25. /*about me filler by mia villamor for peach lyts.
  26. pls do not delete this credit. thanks. :-)*/
  27. @import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');
  28.  
  29. #peach-div {
  30. position: relative;
  31. margin: 0 auto;
  32. width: 350px;
  33. height: 150px;
  34. padding: 10px;
  35. background-color: #f2a58c;
  36. border-bottom: 12px solid #fce176;
  37. text-align: center;
  38. }
  39.  
  40. #peach-letter {
  41. position: relative;
  42. display: inline-block;
  43. margin-top: 2.5%;
  44. font-family: 'montserrat', sans-serif;
  45. text-transform: uppercase;
  46. font-size: 82px;
  47. color: rgba(0, 0, 0, 0.0);
  48. -webkit-text-stroke: .8px #ffffff;
  49. font-weight: 800;
  50. }
  51.  
  52. #peach-about-left {
  53. position: relative;
  54. font-family: 'montserrat', sans-serif;
  55. text-align: justify;
  56. width: 170px;
  57. font-size: 8.5px;
  58. font-weight: 400;
  59. margin-top: -8%;
  60. text-transform: lowercase;
  61. letter-spacing: 1px;
  62. }
  63.  
  64. #peach-right-div {
  65. position: relative;
  66. float: right;
  67. margin-top: -10px;
  68. right: -10px;
  69. width: 180px;
  70. height: 170px;
  71. background-image:url('http://placehold.it/180x170');
  72. background-size: cover;
  73. }
  74.  
  75. #peach-right-icon {
  76. position: relative;
  77. display: inline-block;
  78. margin-top: 20%;
  79. width: 80px;
  80. height: 80px;
  81. border-radius: 100%;
  82. border: 6px solid #ffffff;
  83. }
  84.  
  85. </style>
  86.  
  87. <div id="peach-div">
  88. <div id="peach-letter">
  89. M
  90. <div id="peach-about-left">
  91. a short about me here. you can write up to 5 lines, however this will not scroll past 5 lines and the text will run off the div so pls no more than 5 lines of txt.
  92. </div>
  93.  
  94. </div>
  95. <div id="peach-right-div">
  96. <img src="https://placehold.it/80x80" id="peach-right-icon">
  97. </div>
  98. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement