lullahbye

character wardrobe

Jan 7th, 2021 (edited)
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.24 KB | None | 0 0
  1. <!---
  2.  
  3. ========================================================
  4.  
  5. code by Lullah
  6. colors used:
  7. > bg-primary (bootstrap) (header, hr)
  8. > btn-primary (bootstrap) (carousel corner buttons)
  9. > badge-primary (bootstrap) (key items)
  10.  
  11. NOTE:
  12. > Everyone's style of proportions is different; if you want to change the height of the
  13. carousels to match your drawing/art better, please CTRL+F and replace these heights:
  14. > max-height:552px (left and right columns)
  15. > height: 552px (all the carousel images)
  16. > And as always, everything in this code is completely optional! Edit it to suit your needs!
  17.  
  18. You may...
  19. > Edit this code to oblivion!
  20. > Recycle parts for your own use!
  21.  
  22. You may not...
  23. > Remove my watermark!
  24.  
  25. ========================================================
  26.  
  27. --->
  28.  
  29. <div class="container" style="max-width:850px;font-size:0.9em;">
  30. <div class="rounded bg-primary px-2 py-1 text-center text-white" style="font-size:1.2em;letter-spacing:1px;;">
  31. <div>
  32. <!--- TITLE --->
  33. <i class="fas fa-dove"></i>Canary's Wardrobe</div>
  34. </div>
  35.  
  36. <div class="row no-gutters">
  37. <!--- DESCRIPTIVE (LEFT) COLUMN --->
  38. <!--- this entire box scrolls after you've hit a certain height! --->
  39. <div class="col-md-4 mt-1" style="max-height:552px;;overflow:auto;">
  40.  
  41. <div class="bg-faded rounded px-2 py-1">
  42. <!--- PHYSICAL INFORMATION --->
  43. <div style="font-size:1.1em;letter-spacing:0.5px;font-weight:lighter;">Physical Information</div><hr class="bg-primary mb-0 mt-1">
  44. <div style=";">
  45. <!--- PHYSICAL INFORMATION CONTENT --->
  46. <div class="justify-content-between mt-1">
  47. <span>Height</span>
  48. <span>165cm</span>
  49. </div>
  50. <div class="justify-content-between mt-1">
  51. <span>Weight</span>
  52. <span>55kg</span>
  53. </div>
  54. <div class="justify-content-between mt-1">
  55. <span>Body Type</span>
  56. <span>Slim</span>
  57. </div>
  58. <!--- ADD MORE ABOVE HERE --->
  59. </div>
  60. </div>
  61.  
  62. <div class="bg-faded rounded px-2 py-1 mt-1">
  63. <!--- STYLE PREFERENCE --->
  64. <div style="font-size:1.1em;letter-spacing:0.5px;font-weight:lighter;">Style Preference</div><hr class="bg-primary mb-0 mt-1">
  65. <div style=";">
  66. <!--- STYLE PREFERENCE CONTENT --->
  67. <!--- Key items --->
  68. <!--- these take up a lot of space so keep that in mind! --->
  69. <div>Key Items</div>
  70. <div style="font-size:1.25em;">
  71. <span class="badge badge-primary badge-pill">item 1</span>
  72. <span class="badge badge-primary badge-pill">item 2</span>
  73. <span class="badge badge-primary badge-pill">item 3</span>
  74. <span class="badge badge-primary badge-pill">item 4</span>
  75. </div>
  76. <!--- LIKES --->
  77. <div class="mt-1">Likes</div>
  78. <ul class="m-0">
  79. <li>one</li>
  80. <li>one</li>
  81. <li>one</li>
  82. </ul>
  83. <!--- DISLIKES --->
  84. <div class="mt-1">Dislikes</div>
  85. <ul class="m-0">
  86. <li>one</li>
  87. <li>one</li>
  88. <li>one</li>
  89. </ul>
  90. </div></div>
  91.  
  92. <div class="bg-faded rounded px-2 py-1 mt-1">
  93. <!--- COLOR SCHEME --->
  94. <div style="font-size:1.1em;letter-spacing:0.5px;font-weight:lighter;">Color Scheme</div><hr class="bg-primary mb-0 mt-1">
  95. <div class="row no-gutters mt-1">
  96. <!--- COLOR SCHEME BARS --->
  97. <!--- the first and last col should always be rounded-left and rounded-right!! --->
  98. <!--- copy and paste the divs with plain col classes! it'll automatically adjust itself! --->
  99. <div class="col rounded-left" style="height:40px;background-color:#fff;"></div>
  100. <div class="col" style="height:40px;background-color:#c9c9c9;"></div>
  101. <div class="col" style="height:40px;background-color:#7f7f7f;"></div>
  102. <div class="col" style="height:40px;background-color:#262626;"></div>
  103. <div class="col rounded-right" style="height:40px;background-color:#000;"></div>
  104. <!--- add more above here! --->
  105. </div>
  106. </div>
  107.  
  108. <div class="bg-faded rounded px-2 py-1 mt-1">
  109. <!--- NOTES --->
  110. <div style="font-size:1.1em;letter-spacing:0.5px;font-weight:lighter;">Notes</div><hr class="bg-primary mb-0 mt-1">
  111. <div style=";">
  112. <!--- NOTES CONTENT --->
  113. <ul class="m-0">
  114. <li>one</li>
  115. <li>one</li>
  116. <li>one</li>
  117. </ul>
  118. </div>
  119. </div>
  120.  
  121. </div>
  122.  
  123. <!--- CAROUSEL (MIDDLE) COLUMN) --->
  124. <div class="col-md-4 mt-1 px-md-1">
  125. <div id="outfit-carousel" class="carousel slide" data-ride="carousel">
  126.  
  127. <!--- CAROUSEL --->
  128. <!--- please don't write too much on the buttons, they will break! --->
  129. <div class="carousel-inner">
  130. <!--- FIRST CAROUSEL --->
  131. <div class="carousel-item active">
  132. <!--- FOCAL IMAGE --->
  133. <div class="rounded" style="height:552px;
  134.  
  135. background-image:url(https://via.placeholder.com/550);
  136.  
  137. background-size:cover;background-position:center;"></div>
  138. <div class="" style="position:absolute;bottom:5px;right:5px;opacity:90%;"><a class="btn btn-primary px-4 py-1" data-toggle="tooltip" style="max-width:100%;overflow:auto;"
  139.  
  140. title="add additional notes here!"
  141. href="#url">
  142. main outfit</a>
  143. </div>
  144. </div>
  145.  
  146. <!--- SECOND CAROUSEL --->
  147. <div class="carousel-item">
  148. <!--- FOCAL IMAGE --->
  149. <div class="rounded" style="height:552px;
  150.  
  151. background-image:url(https://via.placeholder.com/550);
  152.  
  153. background-size:cover;background-position:center;"></div>
  154. <div class="" style="position:absolute;bottom:5px;right:5px;opacity:90%;"><a class="btn btn-primary px-4 py-1" data-toggle="tooltip" style="max-width:100%;overflow:auto;"
  155.  
  156. title="add additional notes here!"
  157. href="#URL">
  158. secondary outfit</a>
  159. </div>
  160. </div>
  161.  
  162. <!--- THIRD CAROUSEL --->
  163. <div class="carousel-item">
  164. <!--- FOCAL IMAGE --->
  165. <div class="rounded" style="height:552px;
  166.  
  167. background-image:url(https://via.placeholder.com/550);
  168.  
  169. background-size:cover;background-position:center;"></div>
  170. <div class="" style="position:absolute;bottom:5px;right:5px;opacity:90%;"><a class="btn btn-primary px-4 py-1" data-toggle="tooltip" style="max-width:100%;overflow:auto;"
  171.  
  172. title="add additional notes here!"
  173. href="#URL">
  174. tertiary outfit</a>
  175. </div>
  176. </div>
  177.  
  178. <!--- add more above here! --->
  179. </div>
  180.  
  181. <!--- carousel controls! don't touch! --->
  182. <a class="carousel-control-prev" href="#outfit-carousel" role="button" data-slide="prev">
  183. <span class="carousel-control-prev-icon"></span>
  184. </a>
  185. <a class="carousel-control-next" href="#outfit-carousel" role="button" data-slide="next">
  186. <span class="carousel-control-next-icon"></span>
  187. </a>
  188. </div>
  189. </div>
  190.  
  191. <!--- MOODBOARD (RIGHT) COLUMN --->
  192. <!--- this entire box scrolls after you've hit a certain height! --->
  193. <div class="col-md-4 mt-1" style="max-height:552px;overflow:auto;">
  194. <div class="row no-gutters">
  195. <!--- MOODBOARD / OUTFIT INSPOS --->
  196. <div class="col-6">
  197. <!--- IMAGE --->
  198. <div class="rounded" style="height:135px;
  199.  
  200. background-image:url(https://via.placeholder.com/150);
  201.  
  202. background-size:cover;background-position:center;"></div>
  203. </div>
  204. <div class="col-6 pl-1">
  205. <!--- IMAGE --->
  206. <div class="rounded" style="height:135px;
  207.  
  208. background-image:url(https://via.placeholder.com/150);background-size:cover;
  209.  
  210. background-position:center;"></div>
  211. </div>
  212. <div class="col-6 mt-1">
  213. <!--- IMAGE --->
  214. <div class="rounded" style="height:135px;
  215.  
  216. background-image:url(https://via.placeholder.com/150);
  217.  
  218. background-size:cover;background-position:center;"></div>
  219. </div>
  220. <div class="col-6 pl-1 mt-1">
  221. <!--- IMAGE --->
  222. <div class="rounded" style="height:135px;
  223.  
  224. background-image:url(https://via.placeholder.com/150);
  225.  
  226. background-size:cover;background-position:center;"></div>
  227. </div>
  228. <div class="col-6 mt-1">
  229. <!--- IMAGE --->
  230. <div class="rounded" style="height:135px;
  231.  
  232. background-image:url(https://via.placeholder.com/150);
  233.  
  234. background-size:cover;background-position:center;"></div>
  235. </div>
  236. <div class="col-6 pl-1 mt-1">
  237. <!--- IMAGE --->
  238. <div class="rounded" style="height:135px;
  239.  
  240. background-image:url(https://via.placeholder.com/150);
  241.  
  242. background-size:cover;background-position:center;"></div>
  243. </div>
  244. <div class="col-6 mt-1">
  245. <!--- IMAGE --->
  246. <div class="rounded" style="height:135px;
  247.  
  248. background-image:url(https://via.placeholder.com/150);
  249.  
  250. background-size:cover;background-position:center;"></div>
  251. </div>
  252. <div class="col-6 pl-1 mt-1">
  253. <!--- IMAGE --->
  254. <div class="rounded" style="height:135px;
  255.  
  256. background-image:url(https://via.placeholder.com/150);
  257.  
  258. background-size:cover;background-position:center;"></div>
  259. </div>
  260. <!--- ADD MORE IMAGES ABOVE HERE!! --->
  261. </div>
  262. </div>
  263. </div>
  264.  
  265. <!--- credits dont touch pls thx --->
  266. <div class="text-right" style="font-size:0.9em"><a class="tooltipster" title="code by lullah" href="lullah"><i class="fas fa-paw"></i></a></div>
  267. </div>
Add Comment
Please, Sign In to add comment