ZukoHiyama

exile old code

Aug 10th, 2020
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.05 KB | None | 0 0
  1. <body>
  2. <style>@import url('https://fonts.googleapis.com/css?family=Spectral+SC|Julius+Sans+One');
  3.  
  4. body{
  5. background-color:#000;
  6. }
  7.  
  8. ::-webkit-scrollbar {
  9. width: 3px;
  10. height: 0px;
  11. background:transparent;
  12. }
  13. ::-webkit-scrollbar-thumb {
  14. background-color:rgba(255,255,255,.18);
  15. -webkit-border-radius: 5px;
  16. border-radius: 5px;
  17. }
  18. ::selection {
  19. color: #777;
  20. background: #333;
  21. }
  22.  
  23. .flat{
  24. height:300px;
  25. width:500px;
  26. position:fixed;
  27. left:689px;
  28. bottom:164px;
  29. overflow:hidden;
  30. opacity:1;
  31. background-image:url(https://78.media.tumblr.com/9951ca2e7e884a48ca5b5269f5514cd6/tumblr_orh7h7ephj1ve5gdao1_500.gif);
  32. background-size: 105%;
  33. background-repeat: no-repeat;
  34. filter:hue-rotate(190deg);
  35. background-position:center;
  36. -webkit-transition: all 0.5s ease-in-out;
  37. -moz-transition: all 0.5s ease-in-out;
  38. -o-transition: all 0.5s ease-in-out;
  39. -ms-transition: all 0.5s ease-in-out;
  40. transition: all 0.5s ease-in-out;
  41. }
  42.  
  43. body:hover .flat{
  44. border: 1px solid #111;
  45. outline: 1px solid #1a1a1a;
  46. outline-offset: 3px;
  47. }
  48.  
  49. .noct{
  50. opacity:0;
  51. height:300px;
  52. width:500px;
  53. position:fixed;
  54. left:691px;
  55. bottom:165px;
  56. overflow:hidden;
  57. -webkit-transition: all 0.5s ease-in-out;
  58. -moz-transition: all 0.5s ease-in-out;
  59. -o-transition: all 0.5s ease-in-out;
  60. -ms-transition: all 0.5s ease-in-out;
  61. transition: all 0.5s ease-in-out;
  62. }
  63.  
  64. body:hover .noct{
  65. opacity:.3;
  66. filter:brightness(100%);
  67. background-image:url(https://i.imgur.com/T0SlRpX.jpg);
  68. background-repeat:no-repeat;
  69. background-size:110%;
  70. -webkit-transition: all 0.5s ease-in-out;
  71. -moz-transition: all 0.5s ease-in-out;
  72. -o-transition: all 0.5s ease-in-out;
  73. -ms-transition: all 0.5s ease-in-out;
  74. transition: all 0.5s ease-in-out;
  75.  
  76. }
  77.  
  78. .center{
  79. width: 480px;
  80. height: 280px;
  81. background-color:rgba(255,255,255,.05);
  82. position: fixed;
  83. left: 690px;
  84. bottom: 165px;
  85. padding:10px;
  86. color:#fff;
  87. font-family: 'Spectral SC', serif;
  88. text-align:center;
  89. font-size:10px;
  90. text-shadow:0px 0px 2px #000;
  91. opacity:0;
  92. z-index:99;
  93. overflow:auto;
  94. -webkit-transition: all 0.5s ease-in-out;
  95. -moz-transition: all 0.5s ease-in-out;
  96. -o-transition: all 0.5s ease-in-out;
  97. -ms-transition: all 0.5s ease-in-out;
  98. transition: all 1.7s ease-in-out;
  99. }
  100.  
  101. body:hover .center{
  102. opacity:1;
  103. transition-delay:.8s;
  104. }
  105.  
  106. .triage{
  107. position:fixed;
  108. margin:auto;
  109. left:910px;
  110. bottom:122px;
  111. width:48px;
  112. height:48px;
  113. opacity:1;
  114. transform:rotate(45deg);
  115. border:10px solid #006699;
  116. z-index:999;
  117. -webkit-transition: all 0.5s ease-in-out;
  118. -moz-transition: all 0.5s ease-in-out;
  119. -o-transition: all 0.5s ease-in-out;
  120. -ms-transition: all 0.5s ease-in-out;
  121. transition: all 0.5s ease-in-out;
  122. }
  123.  
  124. body:hover .triage{
  125. transform:rotate(135deg);
  126. filter: brightness(30%);
  127. opacity:1;
  128. -webkit-transition: all 0.5s ease-in-out;
  129. -moz-transition: all 0.5s ease-in-out;
  130. -o-transition: all 0.5s ease-in-out;
  131. -ms-transition: all 0.5s ease-in-out;
  132. transition: all 0.5s ease-in-out;
  133. }
  134.  
  135. .square{
  136. position:fixed;
  137. margin:auto;
  138. left:925px;
  139. bottom:137px;
  140. width:38px;
  141. height:38px;
  142. opacity:1;
  143. transform:rotate(45deg);
  144. background-color:#222;
  145. z-index:999;
  146. -webkit-transition: all 0.5s ease-in-out;
  147. -moz-transition: all 0.5s ease-in-out;
  148. -o-transition: all 0.5s ease-in-out;
  149. -ms-transition: all 0.5s ease-in-out;
  150. transition: all 0.5s ease-in-out;
  151. }
  152.  
  153. body:hover .square{
  154. transform:rotate(135deg);
  155. filter: brightness(100%);
  156. opacity:1;
  157. -webkit-transition: all 0.5s ease-in-out;
  158. -moz-transition: all 0.5s ease-in-out;
  159. -o-transition: all 0.5s ease-in-out;
  160. -ms-transition: all 0.5s ease-in-out;
  161. transition: all .8s ease-in-out;
  162. }
  163.  
  164.  
  165. .text1{
  166. color:#fefefe; font-family: 'Julius Sans One', sans-serif; font-size:47px; position:fixed; left:682px; bottom:125px; z-index:1001;
  167. text-shadow:-1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
  168. -webkit-transition: all 0.5s ease-in-out;
  169. -moz-transition: all 0.5s ease-in-out;
  170. -o-transition: all 0.5s ease-in-out;
  171. -ms-transition: all 0.5s ease-in-out;
  172. transition: all 1.8s ease-in-out;
  173. }
  174.  
  175. body:hover .text1{
  176. color:#ccc;
  177. text-shadow:-1px 0 #4d8ff9, 0 1px #4d8ff9, 1px 0 #4d8ff9, 0 -1px #4d8ff9;
  178. bottom:465px;
  179. -webkit-transition: all 0.5s ease-in-out;
  180. -moz-transition: all 0.5s ease-in-out;
  181. -o-transition: all 0.5s ease-in-out;
  182. -ms-transition: all 0.5s ease-in-out;
  183. transition: all 1.4s ease-in-out;
  184. }
  185. </style><div style="position:fixed; bottom:px; left:-150px;"><img src="https://i.cubeupload.com/1TBvaD.png" height="1100" width="900"></div>
  186.  
  187. <div class="text1">The Exiled Genius</div>
  188.  
  189. <div class="center">
  190. Grandmaster of House Lorelei. Summoner of the Red Knights/Clairvoyant. Smartest man in the room. <br></Br>
  191. [Current Events]<br><br>
  192. WIP
  193.  
  194. [OOC]<br>
  195.  
  196. PM Friendly. One-liner to multi-para. Snowballs mostly. For the Eidolon Room<br><br>
  197.  
  198.  
  199.  
  200. </div>
  201. <div class="flat"></div>
  202. <div class="noct"></div>
  203.  
  204. <div class="triage"></div><div class="square"></div>
  205. <div class="center" style="position:fixed; bottom:15px; height:80px; border: 1px solid #111; outline: 1px solid #1a1a1a;outline-offset: 3px; padding-top:40px">[ friends / party list ]<br><br>
  206.  
  207. [Current Party]<br><br>
  208. [Allies/Enemies]</span><br>
  209.  
  210.  
  211. </div>
  212. </body>
Add Comment
Please, Sign In to add comment