Advertisement
Lirbo

Untitled

Dec 6th, 2021 (edited)
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.30 KB | None | 0 0
  1. [html]
  2. <link rel="preconnect" href="https://fonts.googleapis.com">
  3. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  4. <link href="https://fonts.googleapis.com/css2?family=Corinthia:wght@400;700&family=Roboto:wght@300;500&family=Special+Elite&display=swap" rel="stylesheet">
  5.  
  6. <style>
  7. *{
  8. box-sizing: content-box;
  9. }
  10.  
  11. img{
  12. max-width: 100%
  13. height: auto;
  14. }
  15.  
  16. body{
  17. margin: 0px;
  18. font-family: 'Special Elite', cursive;
  19. }
  20.  
  21. .intro{
  22. font-family: "Trebuchet MS", "Arial", "Helvetica", sans-serif;
  23. text-align: center;
  24. font-style: italic;
  25. padding: 80px;
  26. }
  27.  
  28. .intro p{
  29. margin: 40px;
  30. }
  31.  
  32. .intro p:hover{
  33. color: #800000;
  34. transition: all 2s;
  35. }
  36.  
  37. .intro img:hover{
  38. filter: invert(100%);
  39. transition: all 2s;
  40. }
  41.  
  42. .general{
  43. display: flex;
  44. justify-content: center;
  45. padding: 80px;
  46. }
  47.  
  48. .general-card{
  49. width: 400px;
  50. height: 600px;
  51. background-color: transparent;
  52. border: 1px solid black;
  53. position: relative;
  54. align-items: center;
  55. box-shadow: 0px 0px 16px 10px #000000;
  56. transition: all 2s;
  57. border-radius: 10px;
  58. }
  59.  
  60. .general-card img{
  61. width: 400px;
  62. height: 600px;
  63. }
  64.  
  65. .card-title{
  66. position: absolute;
  67. text-align: center;
  68. top: 35%;
  69. left: 13%;
  70. font-size: 48px;
  71. color: #000;
  72. line-height: 80px;
  73. text-shadow: #800000 0px 0px 5px, #800000 0px 0px 10px, #800000 0px 0px 15px, #800000 0px 0px 20px, #FF2D95 0px 0px 30px, #FF2D95 0px 0px 40px, #FF2D95 0px 0px 50px, #FF2D95 0px 0px 75px;
  74. }
  75.  
  76. .general-card:hover{
  77. background-color: #560000;
  78. transition: all 2s;
  79. }
  80.  
  81. .general-card:hover img{
  82. display: none;
  83. }
  84.  
  85. .general-card:hover .card-title{
  86. display: none;
  87. }
  88.  
  89. .card-description{
  90. position: absolute;
  91. display: none;
  92. width: 400px;
  93. height: 600px;
  94. font-size: 24px;
  95. line-height: 62px;
  96. padding: 10px;
  97. color: #000;
  98. }
  99.  
  100. .card-description h3{
  101. display: flex;
  102. justify-content: center;
  103. font-size: 32px;
  104. padding: 32px 0px 32px 0px;
  105. }
  106.  
  107. .general-card:hover .card-description{
  108. display: block;
  109. justify-content: start;
  110. }
  111.  
  112. .appearance{
  113. font-size: 20px;
  114. display: flex;
  115. flex-direction: column;
  116. align-items: center;
  117. line-height: 25px;
  118. }
  119.  
  120. .appearance img:hover{
  121. filter: invert(100%);
  122. transition: all 2s;
  123. }
  124.  
  125. .appearance p:hover{
  126. color: #800000;
  127. transition: all 2s;
  128. }
  129.  
  130. .socials{
  131. padding: 80px 0px 80px 0px;
  132. }
  133.  
  134. .static-relations{
  135. display: flex;
  136. justify-content: space-around;
  137. margin-top: 60px
  138. margin-bottom: 60px;
  139. }
  140.  
  141. .relation-big{
  142. max-width: 45%;
  143. width: 400px;
  144. height: 600px;
  145. border: 1px solid black;
  146. background-color: transparent;
  147. position: relative;
  148. }
  149.  
  150. .relation-big:hover{
  151. background-color: #560000;;
  152. transition: all 2s;
  153. }
  154.  
  155. .relation-big:hover img{
  156. display: none;
  157. }
  158.  
  159. .relation-big:hover h2{
  160. display: none;
  161. }
  162.  
  163. .relation-big:hover .card-description{
  164. display: block;
  165. }
  166.  
  167. .relation{
  168. margin: 15px;
  169. display: flex;
  170. align-items: center;
  171. margin-top: 10px;
  172. }
  173.  
  174. .relation-description{
  175. margin: 15px;
  176. font-size: 15px;
  177. }
  178.  
  179. .relation-description h2{
  180. color: #800000;
  181. font-size: 32px;
  182. margin-bottom: 10px;
  183. margin-top: 10px;
  184. }
  185.  
  186. .relation:hover p{
  187. color: #800000;
  188. transition: all 2s;
  189. }
  190.  
  191. .footer{
  192. display: flex;
  193. flex-direction: column;
  194. align-items: center;
  195. font-family: "Trebuchet MS", "Arial", "Helvetica", sans-serif;
  196. text-align: center;
  197. font-style: italic;
  198. padding: 80px;
  199. }
  200.  
  201. .footer-cards{
  202. display: flex;
  203. justify-content: center;
  204. }
  205.  
  206. .footer p{
  207. margin: 40px;
  208. }
  209.  
  210. .footer-img:hover{
  211. filter: invert(100%);
  212. transition: all 2s;
  213. }
  214.  
  215. .footer p:hover{
  216. color: #800000;
  217. transition: all 2s;
  218. }
  219.  
  220. .invisible{
  221. display: none;
  222. }
  223.  
  224. </style>
  225.  
  226. <div class="invisible">
  227. <audio controls autoplay>
  228. <source src="https://cdn.discordapp.com/attachments/420296721906663434/797075362982789120/Demonic_Whispers.mp3" type="audio/mpeg">
  229.  
  230. Your browser does not support the audio element.
  231. </audio>
  232. </div>
  233.  
  234. <section class="intro">
  235. <img src="https://i.imgur.com/h1vjDqt.png">
  236. <p>Like the rest of her kind, she has forever said her farewell to the light.<br>
  237. Hunting the nights, living on the remnants of others' lives...<br>
  238. But what do the other Childer of Caine truly know of darkness?</p>
  239. <img src="https://i.imgur.com/dP2Tubo.png">
  240. </section>
  241.  
  242. <section class="general">
  243. <div class="general-card">
  244. <h2 class="card-title">General<br>Information</h2>
  245. <img src="https://i.imgur.com/LKLi91S.jpg" style="border-radius: 10px;">
  246. <div class="card-description">
  247. <h3>General Information</h3>
  248. <p>Legal Name: Camila Blackrose<br>
  249. Given Name: <span style="color: transparent; text-shadow: 0 0 8px rgba(0,0,0,0.5);">Carmel Haddad<span style="color: black; text-shadow: 0 0 0px rgba(0,0,0,0);"><br>
  250. Birth: October 31, 1613<br>
  251. Race: Vampire (?)<br>
  252. Bloodline: Demons<br>
  253. Allegiance: Azaneali<br>
  254. Sire: Dad</p>
  255. </div>
  256. </div>
  257. </section>
  258.  
  259. <section class="appearance">
  260. <img src="https://i.imgur.com/LCixT9v.png" width="512px" height="512px">
  261. <p>Camila usually will not wander around with her true appearance, she adapts like a chameleon, fitting herself and her behavior into the environment, she might appear as anything and anyone; Thus, there are only a few who really knows what truly lies beneath. When Camila does not put her disguise up however, she can be recognized as a young businesswoman in her early twenties. While she is indeed once used to appear somewhat like a Mesopotamian, though with extraordinarily pale skin that sort of disguised it, she now appears to be Asian... (?) Regardless of her ethnicity, her English is very fluent and it is hard to tell whether she is a native speaker or not.
  262. Camila usually looks down on everything and anyone, believing this world is rotten to its core and doomed from the first place, she believes - she knows, that the only way to cure it is to bring the end. While she does possess a morbid world view, she refrains from actually showing it as it can question the integrity of her disguise. Most people do stay below her radar while the faithful and the scholar stand as a beacon in the darkness to her and her malicious conspiracies.
  263. No matter where she goes, the mark of the doom accompanies her, filling the room with menace in such a mysterious way that both frighten and allure her surroundings. Subverting their minds and dominating them into submission like puppets on strings under her control.</p>
  264. </section>
  265.  
  266. <section class="socials">
  267.  
  268. <div class="static-relations">
  269. <div class="relation-big">
  270. <h2 class="card-title">Children of the<br>Outer Dark</h2>
  271. <img src="https://i.imgur.com/yPH0sGJ.jpg" width="400px" height="600px">
  272. <div class="card-description">
  273. <h3>Sleeping Children</h3>
  274. <p style="line-height: 28px;">Predators to all, older than reality as we know it, the ones who predate even the Fallen, yet got earth steamrolled on top of them just to find themselves buried under the soil and cast into an eternal prison in the darkness. So have happened to the Fallen, which proves to be a repeated history. These creatures hold the keys to the universe and will one day burst out of their shackles to lay their destruction and end the existence.</p>
  275. </div>
  276. </div>
  277.  
  278. <div class="relation-big">
  279. <h2 class="card-title">Vampires</h2>
  280. <img src="https://i.imgur.com/z5Gfeja.jpg" width="400px" height="600px">
  281. <div class="card-description">
  282. <h3>Vampires</h3>
  283. <p style="line-height: 28px;">Cainites, the legacy of Caine... the ones with the given potential for "enter life", yet most fail to recognize that their unlives are merely temporary, and death comes to all by the end of the day. Those how cower from the truth usually end up manipulated by the Camarilla, and those who acknowledge it and try to prevent it side the Sabbat... yet nearly none of them is wise enough to comprehend that the end is inevitable... so why bother?</p>
  284. </div>
  285. </div>
  286. </div>
  287.  
  288. <div class="static-relations">
  289. <div class="relation-big">
  290. <h2 class="card-title">Werewolves</h2>
  291. <img src="https://i.imgur.com/IBrCiQm.jpg" width="400px" height="600px">
  292. <div class="card-description">
  293. <h3>Werewolves</h3>
  294. <p style="line-height: 28px;">Half Spirits living in the flesh. Most will fight to death for their ideology to bring the Wyrm down, knowing that its minions are growing in size at an unstopabble pace. Yet not all of them are fooled by their Gaia, and those are willing to take the glimpse beyond and work with what they've got.</p>
  295. </div>
  296. </div>
  297.  
  298. <div class="relation-big">
  299. <h2 class="card-title">Awakeneds</h2>
  300. <img src="https://i.imgur.com/jTmOaRQ.jpg" width="400px" height="600px">
  301. <div class="card-description">
  302. <h3>Awakeneds</h3>
  303. <p style="line-height: 28px;">Mere children with too much power in their hands. The majority are still foolish mortals, yet some have dared to take a glimpse beyond... combined with their incomprehensible power the results are deadly.</p>
  304. </div>
  305. </div>
  306. </div>
  307.  
  308. <div class="relation">
  309. <img src="https://i.imgur.com/7GC9Yks.jpg" width="128px" height="128px" style="border-radius: 50%; box-shadow: 0px 0px 7px 7px #000000;">
  310. <div class="relation-description">
  311. <h2>The Blackrose Choir</h2>
  312. <p>My true brothers and sisters, perhaps the only people in the entire universe I would ever be able to put my trust in. As much as death is a holy and shall be savored, I sincerely can not say that I don't miss you, the ones who fell in Sinai to the Israeli army. One day I will bring the choir back to its blasphemous glory once again - I PROMISE.</p>
  313. </div>
  314. </div>
  315.  
  316. <div class="relation">
  317. <img src="https://i.imgur.com/QYWoltC.png" width="128px" height="128px" style="border-radius: 50%; box-shadow: 0px 0px 7px 7px #000000;">
  318. <div class="relation-description">
  319. <h2>Damien Meark</h2>
  320. <p>The retired warrior of the place, a natural leader with an unshakeable personality. Used once to lead the Cainites around the place yet that is no longer the case. I look up to your deeds yet disappointed of the way you handle betrayal. Nonetheless, I still apreciate what you've done for me.</p>
  321. </div>
  322. </div>
  323.  
  324. <div class="relation">
  325. <img src="https://i.imgur.com/Ue8cCow.jpg" width="128px" height="128px" style="border-radius: 50%; box-shadow: 0px 0px 7px 7px #000000;">
  326. <div class="relation-description">
  327. <h2>Victor Altman</h2>
  328. <p>Once a brainless wild animal who is unable to mutter a word properly, and now spitting words of wisedom. I formed my mind about you completely yet, though it seems like you're quite of the trusting type. I could use that fact against you, but the question is why would I?</p>
  329. </div>
  330. </div>
  331.  
  332. <div class="relation">
  333. <img src="https://i.imgur.com/6xLeicq.jpg" width="128px" height="128px" style="border-radius: 50%; box-shadow: 0px 0px 7px 7px #000000;">
  334. <div class="relation-description">
  335. <h2>Ashley Barnes</h2>
  336. <p>Foolish mortal, yet for some reason I do find myself enjoying your presence. I treated you with great kindness, and now it is your turn to prove me that I was not wrong to extend my hand this far for you.</p>
  337. </div>
  338. </div>
  339.  
  340. </section>
  341.  
  342. <section class="footer">
  343. <div class="footer-cards">
  344. <img src="https://i.imgur.com/DpXilrq.png" class="footer-img">
  345. <img src="https://i.imgur.com/B3klckW.gif" class="footer-img">
  346. </div>
  347. <p>This world has much greater powers than mere Kindred, those powers have names...
  348. Names that are hidden in blood and shadows, away from the sight of the ignorant.
  349. The Baali knows where they sleep, and someday will awaken them to lay their waste unto the world.</p>
  350. <img src="https://i.imgur.com/YzWcWjh.png" class="footer-img">
  351. </section>
  352. [/html]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement