cypherine

cy/ask

Oct 19th, 2021 (edited)
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.41 KB | None | 0 0
  1. <html>
  2. <!DOCTYPE html>
  3. <script type="text/javascript">
  4. // <![CDATA[
  5. var colour="#ff00f0";
  6. var sparkles=120;
  7.  
  8. /****************************
  9. * Tinkerbell Magic Sparkle *
  10. * (c) 2005 mf2fm web-design *
  11. * http://www.mf2fm.com/rv *
  12. * DON'T EDIT BELOW THIS BOX *
  13. ****************************/
  14.  
  15. /*CREDS! https://shuvee.tumblr.com and ^^ for the sparkly cursor thing!*/
  16. var x=ox=400;
  17. var y=oy=300;
  18. var swide=800;
  19. var shigh=600;
  20. var sleft=sdown=0;
  21. var tiny=new Array();
  22. var star=new Array();
  23. var starv=new Array();
  24. var starx=new Array();
  25. var stary=new Array();
  26. var tinyx=new Array();
  27. var tinyy=new Array();
  28. var tinyv=new Array();
  29.  
  30. window.onload=function() { if (document.getElementById) {
  31. var i, rats, rlef, rdow;
  32. for (var i=0; i<sparkles; i++) {
  33. var rats=createDiv(3, 3);
  34. rats.style.visibility="hidden";
  35. document.body.appendChild(tiny[i]=rats);
  36. starv[i]=0;
  37. tinyv[i]=0;
  38. var rats=createDiv(5, 5);
  39. rats.style.backgroundColor="transparent";
  40. rats.style.visibility="hidden";
  41. var rlef=createDiv(1, 5);
  42. var rdow=createDiv(5, 1);
  43. rats.appendChild(rlef);
  44. rats.appendChild(rdow);
  45. rlef.style.top="2px";
  46. rlef.style.left="0px";
  47. rdow.style.top="0px";
  48. rdow.style.left="2px";
  49. document.body.appendChild(star[i]=rats);
  50. }
  51. set_width();
  52. sparkle();
  53. }}
  54.  
  55. function sparkle() {
  56. var c;
  57. if (x!=ox || y!=oy) {
  58. ox=x;
  59. oy=y;
  60. for (c=0; c<sparkles; c++) if (!starv[c]) {
  61. star[c].style.left=(starx[c]=x)+"px";
  62. star[c].style.top=(stary[c]=y)+"px";
  63. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  64. star[c].style.visibility="visible";
  65. starv[c]=50;
  66. break;
  67. }
  68. }
  69. for (c=0; c<sparkles; c++) {
  70. if (starv[c]) update_star(c);
  71. if (tinyv[c]) update_tiny(c);
  72. }
  73. setTimeout("sparkle()", 40);
  74. }
  75.  
  76. function update_star(i) {
  77. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  78. if (starv[i]) {
  79. stary[i]+=1+Math.random()*3;
  80. if (stary[i]<shigh+sdown) {
  81. star[i].style.top=stary[i]+"px";
  82. starx[i]+=(i%5-2)/5;
  83. star[i].style.left=starx[i]+"px";
  84. }
  85. else {
  86. star[i].style.visibility="hidden";
  87. starv[i]=0;
  88. return;
  89. }
  90. }
  91. else {
  92. tinyv[i]=50;
  93. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  94. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  95. tiny[i].style.width="2px";
  96. tiny[i].style.height="2px";
  97. star[i].style.visibility="hidden";
  98. tiny[i].style.visibility="visible"
  99. }
  100. }
  101.  
  102. function update_tiny(i) {
  103. if (--tinyv[i]==25) {
  104. tiny[i].style.width="1px";
  105. tiny[i].style.height="1px";
  106. }
  107. if (tinyv[i]) {
  108. tinyy[i]+=1+Math.random()*3;
  109. if (tinyy[i]<shigh+sdown) {
  110. tiny[i].style.top=tinyy[i]+"px";
  111. tinyx[i]+=(i%5-2)/5;
  112. tiny[i].style.left=tinyx[i]+"px";
  113. }
  114. else {
  115. tiny[i].style.visibility="hidden";
  116. tinyv[i]=0;
  117. return;
  118. }
  119. }
  120. else tiny[i].style.visibility="hidden";
  121. }
  122.  
  123. document.onmousemove=mouse;
  124. function mouse(e) {
  125. set_scroll();
  126. y=(e)?e.pageY:event.y+sdown;
  127. x=(e)?e.pageX:event.x+sleft;
  128. }
  129.  
  130. function set_scroll() {
  131. if (typeof(self.pageYOffset)=="number") {
  132. sdown=self.pageYOffset;
  133. sleft=self.pageXOffset;
  134. }
  135. else if (document.body.scrollTop || document.body.scrollLeft) {
  136. sdown=document.body.scrollTop;
  137. sleft=document.body.scrollLeft;
  138. }
  139. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  140. sleft=document.documentElement.scrollLeft;
  141. sdown=document.documentElement.scrollTop;
  142. }
  143. else {
  144. sdown=0;
  145. sleft=0;
  146. }
  147. }
  148.  
  149. window.onresize=set_width;
  150. function set_width() {
  151. if (typeof(self.innerWidth)=="number") {
  152. swide=self.innerWidth;
  153. shigh=self.innerHeight;
  154. }
  155. else if (document.documentElement && document.documentElement.clientWidth) {
  156. swide=document.documentElement.clientWidth;
  157. shigh=document.documentElement.clientHeight;
  158. }
  159. else if (document.body.clientWidth) {
  160. swide=document.body.clientWidth;
  161. shigh=document.body.clientHeight;
  162. }
  163. }
  164.  
  165. function createDiv(height, width) {
  166. var div=document.createElement("div");
  167. div.style.position="absolute";
  168. div.style.height=height+"px";
  169. div.style.width=width+"px";
  170. div.style.overflow="hidden";
  171. div.style.backgroundColor=colour;
  172. return (div);
  173. }
  174. // ]]>
  175. </script>
  176.  
  177. <head>
  178. <title>cypherine</title> <!--title in the tab-->
  179. <link rel="shortcut icon" href="{Favicon}"> <!--icon in the tab-->
  180. <link rel="altertnate" type="application/rss+xml" href="{RSS}">
  181.  
  182. <!--scripts + stylesheets-->
  183. <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600i,800|Roboto" rel="stylesheet">
  184. <!--icon font by fontawsome | https://fontawesome.io/icons/-->
  185. <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.1/css/all.css" integrity="sha384-O8whS3fhG2OnA5Kas0Y9l3cfpmYjapjI0E4theH4iuMD+pLhbf6JI0jIMfYcK3yZ" crossorigin="anonymous">
  186.  
  187. <script src="https://cdnjs.cloudflare.com/ajax/libs/smoothscroll/1.4.6/SmoothScroll.min.js"></script>
  188. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  189. <script src="https://static.tumblr.com/ihhnoee/12Cotb0p2/jquery.style-my-tooltips.js"></script>
  190.  
  191. <script>
  192. (function($){
  193. $(document).ready(function(){
  194. $("a[title]").style_my_tooltips({
  195. tip_follows_cursor:false,
  196. tip_delay_time:100,
  197. tip_fade_speed:300,
  198. attribute:"title"
  199. });
  200. });
  201. })(jQuery);
  202. </script>
  203. <style>
  204. #s-m-t-tooltip { /*what shows up when you hover over something with a title, such as the credit in the corner*/
  205. max-width:175px;
  206. margin:10px 14px 7px 10px;
  207. padding:5px 7px;
  208. background-color:#fff;/*tooltip bg*/
  209. color:#888;/*tooltip text*/
  210. border:solid 1px #eee;/*tooltip border color*/
  211. font-family:ms gothic;
  212. font-size:10px;
  213. text-transform:uppercase;
  214. letter-spacing:1px;
  215. line-height:10px;
  216. z-index:99999999;
  217.  
  218. }
  219.  
  220. /*iframe fix by @cyantists | cyantists.tumblr.com/post/163728517915/fix-tumblrs-new-controls-i-have-come-up-with-3*/
  221. iframe.tmblr-iframe { visibility:hidden; }
  222.  
  223. /*scrollbar customize*/
  224. ::-webkit-scrollbar { height:2px; width:3px; background:#fff;/*scrollbar bg*/ }
  225. ::-webkit-scrollbar-thumb { background:#888; /*scrollbar color*/ border-radius:3px; -webkit-border-radius:3px; }
  226.  
  227. /*coloring for what happens when you highlight text*/
  228. ::-webkit-selection { background:#eee; color:#171717; }
  229. ::-moz-selection { background:#eee; color:#171717; }
  230. ::-ms-selection { background:#eee; color:#171717; }
  231. ::-o-selection { background:#eee; color:#171717; }
  232. ::selection { background:#eee; color:#171717; }
  233.  
  234. /*general*/
  235. body {
  236. background-image: url(https://64.media.tumblr.com/b4a9d3a3453d2bfbc1ad99175622b3e8/tumblr_inline_miqn3kJquq1qz4rgp.png);
  237. background-color:#fbfbfb; /*background color*/
  238. font-family:ms gothic;
  239. font-size:11px;
  240. overflow-x:hidden;
  241. }
  242.  
  243. a {
  244. text-decoration: none;
  245. -webkit-transition: all .35s ease-in-out;
  246. -moz-transition: all .35s ease-in-out;
  247. -ms-transition: all .35s ease-in-out;
  248. -o-transition: all .35s ease-in-out;
  249. transition: all .35s ease-in-out;
  250. }
  251.  
  252. /*CURSOR*/
  253. *, body, a, a:hover {cursor: url(https://64.media.tumblr.com/4c0582589bd3f4dbc987c072aff26068/tumblr_inline_mfn7u0MPDe1qid2nw.png), auto;}
  254. /*end of custom cursor*/
  255.  
  256. #galaxy { width:439px; margin:170px auto; }
  257.  
  258. #sol { /*title*/
  259. color:#b031eb; /*title color*/
  260. font-weight:800;
  261. letter-spacing:10px; font-size:30px;
  262. text-align:left; text-transform:uppercase;
  263. }
  264.  
  265. #comet {
  266.  
  267. width:100px; height:100px;
  268. padding:5px;
  269. background:#fff; /*icon box background color*/
  270. border:solid 1px #dbdbdb; /*icon box border color*/
  271. box-shadow:1px 1px #000000; /*icon box shadow color*/
  272. position:fixed;
  273. }
  274.  
  275. #comet img { width:100px; height:100px; }
  276.  
  277. #earth {
  278. margin-top:-46px;
  279. width:290px; height:100px;
  280. margin-left:130px; padding:5px;
  281. background:#AARRGGBB; /*info box background color*/
  282. border:solid 1px #AARRGGBB; /*info box border color*/
  283. box-shadow:1px 1px #AARRGGBB; /*info box shadow color*/
  284. position:fixed;
  285. }
  286.  
  287. /*mini info accent color*/
  288. #earth c { color:#f518e2; text-transform:uppercase; }
  289. #earth p { margin-top:1px; margin-bottom:13px; }
  290.  
  291. /*line colors; best if matched with border*/
  292. #vl1 { margin-top:-5px; margin-left:145px; stroke:#dbdbdb; position:fixed; }
  293. #hl1 { margin-top:11px; margin-left:-5px; stroke:#dbdbdb; position:fixed; }
  294. #hl2 { margin-top:39px; margin-left:-5px; stroke:#dbdbdb; position:fixed; }
  295. #hl3 { margin-top:67px; margin-left:-5px; stroke:#dbdbdb; position:fixed; }
  296.  
  297. #box {
  298. width:139px; height:100px;
  299. margin-top:-100px; margin-left:141px; padding:5px;
  300. position:fixed;
  301. }
  302.  
  303. #box h1 {
  304. margin-left:11px; margin-bottom:-2px; color:#f518e2; /*playlist title color*/
  305. font-size:11px; font-weight:600; font-style:italic;
  306. text-align:left; text-transform:uppercase;
  307. }
  308.  
  309. #box li { margin-left:-20px; line-height:120%; list-style: none; }
  310. #box li:before {
  311. content:"♡"; /* change update tab bullet points here | use something simple like a • or a character from an alt+ code : you can also use an emoji, just be sure to alter the line height above (standard is 120%; increase to anywhere between 130% and 150% if emojis are overlapping*/
  312. padding-right: 5px;
  313. }
  314.  
  315. #box a { color:#f518e2; } /*playlist links color*/
  316. #box a:hover { color:#b031eb; } /*playlist links hover color*/
  317.  
  318. #luna {
  319. width:100; height:69px;
  320. margin-top:131px; padding:5px;
  321. background:#AARRGGBB; /*description background color*/
  322. border:solid 1px #AARRGGBB; /*description border color*/
  323. box-shadow:1px 1px #AARRGGBB; /*description shadow color*/
  324. text-align:justify;
  325. position:relative;
  326. }
  327.  
  328. #luna a { color:#f518e2; } /*description link color*/
  329. #luna a:hover { color:#b031eb; } /*link hover color*/
  330. #luna i, b, u { color:#b031eb; } /*italics, bold, underline color*/
  331.  
  332. #stars {margin-top:20px; font-size:17px; text-align:center; position:relative;}
  333.  
  334. #stars a { margin-left:30px; margin-right:30px;
  335. color:#b031eb; } /*icon link color*/
  336. #stars a:hover { color:#b031eb; } /*icon link hover color*/
  337.  
  338. #saturn {
  339. margin-top:15px; color:#ffffff; /*quote text color*/
  340. font-size:10px; text-align:center;
  341. line-height:120%; position:relative;
  342. }
  343.  
  344. #saturn a,a:hover { color:#b031eb; } /*quote link color + hover color*/
  345.  
  346. /*remember: don't remove or edit ♡ */
  347. #credit {
  348. right:0; bottom:0; padding:9px 10px;
  349. font-size:10px; position:fixed;
  350. -webkit-transition: all .35s ease-in-out;
  351. -moz-transition: all .35s ease-in-out;
  352. -ms-transition: all .35s ease-in-out;
  353. -o-transition: all .35s ease-in-out;
  354. transition: all .35s ease-in-out;
  355. -webkit-transform: scaleX(-1);
  356. -moz-transform: scaleX(-1);
  357. -ms-transform: scaleX(-1);
  358. -o-transform: scaleX(-1);
  359. transform: scaleX(-1);
  360. }
  361. #sidemoon {
  362. width:70px; max-height:500px; float:right;
  363. background:#fff;
  364. right:5; bottom:50; padding:9px 10px;
  365. text-align:right; text-transform:uppercase;
  366. margin-right:17px;
  367. box-shadow:1px 1px #000000;
  368.  
  369. }
  370.  
  371. #credit:hover {
  372. -webkit-transform: scale(1.3) scaleX(-1);
  373. -moz-transform: scale(1.3) scaleX(-1);
  374. -ms-transform: scale(1.3) scaleX(-1);
  375. -o-transform: scale(1.3) scaleX(-1);
  376. transform: scale(1.3) scaleX(-1);
  377. }
  378.  
  379. #credit a { color:#171717; text-decoration:none; }
  380.  
  381. #cbox {
  382. width: 200px;
  383. left: 40px;
  384. bottom: -505px;
  385. z-index: 9999;
  386. position: fixed;
  387. -webkit-transition: all 0.8s ease-in-out;
  388. -moz-transition: all 0.8s ease-in-out;
  389. -o-transition: all 0.8s ease-in-out;
  390. -ms-transition: all 0.8s ease-in-out;
  391. transition: all 0.8s ease-in-out;
  392. border: 5px solid #fff;
  393. border-top-left-radius: 10px;
  394. border-top-right-radius: 10px;
  395. box-shadow: 0px 0px 0px 1px #fedbdb;
  396. }
  397.  
  398. #cbox:hover {
  399. bottom: 0px;
  400. }
  401.  
  402. #cboxtitle {
  403. width: 190px;
  404. height: 17px;
  405. background-color: #ffffff;
  406. padding: 8px 5px 5px 5px;
  407. text-align: center;
  408. font-size: 14px;
  409. font-family: 'Josefin Sans', sans-serif;
  410. font-weight: 300;
  411. letter-spacing: 10px;
  412. color: #db9494;
  413. text-shadow: 1px 1px 1px #ffffff;
  414. text-transform: uppercase;
  415. }
  416.  
  417. #cboxdesc {
  418. width: 190px;
  419. height: 40px;
  420. padding: 5px;
  421. background-color: #ffffff;
  422. overflow: auto;
  423. font-family: 'Roboto', sans-serif;
  424. font-size: 9px;
  425. text-align: justify;
  426. letter-spacing: 1px;
  427. color: #a19090;
  428. }
  429.  
  430. </style>
  431. </head>
  432. <body>
  433. <!--topright-->
  434.  
  435. <div id="galaxy">
  436. <div id="sol">ask</div> <!--title edit-->
  437. <div id="comet"> <!--url for icon-->
  438. <a href="/"><img src="https://static.tumblr.com/eff2ad31ed6bd6f9e0c13a6a733406e3/mjvcmrg/42Volx0v7/tumblr_static_egaz8m27jagoo44o0wksgkg8k.gif" width="1" length="20"></a>
  439. </div><!--end comet-->
  440. <div id="earth">
  441. <!--short bio info-->
  442. <iframe id="ask_form" style="background-color: transparent; overflow: hidden;" src="http://www.tumblr.com/ask_form/cypherine.tumblr.com "frameborder="0" scrolling="no" width="300" height="195"> </iframe>
  443.  
  444.  
  445. </div><!--end earth-->
  446.  
  447. <div id="luna"> <!--description-->
  448. </div><!--end luna-->
  449.  
  450.  
  451. <div id="stars"><!--icon links-->
  452. <a href="https://cypherine.tumblr.com/" title="home"><i class="fas fa-home"></i></a>
  453. <a href="https://cypherine.tumblr.com/askcy" title="ask"><i class="fas fa-paper-plane"></i></a>
  454. <a href="https://cypherine.tumblr.com/stuff" title="あの娘シークレット"><i class="fas fa-bars"></i></a>
  455.  
  456. </div><!--end stars-->
  457.  
  458. <div id="saturn"><!--bottom quote-->
  459. <p>うらやまし 思ひ切る時 猫の恋</p>
  460. </div>
  461. </div><!--end galaxy-->
  462.  
  463. <div id="sidemoon">
  464.  
  465. <!--Online right now!!-->
  466. <script language="JavaScript">var fhs = document.createElement('script');var fhs_id = "5666523";
  467. var ref = (''+document.referrer+'');var pn = window.location;var w_h = window.screen.width + " x " + window.screen.height;
  468. fhs.src = "//freehostedscripts.net/ocounter.php?site="+fhs_id+"&e1=人&e2=人&r="+ref+"&wh="+w_h+"&a=1&pn="+pn+"";
  469. document.head.appendChild(fhs);document.write("<span id='o_"+fhs_id+"'></span>");
  470. </script>
  471. <br>
  472. <br>
  473. <!--Visits/hits-->
  474. <script language="JavaScript">var fhsh = document.createElement('script');var fhs_id_h = "3365982";
  475. fhsh.src = "//freehostedscripts.net/ocount.php?site="+fhs_id_h+"&name=ヒット&a=1";
  476. document.head.appendChild(fhsh);document.write("<span id='h_"+fhs_id_h+"'></span>");
  477. </script>
  478.  
  479. <!--Chatbox!-->
  480. <div id="cbox">
  481. <div id="cboxtitle">chatbox</div>
  482. <div id="cboxdesc">
  483.  
  484. chat with people!
  485.  
  486. </div> <!-- IMPORTANT! PLEASE KEEP THIS HERE -->
  487.  
  488. <iframe src="https://www3.cbox.ws/box/?boxid=3508719&boxtag=CJmQGx" width="100%" height="450" allowtransparency="yes" allow="autoplay" frameborder="0" marginheight="0" marginwidth="0" scrolling="auto"></iframe>
  489.  
  490. </div> <!-- IMPORTANT! PLEASE KEEP THIS HERE -->
  491.  
  492. </div>
  493. <!-- remember: don't remove | santa is always watching, always judging-->
  494. <div id="credit"><a title="shuvee" href="https://shuvee.tumblr.com"><d class="far fa-moon"></d></a></div>
  495. </body>
  496. </html>
  497.  
  498.  
  499. </body>
  500. </html>
  501.  
Add Comment
Please, Sign In to add comment