Advertisement
lucitor

i wish there was an akutagawa nendoroid theme

Feb 13th, 2018
1,084
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.55 KB | None | 0 0
  1. <!--
  2. 。・:*:・゚★,。・:*:・゚☆   。・:*:・゚★,。・:*:・゚☆
  3.  
  4. base code by chraliecox
  5.  
  6. theme by dawn dramaisland Σd(≧ω≦*) グッ
  7.  
  8. all i ask is dont remove the credit
  9.  
  10. if you have anyquestions or if theres any bugs send me an ask!! i hope u like it ilysm thanks for using!!
  11.  
  12. 。・:*:・゚★,。・:*:・゚☆   。・:*:・゚★,。・:*:・゚☆
  13.  
  14. -->
  15. <link href='https://fonts.googleapis.com/css?family=Karla:400,700,700italic' rel='stylesheet' type='text/css'>
  16. <link href='https://fonts.googleapis.com/css?family=Short+Stack' rel='stylesheet' type='text/css'>
  17. <link href='https://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
  18.  
  19. <!DOCTYPE html>
  20.  
  21. <head>
  22. {block:ifhearts}<script type="text/javascript">
  23. // <![CDATA[
  24. var colours=new Array('#f00', '#f06', '#f0f', '#f6f', '#f39', '#f9c'); // colours of the hearts
  25. var minisize=16; // smallest size of hearts in pixels
  26. var maxisize=28; // biggest size of hearts in pixels
  27. var hearts=66; // maximum number of hearts on screen
  28. var over_or_under="over"; // set to "over" for hearts to always be on top, or "under" to allow them to float behind other objects
  29.  
  30. /*****************************
  31. *JavaScript Love Heart Cursor*
  32. * (c)2013+ mf2fm web-design *
  33. * http://www.mf2fm.com/rv *
  34. * DON'T EDIT BELOW THIS BOX *
  35. *****************************/
  36. var x=ox=400;
  37. var y=oy=300;
  38. var swide=800;
  39. var shigh=600;
  40. var sleft=sdown=0;
  41. var herz=new Array();
  42. var herzx=new Array();
  43. var herzy=new Array();
  44. var herzs=new Array();
  45. var kiss=false;
  46.  
  47. if (typeof('addRVLoadEvent')!='function') function addRVLoadEvent(funky) {
  48. var oldonload=window.onload;
  49. if (typeof(oldonload)!='function') window.onload=funky;
  50. else window.onload=function() {
  51. if (oldonload) oldonload();
  52. funky();
  53. }
  54. }
  55.  
  56. addRVLoadEvent(mwah);
  57.  
  58. function mwah() { if (document.getElementById) {
  59. var i, heart;
  60. for (i=0; i<hearts; i++) {
  61. heart=createDiv("auto", "auto");
  62. heart.style.visibility="hidden";
  63. heart.style.zIndex=(over_or_under=="over")?"1001":"0";
  64. heart.style.color=colours[i%colours.length];
  65. heart.style.pointerEvents="none";
  66. if (navigator.appName=="Microsoft Internet Explorer") heart.style.filter="alpha(opacity=75)";
  67. else heart.style.opacity=0.75;
  68. heart.appendChild(document.createTextNode(String.fromCharCode(9829)));
  69. document.body.appendChild(heart);
  70. herz[i]=heart;
  71. herzy[i]=false;
  72. }
  73. set_scroll();
  74. set_width();
  75. herzle();
  76. }}
  77.  
  78. function herzle() {
  79. var c;
  80. if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
  81. ox=x;
  82. oy=y;
  83. for (c=0; c<hearts; c++) if (herzy[c]===false) {
  84. herz[c].firstChild.nodeValue=String.fromCharCode(9829);
  85. herz[c].style.left=(herzx[c]=x-minisize/2)+"px";
  86. herz[c].style.top=(herzy[c]=y-minisize)+"px";
  87. herz[c].style.fontSize=minisize+"px";
  88. herz[c].style.fontWeight='normal';
  89. herz[c].style.visibility='visible';
  90. herzs[c]=minisize;
  91. break;
  92. }
  93. }
  94. for (c=0; c<hearts; c++) if (herzy[c]!==false) blow_me_a_kiss(c);
  95. setTimeout("herzle()", 40);
  96. }
  97.  
  98. document.onmousedown=pucker;
  99. document.onmouseup=function(){clearTimeout(kiss);};
  100.  
  101. function pucker() {
  102. ox=-1;
  103. oy=-1;
  104. kiss=setTimeout('pucker()', 100);
  105. }
  106.  
  107. function blow_me_a_kiss(i) {
  108. herzy[i]-=herzs[i]/minisize+i%2;
  109. herzx[i]+=(i%5-2)/5;
  110. if (herzy[i]<sdown-herzs[i] || herzx[i]<sleft-herzs[i] || herzx[i]>sleft+swide-herzs[i]) {
  111. herz[i].style.visibility="hidden";
  112. herzy[i]=false;
  113. }
  114. else if (herzs[i]>minisize+2 && Math.random()<.5/hearts) break_my_heart(i);
  115. else {
  116. if (Math.random()<maxisize/herzy[i] && herzs[i]<maxisize) herz[i].style.fontSize=(++herzs[i])+"px";
  117. herz[i].style.top=herzy[i]+"px";
  118. herz[i].style.left=herzx[i]+"px";
  119. }
  120. }
  121.  
  122. function break_my_heart(i) {
  123. var t;
  124. herz[i].firstChild.nodeValue=String.fromCharCode(9676);
  125. herz[i].style.fontWeight='bold';
  126. herzy[i]=false;
  127. for (t=herzs[i]; t<=maxisize; t++) setTimeout('herz['+i+'].style.fontSize="'+t+'px"', 60*(t-herzs[i]));
  128. setTimeout('herz['+i+'].style.visibility="hidden";', 60*(t-herzs[i]));
  129. }
  130.  
  131. document.onmousemove=mouse;
  132. function mouse(e) {
  133. if (e) {
  134. y=e.pageY;
  135. x=e.pageX;
  136. }
  137. else {
  138. set_scroll();
  139. y=event.y+sdown;
  140. x=event.x+sleft;
  141. }
  142. }
  143.  
  144. window.onresize=set_width;
  145. function set_width() {
  146. var sw_min=999999;
  147. var sh_min=999999;
  148. if (document.documentElement && document.documentElement.clientWidth) {
  149. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  150. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  151. }
  152. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  153. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  154. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  155. }
  156. if (document.body.clientWidth) {
  157. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  158. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  159. }
  160. if (sw_min==999999 || sh_min==999999) {
  161. sw_min=800;
  162. sh_min=600;
  163. }
  164. swide=sw_min;
  165. shigh=sh_min;
  166. }
  167.  
  168. window.onscroll=set_scroll;
  169. function set_scroll() {
  170. if (typeof(self.pageYOffset)=='number') {
  171. sdown=self.pageYOffset;
  172. sleft=self.pageXOffset;
  173. }
  174. else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
  175. sdown=document.body.scrollTop;
  176. sleft=document.body.scrollLeft;
  177. }
  178. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  179. sleft=document.documentElement.scrollLeft;
  180. sdown=document.documentElement.scrollTop;
  181. }
  182. else {
  183. sdown=0;
  184. sleft=0;
  185. }
  186. }
  187.  
  188. function createDiv(height, width) {
  189. var div=document.createElement("div");
  190. div.style.position="absolute";
  191. div.style.height=height;
  192. div.style.width=width;
  193. div.style.overflow="hidden";
  194. div.style.backgroundColor="transparent";
  195. return (div);
  196. }
  197. // ]]>
  198. </script>{/block:ifhearts}
  199.  
  200. <title>{Title}</title>
  201.  
  202. <link rel="shortcut icon" href="{Favicon}">
  203. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  204. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  205.  
  206. <!--Default Variables-->
  207.  
  208. <meta name="color:background" content="#ffffff"/>
  209. <meta name="color:text" content="#2b2b2b"/>
  210. <meta name="color:link" content="#2b2b2b"/>
  211. <meta name="color:link hover" content="#949494"/>
  212. <meta name="color:blockquote" content="#dadada"/>
  213.  
  214. <meta name="image:sidebar" content=""/>
  215.  
  216. <meta name="image:home" content="/"/>
  217. <meta name="image:ask" content="/ask"/>
  218. <meta name="text:home" content=""/>
  219. <meta name="text:ask" content=""/>
  220. <meta name="image:link 1" content=""/>
  221. <meta name="text:link 1 URL" content=""/>
  222. <meta name="image:link 2" content=""/>
  223. <meta name="text:link 2 URL" content=""/>
  224. <meta name="image:sidebar bg" content=""/>
  225. <meta name="image:post bg" content=""/>
  226.  
  227. <meta name="if:desc" content="" />
  228. <meta name="if:permalink" content="" />
  229. <meta name="if:hearts" content="" />
  230.  
  231. <meta name="select:font" content="arial">
  232. <meta name="select:font" content="arial black">
  233. <meta name="select:font" content="times new roman">
  234. <meta name="select:font" content="comic sans ms">
  235. <meta name="select:font" content="courier new">
  236. <meta name="select:font" content="curlz mt">
  237. <meta name="select:font" content="ms pgothic">
  238. <meta name="select:font" content="karla">
  239. <meta name="select:font" content="short stack">
  240. <meta name="select:font" content="play">
  241.  
  242.  
  243. <!--CSS customization here. -->
  244.  
  245. <link href='https://fonts.googleapis.com/css?family=Karla' rel='stylesheet' type='text/css'>
  246.  
  247. <style type="text/css">
  248.  
  249. #s-m-t-tooltip{
  250. position:absolute;
  251. margin-top: 15px;
  252. z-index:9999;
  253. background:{color:background};
  254. }
  255.  
  256. /*basics*/
  257.  
  258. blockquote {
  259. padding-left:12px;
  260. border-left:1px solid {color:blockquote};
  261. margin-left:8px;
  262. }
  263.  
  264. ul {
  265. list-style:none;
  266. text-align:left;
  267. padding-left:0;
  268. }
  269.  
  270. li {
  271. position:relative;
  272. padding-left:30px;
  273. }
  274.  
  275. ul li:before {
  276. position:absolute;
  277. left:15px;
  278. vertical-align:baseline!important;
  279. content:'›';
  280. }
  281.  
  282. body {
  283. background:{color:background};
  284. color:{color:text};
  285. font-family:{select:font};
  286. font-size:18px;
  287. margin:0;
  288. text-align:justify;
  289. line-height:22px;
  290. }
  291.  
  292. a {
  293. color:{color:link};
  294. -moz-transition-duration:0.4s;
  295. -webkit-transition-duration:0.4s;
  296. -o-transition-duration:0.4s;
  297. text-decoration:none;
  298. }
  299.  
  300. a:hover {
  301. color:{color:link hover};
  302. -moz-transition-duration:0.4s;
  303. -webkit-transition-duration:0.4s;
  304. -o-transition-duration:0.4s;
  305. }
  306.  
  307. img {
  308. opacity:1;
  309. border:none;
  310. text-decoration:none;
  311. }
  312.  
  313. small {
  314. font-size:15px;
  315. }
  316.  
  317. big {
  318. font-size:18px;
  319. }
  320.  
  321. #title {font-size:25px;
  322. line-height:18px;
  323. margin-bottom:10px;
  324. font-weight:bold;
  325. text-transform:none;
  326. text-align:left;
  327. }
  328.  
  329. /*sidebar*/
  330.  
  331. #sidebar {
  332. text-align:center;
  333. position:fixed;
  334. margin-left:-280px;
  335. margin-top:95px;
  336. width:230px;
  337. padding:10px;
  338. background-image:url('{image:sidebar bg}');
  339. }
  340.  
  341. #sidebar img {
  342. width:230px;
  343. padding:2px;
  344. }
  345.  
  346. #links {
  347. font-size:18px;
  348. margin-top:10px;
  349. text-align:center;
  350. font-weight: bold;
  351. }
  352.  
  353. #links img {
  354. width: auto;
  355. border-radius:0px;
  356. }
  357.  
  358. #links a {
  359. margin-bottom:0px;
  360. -moz-transition-duration:0.4s;
  361. -webkit-transition-duration:0.4s;
  362. -o-transition-duration:0.4s;
  363. }
  364.  
  365. #description {
  366. margin-top:10px;
  367. text-align:center;
  368. }
  369.  
  370. /*pagination*/
  371.  
  372. #pagination {
  373. text-transform:lowercase;
  374. text-align:center;
  375. font-size:17px;
  376. margin-bottom:120px;
  377. }
  378.  
  379. #pagination a {
  380. padding:0 3px;
  381. }
  382.  
  383. /*container*/
  384.  
  385. #con {
  386. left:50%;
  387. margin-left:-140px;
  388. position:absolute;
  389. }
  390.  
  391. /*posts*/
  392.  
  393. #entries {
  394. margin-top:95px;
  395. width:500px;
  396. }
  397.  
  398. #posts {
  399. width:470px;
  400. {block:IndexPage}
  401. margin-bottom:80px;
  402. {/block:IndexPage}
  403. {block:PermalinkPage}
  404. margin-bottom:50px;
  405. {/block:PermalinkPage}
  406. padding:10px;
  407. background-image:url('{image:post bg}');
  408. }
  409.  
  410. #posts img {
  411. max-width:470px;
  412. }
  413.  
  414. #posts img, #posts li, #posts blockquote {
  415. max-width: 90%;
  416. }
  417.  
  418. .caption {
  419. width:100%;
  420. margin-top:13px;
  421. margin-bottom:12px;
  422. }
  423.  
  424. a.tumblr_blog {
  425. font-weight:bold;
  426. -moz-transition-duration:0.4s;
  427. -webkit-transition-duration:0.4s;
  428. -o-transition-duration:0.4s;
  429. }
  430.  
  431. /*quote*/
  432.  
  433. #titlequote {
  434. text-align:left;
  435. font-size:18px;
  436. line-height:17px;
  437. font-weight:bold;
  438. }
  439.  
  440. #source {
  441. margin-top:0px;
  442. margin-bottom:11px;
  443. margin-left:0px;
  444. }
  445.  
  446. /*asks*/
  447.  
  448. .q {
  449. line-height:17px;
  450. font-size:17px;
  451. }
  452.  
  453. .as {
  454. font-weight:normal;
  455. }
  456.  
  457. .a {
  458. margin-top:13px;
  459. }
  460.  
  461. /*chat*/
  462.  
  463. .chat ol {
  464. padding:0;
  465. list-style:none;
  466. }
  467.  
  468. .line {
  469. padding:0px 0;
  470. }
  471.  
  472. .label {
  473. font-weight:bold;
  474. }
  475.  
  476. /*permalink and notes*/
  477.  
  478. #permalink {
  479. font-size:22px;
  480. text-align:left;
  481. margin-top:9px;
  482. text-transform:uppercase;
  483. }
  484.  
  485. #permalink a {
  486. margin-right:0px;
  487. }
  488.  
  489. .tags {
  490. font-size:17px;
  491. text-transform:none;
  492. }
  493.  
  494. .pagenotes {
  495. {block:IndexPage}
  496. display: none!important;
  497. {/block:IndexPage}
  498. width:500px;
  499. text-align:left;
  500. }
  501.  
  502. .pagenotes img {
  503. display:none!important;
  504. }
  505.  
  506. .pagenotes li {
  507. list-style-type:none;
  508. padding:2px 0px;
  509. text-align:left;
  510. margin:0 0 0 -40px;
  511. }
  512.  
  513. {CustomCSS}
  514.  
  515. </style>
  516.  
  517. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  518. <script src ="//static.tumblr.com/fwgzvyf/l6jnyutne/shythemes.vr.js"></script>
  519.  
  520. </head>
  521.  
  522. <body>
  523.  
  524. <div id="con">
  525.  
  526. <div id="sidebar">
  527.  
  528.  
  529. <div id="sidebar img"><img src="{image:sidebar}"></div>
  530.  
  531.  
  532. {block:ifdesc}<div id="description">{Description}</div>{/block:ifdesc}
  533.  
  534. <div id="links">
  535. <a href="{text:home}" title="{Text:home}"><img src="{image:home}"></a>
  536. <a href="{text:ask}" title="{Text:ask}"><img src="{image:ask}"></a>
  537. <a href="{text:link 1 URL}" title="{Text:link 1}"><img src="{image:link 1}"></a>
  538. <a href="{text:link 2 URL}" title="{Text:link 2}"><img src="{image:link 2}"></a>
  539.  
  540. </div>
  541.  
  542. </div>
  543.  
  544. <div id="entries">
  545.  
  546. {block:Posts}
  547.  
  548. <div id="posts">
  549.  
  550. {block:Quote}
  551. <div id="titlequote"><i class="fa fa-quote-left"></i>&nbsp; {Quote} &nbsp;<i class="fa fa-quote-right"></i></div>
  552. {block:Source}<div id="source">&mdash; {Source}</div>{/block:Source}
  553. {/block:Quote}
  554.  
  555. {block:Text}
  556. {block:Title}
  557. <div id="title">{Title}</div>{/block:Title}
  558. {Body}
  559. {/block:Text}
  560.  
  561. {block:link}
  562. <div id="title"><a href="{URL}"><i class="fa fa-link"></i>&nbsp; {Name}</a></div>
  563. {block:Description}{Description}{/block:Description}
  564. {/block:link}
  565.  
  566. {block:Chat}
  567. {block:Title}
  568. <div id="title">{Title}</div>{/block:Title}
  569. {/block:Text}
  570. {block:lines}
  571. {block:label}
  572. <br><b>{label}</b>
  573. {/block:label}
  574. {line}
  575. {/block:lines}
  576. {/block:Chat}
  577.  
  578. {block:Photo}
  579. {linkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{linkCloseTag}
  580. {/block:Photo}
  581.  
  582. {block:Photoset}
  583. {Photoset-500}
  584. {/block:Photoset}
  585.  
  586. <div class="video">{Video-500}</div>
  587.  
  588. {block:Audio}
  589. {block:AudioEmbed}{AudioEmbed-500}{/block:AudioEmbed}
  590. {/block:Audio}
  591.  
  592. {block:Answer}
  593. <div class="q">
  594. <div class="as"> <b><big>{Asker} asked:</big></b>
  595. {Question}</div></div>
  596. <div class="a">{Answer}</div>
  597. {/block:Answer}
  598.  
  599. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  600.  
  601. <!-- {block:ContentSource} {SourceURL} {/block:ContentSource} {block:RebloggedFrom} {ReblogRootURL} {ReblogParentURL} {/block:RebloggedFrom} -->
  602.  
  603. {block:Date}
  604. <div id="permalink">
  605. {block:ifpermalink}<a href="{Permalink}" ><b>{ShortMonth} {DayOfMonthWithSuffix}</b></a>
  606. {block:NoteCount} with <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}<div style="float:right;">{block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}"></a>{block:ContentSource} <a href="{ReblogRootURL}" title="{ReblogRootName}"></a>{/block:ContentSource}{/block:RebloggedFrom}</div>{/block:ifpermalink}
  607. {block:Date}
  608. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">#{Tag}</a>&nbsp;&nbsp;{/block:Tags}</div>{/block:HasTags}
  609.  
  610. </div>
  611.  
  612. {/block:Date}
  613.  
  614. </div>
  615.  
  616. {block:PostNotes}
  617. <div class="pagenotes">
  618. {PostNotes}
  619. </div>
  620. {/block:PostNotes}
  621.  
  622. {/block:Posts}
  623.  
  624. <div id="pagination">
  625. {block:Pagination}
  626. {block:PreviousPage}
  627. <a href="{PreviousPage}">previous page</a>
  628. {/block:PreviousPage}
  629.  
  630.  
  631. {block:NextPage}
  632. <a href="{NextPage}">next page</a>
  633. {/block:NextPage}
  634. {/block:Pagination}
  635. </div>
  636.  
  637. </div>
  638.  
  639. </div>
  640.  
  641. <div style="position:fixed;bottom:10px;opacity:1;right:20px;padding:px;font-size:19px;font-weight:normal;"><a title="theme by dawn
  642. ヾ(@⌒ー⌒@)ノ" href="https://dramaisland.tumblr.com/"><img src="https://78.media.tumblr.com/7200ec8874b5b008ed3bdeacf3c3e86f/tumblr_inline_n8mukfz8NJ1ry72eo.gif"></a></div></body></html></body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement