HellaBlind

nym code

Apr 8th, 2019 (edited)
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.46 KB | None | 0 0
  1. <style type="text/css">
  2. @import url(//fonts.googleapis.com/css?family=Bebas Neue);
  3. @import url(//fonts.googleapis.com/css?family=Courgette);
  4. @import url(//fonts.googleapis.com/css?family=Oswald);
  5. @import url(//fonts.googleapis.com/css?family=Comfortaa);
  6. @import url(//fonts.googleapis.com/css?family=Poppins);
  7. @import url(//fonts.googleapis.com/css?family=Sedgwick+Ave);
  8. @import url(//fonts.googleapis.com/css?family=Pathway+Gothic+One);
  9.  
  10.  
  11. /*body*/
  12. body{
  13. background-color: #2b2e34;
  14. background: linear-gradient(-45deg, #9C0000, #000, #000);
  15. background-size: 400% 400%;
  16. -webkit-animation: Gradient 15s ease infinite;
  17. -moz-animation: Gradient 15s ease infinite;
  18. animation: Gradient 15s ease infinite;
  19. }
  20.  
  21. @-webkit-keyframes Gradient {
  22. 0% {
  23. background-position: 0% 50%
  24. }
  25. 50% {
  26. background-position: 100% 50%
  27. }
  28. 100% {
  29. background-position: 0% 50%
  30. }
  31. }
  32.  
  33. @-moz-keyframes Gradient {
  34. 0% {
  35. background-position: 0% 50%
  36. }
  37. 50% {
  38. background-position: 100% 50%
  39. }
  40. 100% {
  41. background-position: 0% 50%
  42. }
  43. }
  44.  
  45. @keyframes Gradient {
  46. 0% {
  47. background-position: 0% 50%
  48. }
  49. 50% {
  50. background-position: 100% 50%
  51. }
  52. 100% {
  53. background-position: 0% 50%
  54. }
  55. }
  56.  
  57. body, a {cursor: url(http://cur.cursors-4u.net/cursors/cur-9/cur819.cur), auto;}
  58.  
  59.  
  60. b, strong {color:#fff font-family: Comfortaa; font-size: 15px;line-height: 15px; font-weight: bold;
  61. text-shadow: 1px 0px 0px #000,
  62. -1px 1px 0px #000,
  63. 0px 0px 0px #000,
  64. 0px -1px 0px #000,
  65. 0px 0px 1px #000;
  66. }
  67.  
  68. i, em {color:#000; font-family: Sedgwick Ave; font-size:15px;}
  69.  
  70. /*scroll*/
  71. ::-webkit-scrollbar {
  72. width: 5px;
  73. height: 0px;
  74. background:;
  75. }
  76.  
  77. ::-webkit-scrollbar-thumb {
  78. background-color: #7eb2ca;
  79. -webkit-border-radius: 10px;
  80. border-radius: 10px;
  81. z-index: 999;
  82. }
  83.  
  84.  
  85.  
  86. #nym img{
  87. position: fixed;
  88. max-width: auto;
  89. max-height: 80%;
  90. top:12%;
  91. left: 27.5%;
  92. z-index: 6;
  93. }
  94.  
  95.  
  96. #background img{
  97. position: absolute;
  98. width: 100%;
  99. height:100%;
  100. top:0px;
  101. left: 0px;
  102. z-index: 2;
  103. }
  104.  
  105. /*navigation*/
  106. #navi {
  107. position: fixed;
  108. left:35%;
  109. top:87%;
  110. text-align:center;
  111. color: white;
  112. width: 50vw;
  113. height: 20px;
  114. padding:5px;
  115. line-height:7px;
  116. z-index: 6;
  117. display: inline-block;
  118. float: left;
  119. }
  120.  
  121. #navi a:link, #navi a:visited {
  122. text-decoration:none;
  123. font-weight:normal !important;
  124. padding:5px;
  125. top: 10px;
  126. margin-left: 20px;
  127. width: 2px;
  128. height: 2px;
  129. -webkit-transition: all 0.5s ease;
  130. -moz-transition: all 0.5s ease;
  131. -o-transition: all 0.5s ease;
  132. -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  133. clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  134. background-color: #fff;
  135. float: left;
  136. }
  137.  
  138. #navi a:hover {
  139. background-color:#9c0000;
  140. text-decoration:none;
  141. float: left;
  142. }
  143.  
  144. /*content*/
  145. .box {
  146. position: fixed;
  147. width: 20.6vw;
  148. height:34vh;
  149. top: 52.5%;
  150. left: 30.4%;
  151. padding: 5px;
  152. font-size: 15px;
  153. line-height: 13px;
  154. text-align: center;
  155. font-family: 'Oswald';
  156. color: #db0000;
  157. overflow: auto;
  158. opacity: 0;
  159. transition: all 0.7s ease-in-out;
  160. -webkit-transition: all 0.7s ease-in-out;
  161. -moz-transition: all 0.7s ease-in-out;
  162. -o-transition: all 0.7s ease-in-out;
  163. -ms-transition: all 0.7s ease-in-out;
  164. z-index:2;
  165. }
  166.  
  167. .box:target {
  168. top: 52.5%;
  169. left: 30.4%;
  170. overflow: auto;
  171. background-color: #transparent;
  172. opacity: 1;
  173. transition: all 0.7s ease-in-out;
  174. -webkit-transition: all 0.7s ease-in-out;
  175. -moz-transition: all 0.7s ease-in-out;
  176. -o-transition: all 0.7s ease-in-out;
  177. -ms-transition: all 0.7s ease-in-out;
  178. z-index:8;
  179. }
  180.  
  181. /*tables*/
  182. td.one{
  183. width: 261px;
  184. font-family: Comfortaa;
  185. font-size: 15px;
  186. text-align: left;
  187. word-spacing: 1px;
  188. letter-spacing: 0px;
  189. line-height: 9px;
  190. font-weight: bold;
  191. color: #000;
  192. text-shadow: 1px 0px 0px #9c0000,
  193. -1px 1px 0px #9c0000,
  194. 0px 0px 0px #000,
  195. 0px -1px 0px #000,
  196. 0px 0px 1px #999;
  197. }
  198.  
  199. td.two{
  200. width: 261px;
  201. font-family: Oswald;
  202. font-size: 15px;
  203. text-align: right;
  204. word-spacing: 1px;
  205. letter-spacing: 0px;
  206. line-height: 9px;
  207. color: #db0000;
  208. }
  209.  
  210. /*link*/
  211. a:link,a:active,a:visited {
  212. color: #000;
  213. font-family: courgette;
  214. font-size: 15px;
  215. line-height: 10px;
  216. letter-spacing: 0px;
  217. display: ;
  218. font-weight: bold;
  219. margin-bottom: px;
  220. word-spacing: 0px;
  221. text-transform: none;
  222. text-align: center;
  223. text-decoration: none;
  224. transition: all .3s ease-in-out;
  225. -webkit-transition: all .3s ease-in-out;
  226. -moz-transition: all .3s ease-in-out;
  227. -o-transition: all .3s ease-in-out;
  228. -ms-transition: all .3s ease-in-out;
  229. z-index: 7;
  230. }
  231.  
  232. a:hover {
  233. color: #9C0000;
  234. text-shadow: 1px 0px 0px #fff,
  235. 0px 1px 0px #fff,
  236. -1px 0px 0px #fff,
  237. 0px -1px 0px #fff,
  238. 0px 0px 20px #fff;
  239. font-family: courgette;
  240. font-size: 12px;
  241. line-height: 10px;
  242. letter-spacing: 0px;
  243. display: ;
  244. font-weight: bold;
  245. margin-bottom: px;
  246. word-spacing: 0px;
  247. text-align: center;
  248. text-decoration: none;
  249. transition: all .3s ease-in-out;
  250. -webkit-transition: all .3s ease-in-out;
  251. -moz-transition: all .3s ease-in-out;
  252. -o-transition: all .3s ease-in-out;
  253. -ms-transition: all .3s ease-in-out;
  254. }
  255.  
  256. </style>
  257. <div id="nym">
  258. <img src="http://i.picpar.com/g1Zc.png">
  259. </div><div id="background">
  260.  
  261. <div id="navi">
  262. <a href="#one"></a>
  263. <a href="#two"></a>
  264. <a href="#three"></a>
  265. <a href="#four"></a>
  266. </div>
  267.  
  268. <div id="one" class="box">
  269. <table><br>
  270. <tr><td class="one">
  271. Name:
  272. </td><td class="two">
  273. <b>Nymphadora</b><p>
  274. </td></tr><tr>
  275.  
  276.  
  277.  
  278. <tr><td class="one">
  279. Species:
  280. </td><td class="two">
  281. <span title=""><b>Absol Gijinka</b><p>
  282. </td></tr><tr>
  283.  
  284. <tr><td class="one">
  285. Occupation:
  286. </td><td class="two">
  287. <b>Soothsayer</b><p>
  288. </td></tr><tr>
  289.  
  290. <tr><td class="one">
  291. Marital Status:
  292. </td><td class="two">
  293. <a target="_blank" href="https://roleplay.chat/profile.php?user=Shuriken">Swept up by the sands.</a><p>
  294. </td></tr><tr>
  295.  
  296. <tr><td class="one">
  297. Nature:
  298. </td><td class="two">
  299. <b>Lonely</b><p>
  300. </td></tr><tr>
  301.  
  302. <tr><td class="one">
  303. Ability:
  304. </td><td class="two">
  305. <b>Justified</b><p>
  306. </td></tr><tr>
  307.  
  308.  
  309. <tr><td class="one">
  310. Held Item:
  311. </td><td class="two">
  312. <b>Dread Plate</b><p>
  313. </td></tr><tr>
  314.  
  315. <tr><td class="one">
  316. Capture Status:
  317. </td><td class="two">
  318. <span title="Trained in the arcane arts by a strange
  319. young witch that can only be described
  320. as an insufferable know it all.
  321. Released after her training was complete."> <b>Wild</b><p>
  322. </td></tr><tr>
  323.  
  324. <tr><td class="one">
  325. Move Set:
  326. </td><td class="two">
  327. <span title="[Dark Pulse, Night Slash, Thunder Wave, Future Sight, Perish Song, Shadow Claw]"> <b>Hover*</b>
  328. </td></tr><tr>
  329. </table>
  330. </div>
  331.  
  332. <div id="two" class="box">
  333. <b>History</b><p>
  334. <i><center><p><br><br><br><br>Legends of yesteryear speak in hushed tones of evil beings<p> that sacrificed the lives of their loved ones in order to slip into<p> the skin of an animal. These witches corrupt the world<p> around them, bringing bad omens and discord wherever they<p> tread. They assume their feral forms to avoid persecution or to<p> hunt for their tribes, often twisting ancient magic into dark<p> ceremonies so that they may further their motivations.</i>
  335.  
  336.  
  337. </div>
  338. <div id="four" class="box"><p><b>OOC</b><p>
  339. <i>EST. Typist has a tendency to AFK a lot because she has the<br> attention span of a rodent.<p>Discord for the illest of course.<p> Will take your drama and turn it into trash cubes.<Br><br><br>
  340. <a target="_blank" href="https://www.youtube.com/watch?v=9bQFUH4BDIU&feature=youtu.be&t=1">Theme: Danny Elfman - Fireside Dance</a>
  341.  
  342. <br><br><br>This profile was commissioned for </i><b>Nymphadora</b><i> only. <p>Steal any part of it and I'll personally turn you into a matchbox. Good talk.<p> Created by <i>Vaeldra</i> with the dopest codes I ever smoked.
  343. </div>
  344.  
  345. <div id="three" class="box">
  346. <center><p></i><b><u>Fantastic Beasts and Where to Find Them</u></b>
  347. <p><span title="The silver lining in my clouds."><a target="_blank" href="https://roleplay.chat/profile.php?user=Shuriken">The Prince.</a><br>
  348. <p><span title="My dear ptichka. You have much to learn on your journey."><a target="_blank" href="https://roleplay.chat/profile.php?user=Zorua ">The Little Vixen.</a><br>
  349. <p><span title="A sweet pupper what mauled me in an alley."><a target="_blank" href="https://roleplay.chat/profile.php?user=0079 ">The Hound.</a><br>
  350. <p><span title="A restless knight, drawn to the morbid and melancholy of the afterlife to defend the downtrodden."><a target="_blank" href="https://roleplay.chat/profile.php?user=durengard">The Dame.</a><br>
  351. <p><span title="We really have got to stop meeting like this."><a target="_blank" href="https://roleplay.chat/profile.php?user=krookodile">The Grump.</a><br>
  352. <p><span title="A curious Milotic, quite adept in the art of the waltz."><a target="_blank" href="https://roleplay.chat/profile.php?user=Bach ">The Sea Serpent.</a>
  353. <p><span title="The worst part of holding the memories is not the pain. It's the loneliness of it."><a target="_blank" href="https://roleplay.chat/profile.php?user=voltaire ">The Spider.</a>
  354. <p><span title="Madame, bear in mind that princes govern all things - save the wind."><a target="_blank" href="https://roleplay.chat/profile.php?user=dartrix ">The Head Bird.</a>
  355. <p><span title=""><a target="_blank" href="https://roleplay.chat/profile.php?user=Shiny+Drapion ">The Menthol Addict.</a><br>
  356. <p><b><u>Famous Witches and Wizards</u></b>
  357. <p><span title="A little bird that fluttered into my heart one day."><a target="_blank" href="https://roleplay.chat/profile.php?user=Amylia ">The Young Doctor.</a>
  358.  
  359. </div>
Add Comment
Please, Sign In to add comment