Advertisement
thisisnotras

Exael code 2015

Jul 10th, 2015
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.69 KB | None | 0 0
  1. <style>
  2.  
  3. @import url(http://fonts.googleapis.com/css?family=Rhodium+Libre);
  4.  
  5. .pfor {display: none;}
  6. #profile {background: transparent; border: 0px; }
  7.  
  8.  
  9. #whole {position: fixed;
  10. top: 0px;
  11. left: 0px;
  12. right: 0px;
  13. bottom: 0px;
  14. background-color: rgb(178, 169, 190);
  15. background-image:
  16. url(http://i18.photobucket.com/albums/b149/abysmal_rage/tumblr_ncc8lxk8Oi1t7xyrqo1_1280_2.png);
  17. background-position: bottom left;
  18. background-repeat: no-repeat;
  19. background-size: auto 100%;}
  20.  
  21. a, a:visited {text-decoration: none;
  22. font-style: italic;
  23. color: rgb(178, 169, 190);
  24. -webkit-transition: color 1s;
  25. transition: color 1s;}
  26.  
  27. a:hover {
  28. color: white;
  29. cursor: url(http://www.rw-designer.com/cursor-extern.php?id=60600), auto;
  30. }
  31.  
  32. #divbox {height: 600px;
  33. width: 400px;
  34. border: 0px solid red;
  35. top: 24.5%;
  36. left: 30.5%;
  37. overflow: hidden;
  38. position: absolute;
  39. z-index: 10;
  40. background: transparent;
  41.  
  42. }
  43.  
  44. #divslide {height: 20px;
  45. width: 300px;
  46. padding-right: 50px;
  47. border: 0px solid blue;
  48. position: absolute;
  49. margin-top: 25px;
  50. font-family: "Times New Roman", Times;
  51. text-size: 13px;
  52. margin-left: -320px;
  53. font-style: italic;
  54. -webkit-transition: margin 2s;
  55. transition: margin 2s;
  56. }
  57.  
  58. #whole:hover #divslide{
  59. margin-left: 0px;}
  60.  
  61. #divslide:hover{
  62. margin-left: 0px;}
  63.  
  64. #pullball {height: 30px;
  65. width: 30px;
  66. border-radius: 180px;
  67. border: .5px solid black;
  68. position: absolute;
  69. right: 0px;
  70. margin-top: -5px;
  71. background: #412846;
  72. -webkit-transition: background 1s, border 0s;
  73. transition: background 1s, border 0s;
  74. box-sizing: border-box;
  75. animation: alternating 2s infinite;
  76. -webkit-animation: alternating 2s infinite;
  77. }
  78.  
  79. @keyframes alternating {
  80. 0% { background: #412846; }
  81. 50% { background: #655387; }
  82. 100%{ background: #412846; }
  83. }
  84.  
  85. @-webkit-keyframes alternating {
  86. 0% { background: #412846; }
  87. 50% { background: #655387; }
  88. 100%{ background: #412846; }
  89. }
  90.  
  91.  
  92. #pullball:hover{
  93. /* -webkit-animation-play-state: paused;
  94. animation-play-state: paused; */
  95.  
  96. -webkit-animation-iteration-count: 1;
  97. animation-iteration-count: 1;
  98. background: rgb(178, 169, 190);
  99. border: 1px solid #412846;
  100. }
  101.  
  102.  
  103. #textline {height: 20px;
  104. width: 200px;
  105. border: 0px solid green;
  106. font-family: 'Rhodium Libre', serif;
  107. text-size: 15px;
  108. font-style: italic;
  109. position: absolute;
  110. margin-left: 10px;
  111. }
  112.  
  113. #selectiondiv{
  114. position:absolute;
  115. height: 20px;
  116. width: 60px;
  117. color: rgb(178, 169, 190);
  118. border: 0px red solid;
  119. border-radius: 60px;
  120. margin-left: 20px;
  121. -webkit-transition: background 1s;
  122. transition: background 1s;
  123. padding: 2px;
  124. padding-left: 5px;
  125. background: #412846;
  126. z-index:5;
  127. box-shadow: 1px 1px 2px black;
  128. }
  129.  
  130.  
  131. #selectiondiv:hover, #selectiondiv2:hover
  132. {
  133. z-index: 6;}
  134.  
  135. #selectiondiv:target, #selectiondiv2:target{
  136.  
  137. z-index: 6;}
  138.  
  139. #selectiondiv2{
  140. z-index:4;
  141. position:absolute;
  142. height: 20px;
  143. width: 38px;
  144. background: #655387;
  145. color: rgb(178, 169, 190);
  146. -webkit-transition: background 1s;
  147. transition: background 1s;
  148. margin-left: 82px;
  149. border-radius: 60px;
  150. padding: 2px;
  151. padding-left: 5px;
  152. box-shadow: 1px 1px 2px black;
  153. }
  154.  
  155.  
  156. #boxdrop{border: 0px dotted green;
  157. height: 420px;
  158. width: 270px;
  159. margin-top: 0px;
  160. margin-left: 10px;
  161. padding: 10px;
  162. font-family: "Times New Roman", Times;
  163. font-weight: 400;
  164. font-size: 13px;
  165. font-style: italic;
  166. overflow-y: auto;
  167.  
  168. }
  169.  
  170.  
  171. #splitgoeshere {height: 400px;
  172. width: 300px;
  173. overflow: hidden;
  174. margin-top: 30px;
  175. border: 0px dotted red;
  176. position: absolute;}
  177.  
  178. span.drop {border-bottom: none; color:black; font-size: 15px;
  179. -webkit-transition: color 2s;
  180. transition: color 2s;}
  181.  
  182. span.drop:hover {text-decoration: none; z-index: 6; font-style:italic;}
  183.  
  184. span.drop span {position: absolute; left: -9999px;
  185. margin: 20 0 0 0; padding: 1px 1px 1px 5px;
  186. border-style:solid; border-color:black; border-width:1px; z-index: 6;
  187. opacity: 0.1;
  188. transition: opacity 1s;
  189. -webkit-transition: opacity 1s;
  190. transition-timing-function: ease-in;
  191. -webkit-transition-timing-function: ease-in;
  192. }
  193.  
  194. span.drop:hover span {left: 0%; background: white;
  195. transition: opacity 1s;
  196. -webkit-transition: opacity 1s;
  197. width: 300px;
  198. height: 450px;
  199. padding-top: 20px;overflow: hidden;
  200. border: 0px #7CF105 dashed;
  201. text-align: left;
  202. font-size: 13px;
  203. font-family: Times New Roman, Verdana, Geneva, Arial, sans-serif;
  204. opacity: 1.0;
  205. overflow: hidden;
  206. margin-top: 16px;
  207. background: transparent;
  208. }
  209.  
  210.  
  211. /* Found this in Hoot's profile and used it 'cos it's cool */
  212.  
  213. #ongaku {
  214. border-radius: 5px;
  215. width: 25px;
  216. height: 20px;
  217. overflow: hidden;
  218. background: transparent;
  219. opacity: .8;
  220. -webkit-transition: all 0.4s ease-in-out;
  221. -moz-transition: all 0.4s ease-in-out;
  222. -o-transition: all 0.4s ease-in-out;
  223. -ms-transition: all 0.4s ease-in-out;
  224. transition: all 0.4s ease-in-out;
  225. }
  226. .musicgif {
  227. margin: 5px;
  228. -webkit-transition: all 0.4s ease-in-out;
  229. -moz-transition: all 0.4s ease-in-out;
  230. -o-transition: all 0.4s ease-in-out;
  231. -ms-transition: all 0.4s ease-in-out;
  232. transition: all 0.4s ease-in-out;
  233. }
  234. #ongaku:hover .musicgif {
  235. margin-top: -12px;
  236. background-color: transparent;
  237. }
  238. #ongaku:hover { background-color: rgb(178, 169, 190);}
  239. #musicpl {
  240. width: 20px;
  241. overflow: hidden;
  242. height: 20px;
  243. padding: 2px 20px 10px 3px;
  244. margin-left: -20px;
  245. background-color: rgb(178, 169, 190);
  246. }
  247.  
  248.  
  249.  
  250. </style>
  251.  
  252.  
  253. <div id="whole">
  254. <span class="drop">
  255. <div id="divbox">
  256. <div id="divslide">
  257. <div id="textline">
  258. Exael, head librarian.<span>
  259.  
  260. <div id="selectiondiv">
  261. <a href="#Character">Character</a>
  262. </div>
  263. <div id="selectiondiv2">
  264. <a href="#OOC">OOC</a>
  265. </div>
  266.  
  267. <div id="splitgoeshere">
  268. <a name="Character"></a>
  269. <div id="boxdrop">Character info coming soon.
  270. </div>
  271.  
  272. <a name="OOC"></a>
  273. <div id="boxdrop">When in the Library, please act responsibly.<br>
  274. If you don't, you're out.<br><br>
  275. Art is not mine.<br>
  276. Music is <a href="https://youtu.be/NtQRBzSN9Vw" target=_blank" style="color: black; font-style: normal;" >Change of the Guard</a><br>by Kamasi Washington.
  277. </div>
  278. </div>
  279. </span></span>
  280.  
  281.  
  282. </div>
  283. <div id="pullball">
  284. <div style="position: absolute;
  285. right: 0px;
  286. top: 5px;
  287. left: -4px;
  288. width: 19px;
  289. overflow: hidden;
  290. margin: auto;">
  291. <div id="ongaku">
  292. <div class="musicgif"><img src="http://media.tumblr.com/tumblr_m7w2py1dEP1r6o8v2.gif"/></div>
  293. <div id="musicpl">
  294. <embed src="http://www.sheepproductions.com/billy/billy.swf?autoplay=false&f0=https://www.dropbox.com/s/gpbxupu4i05ghjs/Kamasi%20Washington%20-%20%27Change%20of%20the%20Guard%27.mp3?dl=1&t0=Kamasi Change The Guard &total=1" quality="high" wmode="transparent" width="200" height="10" name="billy" align="middle" type="application/x-shockwave-flash" />
  295. </div>
  296. </div>
  297. </div>
  298. </div>
  299. </div>
  300. </div>
  301.  
  302.  
  303. </div>
  304.  
  305.  
  306.  
  307. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement