Advertisement
sonneambedo

rogue

Apr 6th, 2022
582
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.80 KB | None | 0 0
  1. <!--
  2. - turn off WYSIWYG
  3. - don't use as base for paid codes
  4. - keep the credit
  5.  
  6. COLORS:
  7. accent: B45717
  8. text: #ffffff
  9. background: rgba(0,0,0,0.5)
  10.  
  11. -->
  12.  
  13. <div class="container-fluid p-2 pb-3 pr-5" style="color:#ffffff">
  14.  
  15. <!-- name & dagger -->
  16. <div class="row ml-0 mr-5 pl-3" style="background-color:rgba(0,0,0,0.5); ">
  17. <div class="col">
  18.  
  19. <!-- dagger right -->
  20. <i class="fa-light fa-dagger float-right pt-2" style="transform:rotate(35deg); font-size:2.5rem; font-variant:small-caps;"></i>
  21.  
  22. <!-- name -->
  23. <p align="left" style="font-size:2.5rem; font-variant:small-caps;">
  24. <s style="color:#B45717">N</s>ame
  25. <s style="color:#B45717">S</s>urname
  26. </p>
  27.  
  28. </div>
  29.  
  30. </div>
  31.  
  32. <!-- stats, about & image -->
  33. <div class="row ml-0 mr-5" style="min-height:550px;">
  34.  
  35. <!-- stats and proficiencies -->
  36. <div class="col-md-5 p-2" style="background-color:rgba(0,0,0,0.5); border:0.5px solid #ffffff;">
  37.  
  38. <!-- stats -->
  39. <div class="card-deck pt-2">
  40.  
  41. <!-- strength -->
  42. <div class="card justify-content-center align-items-center bg-transparent border-0">
  43.  
  44. <p class="m-0 align-items-center justify-content-center" style="font-size:1.5rem; border:0.5px solid #fff; width:40px; height:40px;">
  45. 7
  46. </p>
  47. <p class="my-2" style="font-size:1.5rem; color:#B45717">
  48. STR
  49. </p>
  50.  
  51. <div class="p-1 align-items-center justify-content-center" style="border-radius:5rem; border:0.5px solid #fff; height:40px; width:40px;">
  52. -2
  53. </div>
  54.  
  55. </div>
  56.  
  57. <!-- dexterity -->
  58. <div class="card justify-content-center align-items-center bg-transparent border-0">
  59.  
  60. <p class="m-0 align-items-center justify-content-center" style="font-size:1.5rem; border:0.5px solid #fff; width:40px; height:40px;">
  61. 20
  62. </p>
  63. <p class="my-2" style="font-size:1.5rem; color:#B45717">
  64. DEX
  65. </p>
  66.  
  67. <div class="p-1 align-items-center justify-content-center" style="border-radius:5rem; border:0.5px solid #fff; height:40px; width:40px;">
  68. +5
  69. </div>
  70.  
  71. </div>
  72.  
  73. <!-- constitution -->
  74. <div class="card justify-content-center align-items-center bg-transparent border-0">
  75.  
  76. <p class="m-0 align-items-center justify-content-center" style="font-size:1.5rem; border:0.5px solid #fff; width:40px; height:40px;">
  77. 13
  78. </p>
  79. <p class="my-2" style="font-size:1.5rem; color:#B45717">
  80. CON
  81. </p>
  82.  
  83. <div class="p-1 align-items-center justify-content-center" style="border-radius:5rem; border:0.5px solid #fff; height:40px; width:40px;">
  84. +1
  85. </div>
  86.  
  87. </div>
  88.  
  89. </div>
  90.  
  91. <hr>
  92.  
  93. <!-- stats 2 -->
  94. <div class="card-deck">
  95.  
  96. <!-- intelligence -->
  97. <div class="card justify-content-center align-items-center bg-transparent border-0">
  98.  
  99. <p class="m-0 align-items-center justify-content-center" style="font-size:1.5rem; border:0.5px solid #fff; width:40px; height:40px;">
  100. 17
  101. </p>
  102. <p class="my-2" style="font-size:1.5rem; color:#B45717">
  103. INT
  104. </p>
  105.  
  106. <div class="p-1 align-items-center justify-content-center" style="border-radius:5rem; border:0.5px solid #fff; height:40px; width:40px;">
  107. +3
  108. </div>
  109.  
  110. </div>
  111.  
  112. <!-- wisdom -->
  113. <div class="card justify-content-center align-items-center bg-transparent border-0">
  114.  
  115. <p class="m-0 align-items-center justify-content-center" style="font-size:1.5rem; border:0.5px solid #fff; width:40px; height:40px;">
  116. 11
  117. </p>
  118. <p class="my-2" style="font-size:1.5rem; color:#B45717">
  119. WIS
  120. </p>
  121.  
  122. <div class="p-1 align-items-center justify-content-center" style="border-radius:5rem; border:0.5px solid #fff; height:40px; width:40px;">
  123. 0
  124. </div>
  125.  
  126. </div>
  127.  
  128. <!-- charisma -->
  129. <div class="card justify-content-center align-items-center bg-transparent border-0">
  130.  
  131. <p class="m-0 align-items-center justify-content-center" style="font-size:1.5rem; border:0.5px solid #fff; width:40px; height:40px;">
  132. 8
  133. </p>
  134. <p class="my-2" style="font-size:1.5rem; color:#B45717">
  135. CHA
  136. </p>
  137.  
  138. <div class="p-1 align-items-center justify-content-center" style="border-radius:5rem; border:0.5px solid #fff; height:40px; width:40px;">
  139. -1
  140. </div>
  141.  
  142. </div>
  143.  
  144. </div>
  145.  
  146. <br>
  147.  
  148. <!-- proficiencies -->
  149. <p align="center" style="font-size:1.7rem; font-variant:small-caps;">
  150. <s style="color:#B45717">
  151. P</s>roficiencies
  152. </p>
  153. <div class="card-deck">
  154.  
  155. <!-- skills -->
  156. <div class="card bg-transparent rounded-0">
  157. <p class="py-2" align="center" style="font-size:1.2rem; font-variant:small-caps;">
  158. <s style="color:#B45717">S</s>kills
  159. </p>
  160. <ul class="mb-0" style="max-height:115px; overflow-y:auto;">
  161. <li>skill (+8)</li>
  162. <li>skill (+6)</li>
  163. <li>skill (+6)</li>
  164. <li>skill (+6)</li>
  165. <li>skill (+8)</li>
  166. <li>skill (+11)</li>
  167. </ul>
  168. </div>
  169.  
  170. <!-- weapons -->
  171. <div class="card bg-transparent rounded-0">
  172. <p class="py-2" align="center" style="font-size:1.2rem; font-variant:small-caps;">
  173. <s style="color:#B45717">W</s>eapons
  174. </p>
  175. <ul class="mb-0" style="max-height:115px; overflow-y:auto;">
  176. <li>weapon type</li>
  177. <li>weapon type</li>
  178. <li>weapon type</li>
  179. <li>weapon type</li>
  180. <li>weapon type</li>
  181. </ul>
  182. </div>
  183.  
  184. </div>
  185.  
  186.  
  187. </div>
  188.  
  189. <!-- about and quote -->
  190. <div class="col-md-4 p-2" style="background-color:rgba(0,0,0,0.5); border:0.5px solid #ffffff;">
  191. <p class="" align="center" style="font-size:2rem; font-variant:small-caps;">
  192. <s style="color:#B45717">
  193. A</s>bout
  194. </p>
  195. <hr>
  196. <p align="center" style="font-size:1.3rem; font-variant:small-caps;color:#B45717">
  197. Class // Background // Alignment
  198. </p>
  199.  
  200. <br>
  201.  
  202. <div class="card rounded-0 bg-transparent p-2" style="max-height:300px; overflow-y:auto; ">
  203. <p>
  204. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis sollicitudin elit sed tellus blandit viverra sed eget odio. Donec accumsan tempor lacus, et venenatis elit feugiat non. Duis porta eros et velit blandit dapibus. Curabitur ac finibus eros. Duis placerat velit vitae massa sodales, eget mattis nibh pellentesque.
  205. </p>
  206. <p>
  207. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis sollicitudin elit sed tellus blandit viverra sed eget odio. Donec accumsan tempor lacus, et venenatis elit feugiat non. Duis porta eros et velit blandit dapibus. Curabitur ac finibus eros. Duis placerat velit vitae massa sodales, eget mattis nibh pellentesque.
  208. </p>
  209. <p>
  210. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis sollicitudin elit sed tellus blandit viverra sed eget odio. Donec accumsan tempor lacus, et venenatis elit feugiat non. Duis porta eros et velit blandit dapibus. Curabitur ac finibus eros. Duis placerat velit vitae massa sodales, eget mattis nibh pellentesque.
  211. </p>
  212. </div>
  213.  
  214. <br>
  215.  
  216. <!-- this box doesn't scroll, keep it short -->
  217. <div class="card bg-transparent rounded-0">
  218. <p class="font-italic p-2" align="center" style="font-size:1.5rem; font-variant:small-caps;">
  219. <i class="fas fa-quote-left float-left" style="color:#B45717"></i>
  220. Insert a short quote here!
  221. <i class="fas fa-quote-right float-right" style="color:#B45717"></i>
  222. </p>
  223.  
  224. </div>
  225. </div>
  226.  
  227. <!-- image -->
  228. <div class="col-md-3 " style="background-color:rgba(0,0,0,0.5); border:0.5px solid #ffffff;">
  229. <div class="card " style="background:url(INSERT_IMAGE_HERE) left; background-size:cover;
  230.  
  231. height:120%; width:135%; margin-top:-6rem;">
  232. <!-- delete the items in the row above (but leave ">) if you want a normal-sized image; i left the border on so you can see how big it is -->
  233. </div>
  234. </div>
  235.  
  236. </div>
  237.  
  238. </div>
  239.  
  240. <!-- credit -->
  241. <p align="center">
  242. <a href="https://toyhou.se/sonneambedo" title="code by sonne"><i class="fas fa-sun" style="color:#FFD700"></i></a>
  243. </p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement