Advertisement
Falkstids

Amalyss

May 19th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.25 KB | None | 0 0
  1. <style>
  2.  
  3. @import url('https://fonts.googleapis.com/css?family=Amatic+SC|Josefin+Sans');
  4.  
  5. body{
  6. overflow:hidden;
  7. }
  8.  
  9.  
  10. ::-webkit-scrollbar
  11. {
  12. width: 10px;
  13. background-color: transparent;
  14. }
  15.  
  16.  
  17. @keyframes move-twink-back {
  18. from {background-position:0 0;}
  19. to {background-position:-10000px 5000px;}
  20. }
  21. @-webkit-keyframes move-twink-back {
  22. from {background-position:0 0;}
  23. to {background-position:-10000px 5000px;}
  24. }
  25. @-moz-keyframes move-twink-back {
  26. from {background-position:0 0;}
  27. to {background-position:-10000px 5000px;}
  28. }
  29. @-ms-keyframes move-twink-back {
  30. from {background-position:0 0;}
  31. to {background-position:-10000px 5000px;}
  32. }
  33.  
  34. @keyframes move-clouds-back {
  35. from {background-position:0 0;}
  36. to {background-position:10000px 0;}
  37. }
  38. @-webkit-keyframes move-clouds-back {
  39. from {background-position:0 0;}
  40. to {background-position:10000px 0;}
  41. }
  42. @-moz-keyframes move-clouds-back {
  43. from {background-position:0 0;}
  44. to {background-position:10000px 0;}
  45. }
  46. @-ms-keyframes move-clouds-back {
  47. from {background-position: 0;}
  48. to {background-position:10000px 0;}
  49. }
  50.  
  51. .stars, .twinkling, .clouds {
  52. position:absolute;
  53. top:0;
  54. left:0;
  55. right:0;
  56. bottom:0;
  57. width:100%;
  58. height:100%;
  59. display:block;
  60. }
  61.  
  62. .stars {
  63. background:#000 url(http://i.imgur.com/E1QZbHT.png) repeat top center;
  64. z-index:0;
  65. }
  66.  
  67. .twinkling{
  68. background:transparent url(http://i.imgur.com/qHEkoy6.png) repeat top center;
  69. z-index:1;
  70.  
  71. -moz-animation:move-twink-back 200s linear infinite;
  72. -ms-animation:move-twink-back 200s linear infinite;
  73. -o-animation:move-twink-back 200s linear infinite;
  74. -webkit-animation:move-twink-back 200s linear infinite;
  75. animation:move-twink-back 200s linear infinite;
  76. }
  77.  
  78. .clouds{
  79. background:transparent url(http://i.imgur.com/3S8dyLp.png) repeat top center;
  80. z-index:3;
  81.  
  82. -moz-animation:move-clouds-back 200s linear infinite;
  83. -ms-animation:move-clouds-back 200s linear infinite;
  84. -o-animation:move-clouds-back 200s linear infinite;
  85. -webkit-animation:move-clouds-back 200s linear infinite;
  86. animation:move-clouds-back 200s linear infinite;
  87. }
  88. #f1_container {
  89. position: absolute;
  90. width: 300px;
  91. height: 600px;
  92. top:50%;
  93. left:50%;
  94. margin-top:-300px;
  95. margin-left:-150px;
  96. z-index: 10;
  97. }
  98. #f1_container {
  99. perspective: 1000;
  100. }
  101. #f1_card {
  102. width: 100%;
  103. height: 100%;
  104. transform-style: preserve-3d;
  105. transition: all .5s linear;
  106. }
  107. #f1_container:hover #f1_card {
  108. transform: rotateY(180deg);
  109. }
  110.  
  111. #f2_container {
  112. position: absolute;
  113. width: 250px;
  114. height: 550px;
  115. top:50%;
  116. left:50%;
  117. margin-top:-300px;
  118. margin-left:200px;
  119. z-index: 10;
  120. }
  121.  
  122. #f2_container:hover #f1_card {
  123. transform: rotateY(180deg);
  124. }
  125.  
  126. #f3_container {
  127. position: absolute;
  128. width: 250px;
  129. height: 550px;
  130. top:50%;
  131. left:50%;
  132. margin-top:-300px;
  133. margin-left:-450px;
  134. z-index: 10;
  135. }
  136.  
  137. #f3_container:hover #f1_card {
  138. transform: rotateY(180deg);
  139. }
  140.  
  141. #f4_container {
  142. position: absolute;
  143. width: 250px;
  144. height: 550px;
  145. top:50%;
  146. left:50%;
  147. margin-top:-300px;
  148. margin-left:-750px;
  149. z-index: 10;
  150. }
  151.  
  152. #f4_container:hover #f1_card {
  153. transform: rotateY(180deg);
  154. }
  155.  
  156. #f5_container {
  157. position: absolute;
  158. width: 250px;
  159. height: 550px;
  160. top:50%;
  161. left:50%;
  162. margin-top:-300px;
  163. margin-left:500px;
  164. z-index: 10;
  165. }
  166.  
  167. #f5_container:hover #f1_card {
  168. transform: rotateY(180deg);
  169. }
  170.  
  171. #textbox{
  172. background-color:transparent;
  173. width:210px;
  174. height:430px;
  175. border:solid 1px #ca3765;
  176. position:absolute;
  177. top:50%;
  178. left:50%;
  179. margin-top:-280px;
  180. margin-left:-115px;
  181. opacity:0;
  182. transition:1s ease-in;
  183. padding:10px;
  184. color:#ffc6a5;
  185. text-align:justify;
  186. font-family: 'Amatic SC', cursive;
  187. font-size:13pt;
  188. font-weight:400;
  189. overflow:auto;
  190. }
  191.  
  192. a{
  193. text-decoration:none;
  194. color:#999999;
  195. font-weight: italics;
  196. transition:1s;
  197. }
  198.  
  199. a:hover{
  200. color:#dadada;
  201. }
  202.  
  203. h1{
  204. font-family: 'Amatic SC', cursive;
  205. font-size:30pt;
  206. font-weight:400;
  207. color:#fff;
  208. text-shadow: 2px 2px #9a2eb3;
  209. position:absolute;
  210. top:50%;
  211. left:50%;
  212. margin-top:200px;
  213. margin-left:-130px
  214.  
  215. }
  216.  
  217. .face {
  218. position: absolute;
  219. width: 100%;
  220. height: 100%;
  221. backface-visibility: hidden;
  222. }
  223. .face.back {
  224. display: block;
  225. transform: rotateY(180deg);
  226. box-sizing: border-box;
  227. padding: 10px;
  228. color: white;
  229. text-align: center;
  230. background-color: transparent;
  231. background-image:url('http://i.picpar.com/OnXb.jpg');
  232. background-size:contain;
  233. background-repeat:no-repeat;
  234. width:100%;
  235. height:600px;
  236. }
  237.  
  238. .face.back2 {
  239. display: block;
  240. transform: rotateY(180deg);
  241. box-sizing: border-box;
  242. padding: 10px;
  243. color: white;
  244. text-align: center;
  245. background-color: transparent;
  246. background-image:url('http://i.imgur.com/ti1eo75.png');
  247. background-size:contain;
  248. background-repeat:no-repeat;
  249. width:100%;
  250. height:580px;
  251. transition:1s ease-in;
  252. }
  253.  
  254. .face.back2:hover{
  255. background-image:url('http://i.imgur.com/0jjaRu9.png');
  256. transition-delay:100ms;
  257. transition:1s ease-in;
  258. }
  259.  
  260. .face.back2:hover>#textbox{
  261. opacity:1;
  262. transition:1s ease-in;
  263. }
  264.  
  265. .face.back3 {
  266. display: block;
  267. transform: rotateY(180deg);
  268. box-sizing: border-box;
  269. padding: 10px;
  270. color: white;
  271. text-align: center;
  272. background-color: transparent;
  273. background-image:url('http://i.imgur.com/Fj7e2lO.png');
  274. background-size:contain;
  275. background-repeat:no-repeat;
  276. width:100%;
  277. height:580px;
  278. transition:1s ease-in;
  279. }
  280.  
  281. .face.back3:hover{
  282. background-image:url('http://i.imgur.com/QvgSABP.png');
  283. transition-delay:100ms;
  284. transition:1s ease-in;
  285.  
  286. }
  287.  
  288. .face.back3:hover>#textbox{
  289. opacity:1;
  290. transition:1s ease-in;
  291. }
  292.  
  293. .face.back4 {
  294. display: block;
  295. transform: rotateY(180deg);
  296. box-sizing: border-box;
  297. padding: 10px;
  298. color: white;
  299. text-align: center;
  300. background-color: transparent;
  301. background-image:url('http://i.imgur.com/tMp2XdL.png');
  302. background-size:contain;
  303. background-repeat:no-repeat;
  304. width:100%;
  305. height:580px;
  306. transition:1s ease-in;
  307. }
  308.  
  309. .face.back4:hover{
  310.  
  311. background-image:url('http://i.imgur.com/Q87u4ko.png');
  312. transition-delay:100ms;
  313. transition:1s ease-in;
  314.  
  315. }
  316.  
  317. .face.back4:hover>#textbox{
  318. opacity:1;
  319. transition:1s ease-in;
  320. }
  321.  
  322. .face.back5 {
  323. display: block;
  324. transform: rotateY(180deg);
  325. box-sizing: border-box;
  326. padding: 10px;
  327. color: white;
  328. text-align: center;
  329. background-color: transparent;
  330. background-image:url('http://i.imgur.com/TAqkjjv.png');
  331. background-size:contain;
  332. background-repeat:no-repeat;
  333. width:100%;
  334. height:580px;
  335. transition:1s ease-in;
  336. }
  337.  
  338. .face.back5:hover{
  339. background-image:url('http://i.imgur.com/jbHw8QM.png');
  340. transition-delay:100ms;
  341. transition:1s ease-in;
  342.  
  343. }
  344.  
  345. .face.back5:hover>#textbox{
  346. opacity:1;
  347. transition:1s ease-in;
  348. }
  349. </style>
  350. <div class="stars"></div>
  351. <div class="twinkling"></div>
  352. <div class="clouds"></div>
  353. <div id="amalyss"></div>
  354.  
  355. <div id="f1_container">
  356. <div id="f1_card" class="shadow">
  357. <div class="front face">
  358. <img src="http://i.imgur.com/lL9ikgD.png"width="300" height="580"/>
  359. </div>
  360. <div class="back face center">
  361. </div>
  362. </div>
  363. </div>
  364.  
  365. <div id="f2_container">
  366. <div id="f1_card" class="shadow">
  367. <div class="front face">
  368. <img src="http://i.imgur.com/lL9ikgD.png"width="250" height="480"/>
  369. </div>
  370. <div class="back2 face center">
  371. <h1>Personality/Appearance</h1>
  372. <div id="textbox">
  373. Personality: Amalyss is more of a shut in, she prefers quiet situations. Sitting in the Underground in one of her fathers grand Library. But when she is above the surface she, well no. She still prefers to have her time alone, anywhere she can stick her nose in one of her books she can and will. Amalyss can become hyper aggressive when provoked, she tends to be provoked when others touch her. She'll keep herself calm and give plenty of warnings to get away from her before she explodes on someone.
  374. <br><br>Appearance: The drow tends to wear her normal robes, a skirt that falls to her ankles to reveal those bare feet of hers, a enchanted belt that gives her extra intelligence, and holds her glass orbs full of potions, -Mana, Health, Poisons, ect.- and then her top piece tends to have leather straps to keep her entire equipment load light for best agility. <a target="_blank" href="http://i.picpar.com/qrXb.jpg" title="Armour"></a> <a target="_blank" href="http://i.picpar.com/qrXb.jpg">{ARMOUR}</a> While above the surface and in a more modern environment with a pair of black skinny jeans, tank top, and hoodie -Depending on the time of day.- and Sunglasses. She gets tired of people staring at her red eyes and sees no reason to keep people looking at her so she hides them away instead.
  375.  
  376.  
  377. </div>
  378. </div>
  379. </div>
  380. </div>
  381.  
  382. <div id="f3_container">
  383. <div id="f1_card" class="shadow">
  384. <div class="front face">
  385. <img src="http://i.imgur.com/lL9ikgD.png"width="250" height="480"/>
  386. </div>
  387. <div class="back3 face center">
  388. <h1>Dossier</h1>
  389. <div id="textbox">
  390. <span style="float: left;">Name: </span> <span style="float: right;">Amalyss</span><br>
  391. <span style="float: left;">Nicknames:</span> <span style="float: right;"><a href="#" class="del" title="Her father calls her Lyssy, but if anyone above the surface dared to call her that to her face she'd probably sucker punch them.">Doesn't have many.</a> </span><br>
  392. <span style="float: left;">Age:</span> <span style="float: right;">Appears 23</span><br>
  393. <span style="float: left;">Gender: </span> <span style="float: right;">Female</span> <br>
  394. <span style="float: left;">Sexual Preference:</span><span style="float: right;">Men </span><br>
  395. <span style="float: left;">Relationship Status:</span><span style="float: right;">Single </span><br>
  396. <span style="float: right;"><a href="http://www.thiscrush.com/~amalyss">Why?</a> </span><br>
  397. <span style="float: left;">Race:</span> <span style="float: right;">Drow </span><br>
  398. <span style="float: left;">Status:</span> <span style="float: right;">Daughter to the Emperor </span><br>
  399. <span style="float: left;">Title:</span> <span style="float: right;"><a href="#" class="del" title="- Won't admit it above the surface."> Princess </a> </span><br>
  400. <span style="float: left;">Class:</span> <span style="float: right;">Witch </span><br>
  401. <span style="float: left;">Familiar:</span> <span style="float: right;">None as of yet. </span><br>
  402. <span style="float: left;">Alignment:</span> <span style="float: right;">Chaotic Neutral </span><br>
  403. <span style="float: left;">Height:</span> <span style="float: right;">5'6 </span><br>
  404. <span style="float: left;">Weight:</span> <span style="float: right;">120lbs </span><br>
  405. <span style="float: left;">Skin: </span> <span style="float: right;"> <a href="#" class="del" title="Her skin is pigmented a dark grey hue. ">Drow</a></span><br>
  406. <span style="float: left;">Eyes: </span> <span style="float: right;"><a href="#" class="del" title="Ruby filled optics with without pupils.">Ethereal</a> </span><br>
  407. <span style="float: left;">Hair:</span> <span style="float: right;"> <a href="#" class="del" title="white tresses that fall to her mid-back, and on her right side it is pulled back and braided.">Long.</a> </span> <br>
  408. <span style="float: left;">Tongues:</span> <span style="float: right;"> <a href="#" class="del" title="Undercommon, Elven, Abyssal, Aklo, Aquan, Common, Draconic, Drow Sign Language (Will randomly stop speaking and simply start signing), Gnome, and Goblin.">Many. </a></span> <br>
  409. <span style="float: left;">Companion:</span> <span style="float: right;">None yet.</span>
  410. </div>
  411. </div>
  412. </div>
  413. </div>
  414.  
  415. <div id="f4_container">
  416. <div id="f1_card" class="shadow">
  417. <div class="front face">
  418. <img src="http://i.imgur.com/lL9ikgD.png"width="250" height="480"/>
  419. </div>
  420. <div class="back4 face center">
  421. <h1>OOC</h1>
  422. <div id="textbox">
  423. <span style="float: left; font-weight:bold;">00: This profile was made by <a href="https://roleplay.chat/profile.php?user=Hound+of+Tindalos"> The hound of Tindalos</a>, contact him for information on commissions and code help.</span>
  424. </div>
  425. </div>
  426. </div>
  427. </div>
  428.  
  429.  
  430. <div id="f5_container">
  431. <div id="f1_card" class="shadow">
  432. <div class="front face">
  433. <img src="http://i.imgur.com/lL9ikgD.png"width="250" height="480"/>
  434. </div>
  435. <div class="back5 face center">
  436. <h1>Traits/Spells</h1>
  437. <div id="textbox">
  438. Traits:<br>
  439. <b>Ambitious Schemer:</b> Seduction and treachery are tools for advancement in drow society, even for the martially inclined.
  440. <br><b>Ancestral Grudge</b> The enmity between the drow and elves and dwarves is long-standing and deeply entrenched.
  441. <br><b>Blasphemous Covenant:</b> Since their twisted beginnings, the drow have consorted with demons. Some drow have strong ties with these creatures and may call upon ancient and obscene associations to sway demonic cooperation.
  442. <br><b>Champion of Dark Powers: </b>Some drow offer themselves to dark patrons, particularly demon lords. Drow with this racial trait apply their spell resistance only against spells with the good or healing descriptor or against spells cast by a divine spellcaster who worships a good-aligned deity.
  443. <br><b>Poison Minion:</b> Drow sometimes augment their slaves and frontline warriors by making them toxic, causing their bodies to internally produce mawbane poison. The resulting poisonous creature makes a potent weapon in the effort to discourage neighboring monsters. Any creature that hits such a character with a bite attack is immediately exposed to its poison.
  444. <br><b>Seducer:</b> Certain drow possess an innate understanding of the darkest desires that lurk in every heart.
  445. <br><b>Stalker:</b> The lands outside of drow cities, from rough-hewn tunnels to rocky caverns, are treacherous to navigate. Drow with this racial trait may move through difficult terrain without penalty while underground.
  446. <br><b>Sure Step:</b> Adventurers can spend their whole careers in the alleys and sewers of large cities or the tunnels of the Underworld. Characters with this trait suffer no movement penalties when blinded or moving in darkness.
  447. <br><b>Surface Infiltrator:</b> Some drow dwell close to the surface lands, either because they serve drow causes or they were exiled. Drow with this racial trait gain low-light vision, allowing them to see twice as far as humans in conditions of dim light.
  448. <br><br>
  449.  
  450. Spells:
  451. <br><b>Calm Animals:</b> Calms the mind of animals.
  452. <br><b>Charm Animal:</b> Makes one animal your friend.
  453. <br><b>Entangle:</b> Plants entangle everyone in 40-ft.-radius.
  454. <br><b>Goodberry:</b> Little Berries that cure little bits of health - Max eight in one day or poisoned.
  455. <br><b>Faerie Fire:</b> Outlines subjects with light, canceling blur, concealment, and the like.
  456. <br><b>Animal Messenger:</b> Sends a Tiny animal to a specific place.
  457. <br><b>Animal Trance:</b> Fascinates animals within an area.
  458. <br><b>Fire Trap:</b> When cast on a closed object, once opened object explodes and deals fire damage who being who opened it.
  459. <br><b>Hold Animal:</b> Paralyzes one animal for a short duration.
  460. <br><b>Summon Swarm:</b> Summons swarm of bats, rats, or spiders.
  461. <br><b>Wood Shape:</b> Rearranges wooden objects to suit you.
  462. <br><b>Call Lightning:</b> Calls down lightning bolts from sky.
  463. <br><b>Snare:</b> Creates a magic booby trap.
  464. <br><b>Stone Shape:</b> Sculpts stone into any shape.
  465. <br><b>Summon Nature's Ally:</b> Calls creature to fight - Summon Duration can summon different creatures.
  466. <br><b>Air Bubble:</b> Creates a small pocket of air around your head or an object.
  467. <br><b>Aphasia:</b> Prevent a target from understanding language.
  468. <br><b>Blood Money:</b> Use your blood to create material components for spells.
  469. <br><b>Darting Duplicate: </b>You create an illusory duplicate of yourself that opponents might waste an time and distract them to give a means of escape.
  470. <br><b>Adjustable Polymorph: </b>Change your form into any animal.
  471. <br><b>Touch of Combustion:</b> Cause the touched target to ignite in a violent burst of flame.
  472. <br><b>Transfer Tattoo:</b> Move a magic tattoo from one creature to another.
  473. <br><b>Unseen Servant</b> Invisible force obeys your commands.
  474. <br><b>Ancestral Regression:</b> Drow target temporarily transforms into a surface elf and is protected as by undetectable alignment.
  475. <br><b>Anonymous Interaction:</b> Creatures forget details about you and conversations with you.
  476. <br><b>Arcane Disruption:</b> This spell makes it difficult for the subject to cast arcane spells, use spell-like abilities, and use some abilities granted by arcane spellcasting classes.
  477. <br><b>Beastspeak:</b> Speak normally while in animal form.
  478. <br><b>Blood Armor: </b>Your blood hardens when you are wounded, increasing your AC.
  479. <br><b>Bone Fists: </b>The bones of your targets' joints grow thick and sharp, protruding painfully through the skin at the knuckles, elbows, shoulders, spine, and knees.
  480. <br><b>Compulsive Liar:</b> Prevent target from speaking the truth.
  481. <br><b>Dark Whispers:</b> Whisper through the shadows.
  482. <br><b>Aura of Cannibalism: </b>You emanate an aura that saps the strength of others of your kind and channels their energy into you.
  483. <br><b>Claim Identity:</b> You steal the target’s face, transforming yourself into a flawless imitation of it. All of the target’s facial features, vocal cues, and identifying physical traits change, transforming it into an unremarkable member of its race and gender.
  484. <br><b>Polymorph Familiar:</b> Give your familiar the shape of another animal.
  485. <br><b>Baleful Polymorph:</b> Turns subject into harmless animal.
  486. <br><b>Teleport: </b>Instantly transports you.
  487. <br><b>Ice Crystal Teleport:</b> Target is frozen, then teleported.
  488. <br><b>Fairy Ring Retreat:</b> Toadstool circle leads to an extradimensional meadow.
  489. <br><b>Trap the Soul: </b>Imprisons subject within gem.
  490. <br><b>Astral Projection:</b> Projects you and others onto Astral Plane.
  491. <br><b>Impenetrable Veil:</b> Enchant a target so it is nearly impossible to detect by both magical and mundane means, granting it multiple benefits.
  492. <br><b>Scribe’s Binding:</b> This spell binds a single creature into a prepared book, sustaining it in suspended animation and filling the book with its experience and knowledge.
  493. <br><b>Soul Bind: </b>Traps newly dead soul to prevent resurrection.
  494. <br><b>Storm of Vengeance: </b>Storm rains acid, lightning, and hail.
  495.  
  496.  
  497.  
  498.  
  499.  
  500.  
  501. </div>
  502. </div>
  503. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement