Advertisement
Falkstids

Calder code

Mar 13th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.92 KB | None | 0 0
  1. <style>
  2.  
  3. @import url('https://fonts.googleapis.com/css?family=Cutive+Mono|Italianno');
  4.  
  5. body{
  6. overflow: hidden;
  7. background-color:#000;
  8. background-size:cover;
  9. }
  10.  
  11.  
  12.  
  13. ::-webkit-scrollbar
  14. {
  15. width: 10px;
  16. background-color: transparent;
  17. }
  18.  
  19.  
  20. #transitiondivline {
  21. position: absolute;
  22. width: 2px;
  23. height: 0px;
  24. background-color:#9c7e82;
  25. bottom:0px;
  26. left:50%;
  27. transition:all 2s ease-in;
  28. transition-delay:999999s;
  29. }
  30.  
  31. body:hover >#transitiondivline{
  32. width: 2px;
  33. height:100%;
  34. background-color:#9c7e82;
  35. bottom:0px;
  36. left:50%;
  37. transition-delay:100ms;
  38. }
  39.  
  40.  
  41. #background{
  42. overflow: hidden;
  43. background-color:transparent;
  44. width:920px;
  45. height:602px;
  46. background-image:url('http://i.imgur.com/aOBSQi4.png');
  47. background-repeat:no-repeat;
  48. position:absolute;
  49. top:50%;
  50. left:50%;
  51. margin-top:-301px;
  52. margin-left:-460px;
  53. opacity:0;
  54. transition:all 1s ease-in;
  55. transition-delay:999999s;
  56. z-index:1;
  57. }
  58.  
  59. body:hover > #background
  60. {
  61. opacity:1;
  62. transition-delay:2s;
  63. }
  64.  
  65. #navi {
  66. opacity:0;
  67. position:absolute;
  68. display:inline;
  69. height:436px;
  70. width:76px;
  71. left:50%;
  72. top:50%;
  73. font-family:tall;
  74. color:#000;
  75. float:center;
  76. z-index:1;
  77. margin-top:-160px;
  78. margin-left:-38px;
  79. transition:all 1s ease-in;
  80. transition-delay:999999s;
  81. }
  82.  
  83. #navi a {
  84. opacity:1;
  85. display:inline-block;
  86. width:65px;
  87. height:70px;
  88. background-color:transparent;
  89. }
  90.  
  91. #background:hover #navi
  92. {
  93. opacity:1;
  94. transition-delay:1s;
  95. }
  96.  
  97. @-webkit-keyframes hvr-bob {
  98. 0% {
  99. -webkit-transform: translateY(-8px);
  100. transform: translateY(-8px);
  101. }
  102. 50% {
  103. -webkit-transform: translateY(-4px);
  104. transform: translateY(-4px);
  105. }
  106. 100% {
  107. -webkit-transform: translateY(-8px);
  108. transform: translateY(-8px);
  109. }
  110. }
  111. @keyframes hvr-bob {
  112. 0% {
  113. -webkit-transform: translateY(-8px);
  114. transform: translateY(-8px);
  115. }
  116. 50% {
  117. -webkit-transform: translateY(-4px);
  118. transform: translateY(-4px);
  119. }
  120. 100% {
  121. -webkit-transform: translateY(-8px);
  122. transform: translateY(-8px);
  123. }
  124. }
  125. @-webkit-keyframes hvr-bob-float {
  126. 100% {
  127. -webkit-transform: translateY(-8px);
  128. transform: translateY(-8px);
  129. }
  130. }
  131. @keyframes hvr-bob-float {
  132. 100% {
  133. -webkit-transform: translateY(-8px);
  134. transform: translateY(-8px);
  135. }
  136. }
  137. .hvr-bob {
  138. display: inline-block;
  139. vertical-align: middle;
  140. -webkit-transform: perspective(1px) translateZ(0);
  141. transform: perspective(1px) translateZ(0);
  142. box-shadow: 0 0 1px transparent;
  143. }
  144. .hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
  145. -webkit-animation-name: hvr-bob-float, hvr-bob;
  146. animation-name: hvr-bob-float, hvr-bob;
  147. -webkit-animation-duration: .3s, 1.5s;
  148. animation-duration: .3s, 1.5s;
  149. -webkit-animation-delay: 0s, .3s;
  150. animation-delay: 0s, .3s;
  151. -webkit-animation-timing-function: ease-out, ease-in-out;
  152. animation-timing-function: ease-out, ease-in-out;
  153. -webkit-animation-iteration-count: 1, infinite;
  154. animation-iteration-count: 1, infinite;
  155. -webkit-animation-fill-mode: forwards;
  156. animation-fill-mode: forwards;
  157. -webkit-animation-direction: normal, alternate;
  158. animation-direction: normal, alternate;
  159. }
  160.  
  161.  
  162. #zero{
  163. overflow-y:auto;
  164. opacity:1;
  165. background-color:;
  166. width:400px;
  167. height:450px;
  168. position:absolute;
  169. right:2%;
  170. top:20%;
  171. z-index:1;
  172. font-family: "Times New Roman", Times, serif;
  173. font-size:12pt;
  174. color:dadada;
  175. text-align:center;
  176. transition:1s;
  177. transition-delay:999999s;
  178. }
  179.  
  180. #background:hover #zero
  181. {
  182. opacity:0;
  183. transition-delay:10s;
  184. }
  185.  
  186.  
  187. #one,#two,#three,#four{
  188. background-color:#0d0b21;
  189. overflow-y:auto;
  190. opacity:0;
  191. width:400px;
  192. height:450px;
  193. position:absolute;
  194. right:2%;
  195. top:20%;
  196. z-index:1;
  197. font-family: 'Cutive Mono', monospace;
  198. font-size:12pt;
  199. color:#dadada;
  200. text-align:center;
  201. transition:800ms;
  202. }
  203.  
  204. #one:target,#two:target,#three:target,#four:target{
  205. background-color:#0d0b21;
  206. opacity:1;
  207. z-index:3;
  208. }
  209.  
  210. h1{
  211. font-family: 'Cutive Mono', monospace;
  212. font-size:18pt;
  213. text-decoration: underline;
  214. }
  215.  
  216. h2{
  217. margin-top:100px;
  218. font-family: 'Italianno', cursive;
  219. font-weight:400;
  220. font-size:20pt;
  221. }
  222.  
  223. i {
  224. color:#b9b9b9;
  225. font-size:12pt;
  226. text-shadow:1px 1px 0 #000;
  227. font-family: 'Cutive Mono', monospace;
  228. }
  229.  
  230. b {
  231. color:#daddad;
  232. font-size:14px;
  233. letter-spacing:1px;
  234. font-style:italic;
  235. text-shadow:#fff -1px 0px,#fff 0 1px,#fff 1px 0px,#fff -1px;}
  236.  
  237. a {
  238. text-decoration:none;
  239. font-style:normal;
  240. color:#bababa;
  241. letter-spacing:0px;
  242. text-shadow:1px 1px 0 #000;
  243. transition:all 1s ease-in;
  244. }
  245.  
  246. a:hover {
  247. text-decoration:none;
  248. color:gold;
  249. }
  250.  
  251.  
  252. span {
  253. color:#bababa;
  254. text-shadow:1px 1px 1px #000;
  255. transition:all 1s ease-in; }
  256.  
  257. span:hover {
  258. color:gold;
  259. }
  260.  
  261. p {
  262. word-spacing: .5px;
  263. text-align:justify
  264. }
  265. </style>
  266.  
  267.  
  268. <div id="background">
  269. <div align="top">
  270. <div id="navi">
  271. <a class="nav hvr-bob" href="#one"> <img src="http://i.imgur.com/aimHVk4.png" width="65" height="70"></a> <br><br><br>
  272. <a class="nav hvr-bob" href="#two"> <img src="http://i.imgur.com/umMf3Xl.png" width="65" height="70"></a> <br><br><br>
  273. <a class="nav hvr-bob" href="#three"> <img src="http://i.imgur.com/fcbQjv4.png" width="65" height="70"></a> <br><br><br>
  274. <a class="nav hvr-bob" href="#four"> <img src="http://i.imgur.com/GJhwSPW.png" width="65" height="70"></a> <br><br><br>
  275. </div>
  276. </div>
  277. <div id="zero">
  278. <i><center><h2>"Beyond life there are'—his face grew ashen with terror—'things that I cannot distinguish. They move slowly through angles. They have no bodies, and they move slowly through outrageous angles...God, they are breaking through! They are breaking through! Smoke is pouring in from the corners of the wall. Their tongues—ahhh—"<br><br> -Frank Belknap Long, The Hounds Of Tindalos</h2></center></i>
  279. </div>
  280. <div id="one">
  281. <center><h1>Basic</h1></center>
  282. <i>Name</i> ᚾ Calder <br><br>
  283. <i>Alias</i> ᚾ The Hound, Hound of Tindalos <br> <br>
  284. <i>Age</i> ᚾ Timeless <br><br>
  285. <i>Gender</i> ᚾ Appears male <br><br>
  286. <i>Race</i> ᚾ <span title="Beings created somewhere beyond this dimension known as the outer realms.">Outer God</span> <br><br>
  287. <i>Duty</i> ᚾ To learn about this dimension.<br><br>
  288. <i>Origin</i> ᚾ The <span title="A place that exists in between the outer realms and this dimension">angles</span> of time.<br><br>
  289. <i>Interest</i> ᚾ Open-minded.<br><br>
  290. <i>Paramour</i> ᚾ In love with a <a href="https://roleplay.chat/profile.php?user=Estella"> guiding light. </a> <a href="http://www.thiscrush.com/~houndoftindalos" title="houndoftindalos's CrushTag">Why?</a><br><br>
  291.  
  292. </div>
  293. <div id="two">
  294. <center><h1>Story</h1></center>
  295. <p> Calder, or the Hound of Tindalos as he was previously called, is an elder god hailing from the outer realms, a place beyond human comprehension and beyond this dimension, where the kin live. The kin are cosmic beings of immense power that were created by a malignant creator being acting in an unconscious and corrupted parody of the "Divine Will". The Hound of Tindalos is a deity that exists only to hunt for those who have gathered knowledge about the kin, he hunts for the humans who know to much and dabble too deep into the unknown without losing their sanity. </p>
  296. <p> The Hound exists in the edges of time, the closest part between this dimension and the dimension of the Kin, there round shapes do not exist, everything is jagged and geometrical.</p>
  297. </div>
  298. <div id="three">
  299. <center><h1>Diary</h1></center>
  300. </div>
  301. <div id="four">
  302. <center><h1>OOC</h1></center>
  303. <b>00</b> Code is mine, art by abz-j-harding, I do not own the image on the profile. Do not steal the code. Ask me for commissions or coding issues.<br><br>
  304. <b>01</b> PM friendly to an extent. <br><br>
  305. <b>02</b> Long Term roleplay is always preferred.<br><br>
  306. <b>03</b> Smut is unlikely. <br><br>
  307. <b>04</b> If you have an issue with how I play the character, keep it to yourself. <br><br>
  308. <b>05</b> Para+ mirror poster.<br><br>
  309. <b>06</b> Third Person.<br><br>
  310. <b>07</b> Character based off of Frank Belknap Long's "The Hounds of Tindalos". <br><br>
  311. <b>08</b> No he is not ACTUALLY a dog.
  312. </div>
  313. </div>
  314.  
  315. <div id="transitiondivline">
  316. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement