LivvyAh

MODULAR: Boxed ReColor 1.0

Feb 14th, 2022 (edited)
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.82 KB | None | 0 0
  1. <!--
  2. Code by CivilEngideer, Code Credit Link can be Moved but not Removed.
  3. Comment when you use this code! I love seeing it used!
  4.  
  5. ---- USE NOTES ----
  6. -May be Wacky. That's life.
  7. -This is the custom color version of this code. Make sure you grab all the correct modules. I suggest grabbing everything you want THEN changing the colors so you can use the Ctrl+F list.
  8. -I suggest https://unsplash.com/ for big images that'll hold up.
  9. -You can edit this to hell and back but please don't smack it into other coders stuff.
  10. -Not tested in WYSIWYG
  11. -A good way to check how things are going as you edit is to use this site: https://th.circlejourney.net/
  12. I suggest using it while you're trying to pick out the order of your modules!
  13.  
  14. ---- Crtl+F is your friend ----
  15. -URL HERE is where links go
  16. -IMG HERE is where img urls go
  17. -#HEXCODE is where a custom hexcode color goes
  18. -ICON is where a fontawesome name goes
  19.  
  20. Here's all the placeholder colors, if you hit the + on the Ctrl+F menu there's an option to replace all which will help immensely.
  21. -Background: #F1DAC4
  22. -Background 2: #E1DDE3
  23. -The Box: #FFB69D
  24. -Header Text: #0D0C1D
  25. -Subheader: #5D6098
  26. -Text: #161B33
  27. -Links: #7E6E87
  28. -Text on pictures: #C1D9EB
  29. -Divider Line: #474973
  30. -Warning: #D08239
  31. -Fancy Border Box: #5464B6
  32. -List Bullet: #707EC2
  33.  
  34. ---- Add Gradient ----
  35. If you want to add a background gradient, use this to replace the
  36. background-color: #HEXCODE
  37. part of the style="" section, mess with the angle and percent for different looks!:
  38. background: linear-gradient(45 deg, #HEXCODE 25%, #HEXCODE 75%);
  39.  
  40. ---- Adding Links ----
  41. If you want to add a link and have it look the same use:
  42. <a style="color:#7E6E87" href="URL HERE">words</a>
  43.  
  44. ---- Divider Line ----
  45. The divider line between the titles and the bodies of the text is this bit:
  46. <hr style="border-color: #474973;" class="w-100">
  47.  
  48. ---- Fontawesome Icons ----
  49. If you want to put a fontawesome icon in the header just put this bit right next to the title text and add in the fontawesome icon of your choice. You can use this anywhere you want icons actually.
  50. <i class="ICON"></i>
  51. Colored version:
  52. <i style="color:#HEXCODE;" class="ICON"></i>
  53. If you want a list where the bullets are icons, replace the <ul> section with this:
  54. <ul class="fa-ul">
  55. <li><span class="fa-li"><i class="ICON"></i></span>list item
  56. </li>
  57. <li><span class="fa-li"><i class="ICON"></i></span>two
  58. </li>
  59. <ul class="fa-ul">
  60. <li><span class="fa-li"><i class="ICON"></i></span>indented
  61. </li></ul>
  62. <li><span class="fa-li"><i class="ICON"></i></span>regular
  63. </li>
  64. </ul>
  65.  
  66. ---- Changing Fonts ----
  67. If you're wanting the true Homestuck look (or to just change a font), add this into the
  68. style=""
  69. before the text you want to change:
  70. font-family:courier new;
  71. If it just has a class and no style, add that bit too, here's an example of before and after:
  72. <div class="p-0 font-italic">
  73. <p>"This is a quote"</p>
  74. </div>
  75. Edited Version:
  76. <div class="p-0 font-italic" style="font-family:courier new;">
  77. <p>"This is a quote"</p>
  78. </div>
  79. It might take some trial and error to identify the correct divs, save often and do your best.
  80. Other fonts you can use, just replace "courier new" from the chunk above, include spaces but
  81. not commas:
  82. andale mono, arial, times new roman, arial black, calibri, comic sans ms, georgia, helvetica, impact, tahoma, terminal, trebuchet ms, palatino, garamond, bookman
  83.  
  84. ---- Picture Alignments ----
  85. If you want a picture to not do the scrolly thing delete this bit:
  86. background-attachment: fixed;
  87. If you're not happy with how a picture is aligned change this segment, some options are top-left, right, bottom, etc.:
  88. background-position: center;
  89. You can also use percents! (ex 25% 45% ) but they only change position from top, not left or right.
  90. -->
  91.  
  92. <div class="row no-gutters p-3 mx-auto my-md-3"
  93. style="max-width: 800px; background-color:#FFB69D">
  94. <div class="container-fluid px-0" style="max-width: 750px; letter-spacing: .45px;">
  95.  
  96. <!-- If you want to add something above the header put it here! -->
  97.  
  98. <!-- HEADER START -->
  99. <div class="row">
  100. <div class="col-12 p-2">
  101. <div class="p-3 text-center" style="background-color:#E1DDE3">
  102. <div class="text-uppercase" style="letter-spacing:3px; font-size:25px; color:#0D0C1D;">
  103. NAME
  104. </div>
  105. <hr style="border-color: #474973;" class="w-100">
  106. <div style="color:#161B33" class="p-0 font-italic">
  107. <p>"This is a quote"
  108. </p>
  109. </div>
  110. </div>
  111. </div>
  112. </div>
  113. <!-- HEADER END -->
  114. <!-- THE CODE ZONE
  115. This is where any of the code parts you want can go in any order!
  116. Just make sure you copy the whole thing and that its not anywhere inside any other code part.-->
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126. <!-- CREDIT START -->
  127. <div class="row">
  128. <div class="col-12 p-2">
  129. <div class="p-3 text-center" style="background-color:#E1DDE3; color:#0D0C1D">
  130. <div class="font-italic">
  131. <!-- IMAGE/OTHER CREDITS -->
  132. <p>
  133. <a style="color:#7E6E87" href="URL HERE">1
  134. </a>
  135. /
  136. <a style="color:#7E6E87" href="URL HERE">2
  137. </a>
  138. /
  139. <a style="color:#7E6E87" href="URL HERE">2
  140. </a>
  141. /
  142. <a style="color:#7E6E87" href="URL HERE">3
  143. </a>
  144. <!-- CODER CREDIT
  145. OK TO MOVE
  146. DO NOT REMOVE -->
  147. <br>
  148. <a style="color:#7E6E87" href="https://toyhou.se/CivilEngideer">code
  149. </a>
  150. </p>
  151. <!-- CODER CREDIT
  152. OK TO MOVE
  153. DO NOT REMOVE -->
  154. </div>
  155. </div>
  156. </div>
  157. </div>
  158. <!-- CREDIT END -->
  159. </div>
  160. </div>
  161.  
Add Comment
Please, Sign In to add comment