Advertisement
nunuthemes01

Untitled

Jul 28th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.33 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <!--
  5. BLOBS IN A JAR
  6. -->
  7.  
  8.  
  9. <script type="text/javascript">
  10. // <![CDATA[
  11. var colour="#090909"; // what colour are the blobs
  12. var speed=86; // speed of animation, lower is faster
  13. var blobs=6; // how many blobs are in the jar
  14. var charc=String.fromCharCode(9679); // a blob - can be changed to charc='hello' or charc='*' for a different effect
  15.  
  16. /***************************\
  17. * Blobs in a Jar Effect *
  18. *(c)2012-13 mf2fm web-design*
  19. * http://www.mf2fm.com/rv *
  20. * DON'T EDIT BELOW THIS BOX *
  21. \***************************/
  22.  
  23. var div;
  24. var xpos=new Array();
  25. var ypos=new Array();
  26. var zpos=new Array();
  27. var dx=new Array();
  28. var dy=new Array();
  29. var dz=new Array();
  30. var blob=new Array();
  31. var swide=800;
  32. var shigh=600;
  33. var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
  34.  
  35. function addLoadEvent(funky) {
  36. var oldonload=window.onload;
  37. if (typeof(oldonload)!='function') window.onload=funky;
  38. else window.onload=function() {
  39. if (oldonload) oldonload();
  40. funky();
  41. }
  42. }
  43.  
  44. addLoadEvent(fill_the_jar);
  45.  
  46. function fill_the_jar() {
  47. var i, dvs;
  48. div=document.createElement('div');
  49. dvs=div.style;
  50. dvs.position='fixed';
  51. dvs.left='0px';
  52. dvs.top='0px';
  53. dvs.width='1px';
  54. dvs.height='1px';
  55. document.body.appendChild(div);
  56. set_width();
  57. for (i=0; i<blobs; i++) {
  58. add_blob(i);
  59. jamjar(i);
  60. }
  61. }
  62.  
  63. function add_blob(ref) {
  64. var dv, sy;
  65. dv=document.createElement('div');
  66. sy=dv.style;
  67. sy.position='absolute';
  68. sy.textAlign='center';
  69. if (ie_version && ie_version<10) {
  70. sy.fontSize="10px";
  71. sy.width="100px";
  72. sy.height="100px";
  73. sy.paddingTop="40px";
  74. sy.color=colour;
  75. dv.appendChild(document.createTextNode(charc));
  76. }
  77. else if (ie_version) {
  78. sy.fontSize="1px";
  79. sy.width="0px";
  80. sy.height="0px";
  81. }
  82. else {
  83. dv.appendChild(document.createTextNode(charc));
  84. sy.color='rgba(0,0,0,0)';
  85. }
  86. ypos[ref]=Math.floor(shigh*Math.random());
  87. dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  88. xpos[ref]=Math.floor(swide*Math.random());
  89. dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  90. zpos[ref]=Math.random()*20;
  91. dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
  92. blob[ref]=dv;
  93. div.appendChild(blob[ref]);
  94. set_blob(ref);
  95. }
  96.  
  97. function rejig(ref, xy) {
  98. if (xy=='y') {
  99. dx[ref]=(0.5+Math.random())*sign(dx[ref]);
  100. dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
  101. }
  102. else {
  103. dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
  104. dy[ref]=(0.5+Math.random())*sign(dy[ref]);
  105. }
  106. }
  107.  
  108. function sign(a) {
  109. if (a<0) return (-2);
  110. else if (a>0) return (2);
  111. else return (0);
  112. }
  113.  
  114. function set_blob(ref) {
  115. var sy;
  116. sy=blob[ref].style;
  117. sy.top=ypos[ref]+'px';
  118. sy.left=xpos[ref]+'px';
  119. if (ie_version && ie_version<10) {
  120. sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
  121. sy.fontSize=30-zpos[ref]+"px";
  122. }
  123. else if (ie_version) {
  124. sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
  125. }
  126. else {
  127. sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
  128. sy.fontSize=40+zpos[ref]+'px';
  129. }
  130. }
  131.  
  132. function jamjar(ref) {
  133. if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
  134. ypos[ref]+=dy[ref];
  135. if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
  136. xpos[ref]+=dx[ref];
  137. if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
  138. zpos[ref]+=dz[ref];
  139. set_blob(ref);
  140. setTimeout("jamjar("+ref+")", speed);
  141. }
  142.  
  143. window.onresize=set_width;
  144. function set_width() {
  145. var sw_min=999999;
  146. var sh_min=999999;
  147. if (document.documentElement && document.documentElement.clientWidth) {
  148. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  149. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  150. }
  151. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  152. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  153. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  154. }
  155. if (document.body.clientWidth) {
  156. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  157. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  158. }
  159. if (sw_min==999999 || sh_min==999999) {
  160. sw_min=800;
  161. sh_min=600;
  162. }
  163. swide=sw_min;
  164. shigh=sh_min;
  165. }
  166. // ]]>
  167. </script>
  168.  
  169. <head><title>{Title}</title>
  170. <link rel="shortcut icon" href="{Favicon}">
  171. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  172. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  173.  
  174.  
  175.  
  176. <!---THEME BASE by hawtornes | tumblr
  177. ENJOY MAKING THEMES!
  178. --->
  179.  
  180. <meta name="color:Background" content="#ffffff"/>
  181. <meta name="color:Text" content="#a8a8a8"/>
  182. <meta name="color:Sidebar Links" content="#b8b8b8"/>
  183. <meta name="color:DescriptionText" content="#b8b8b8"/>
  184. <meta name="color:Border" content="#454142"/>
  185. <meta name="color:Hover" content="#f2f2f2"/>
  186. <meta name="color:Scrollbar" content="#2e2c2e"/>
  187. <meta name="color:ScrollbarBg" content="#ffffff"/>
  188. <meta name="color:Post Links" content="#c0bfbf"/>
  189. <meta name="color:Answer Backg" content="#2e2c2e"/>
  190. <meta name="image:Sidebar" content=""/>
  191. <meta name="image:Background" content=""/>
  192. <meta name="text:Link 1" content="" />
  193. <meta name="text:Link 1 Text" content="" />
  194. <meta name="text:Link 2" content="" />
  195. <meta name="text:Link 2 Text" content="" />
  196. <meta name="text:Link 3" content="" />
  197. <meta name="text:Link 3 Text" content="" />
  198. <meta name="if:Show Link 1" content="1" />
  199. <meta name="if:Show Link 2" content="1" />
  200. <meta name="if:Show Link 3" content="1" />
  201.  
  202. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
  203.  
  204.  
  205.  
  206. <link href="https://fonts.googleapis.com/css?family=Kristi" rel="stylesheet">
  207.  
  208. <link href="https://fonts.googleapis.com/css?family=Playfair+Display+SC" rel="stylesheet">
  209.  
  210. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  211. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  212. <script>
  213. (function($){
  214. $(document).ready(function(){
  215. $("[title]").style_my_tooltips({
  216. tip_follows_cursor:true,
  217. tip_delay_time:0,
  218. tip_fade_speed:0,
  219. attribute:"title"
  220. });
  221. });
  222. })(jQuery);
  223. </script>
  224.  
  225. <style type="text/css">
  226.  
  227. #s-m-t-tooltip{
  228. margin:-10px 0 0 10px;
  229. display:none;
  230. text-align:left;
  231. position:absolute;
  232. letter-spacing:2px;
  233. text-transform:uppercase;
  234. font-family:consolas;
  235. font-size:8px;
  236. font-weight:bold;
  237. z-index:999;
  238. padding:2px 3px;
  239. line-height:12px;
  240. color:#9e9997;
  241. background:#211c1c;}
  242.  
  243. ::-webkit-scrollbar-thumb {
  244. height:auto;
  245. background-color:#211c1c7;
  246. }
  247.  
  248. ::-webkit-scrollbar {
  249. height:9px;
  250. width:3px;
  251. background-color:transparent;
  252. }
  253.  
  254. body {
  255. background:#938d8b;
  256. margin:0px;
  257. color:#211c1c;
  258. font-family:calibri;
  259. font-size:13px;
  260. line-height:110%;
  261. letter-spacing:0px;
  262. text-align:justify;
  263. background-image:url('{image:background}');
  264.  
  265. background-repeat:no-repeat;
  266. overflow-y:hidden;
  267. overflow-x:hidden;
  268. }
  269.  
  270. a {
  271. text-decoration:none;
  272. outline:none;
  273. -moz-outline-style:none;
  274. color:#7c6d6d;
  275. }
  276.  
  277. i, italic, em{color:#7c6d6d;
  278. font-family: 'Playfair Display SC', serif;font-size:12px;
  279. text-transform:lowercase;
  280. letter-spacing:2px;line-height:110%;}
  281.  
  282. b, bold, strong{color:#7c6d6d; font-weight:600;font-family: 'Playfair Display SC', serif;font-size:12px;
  283. text-transform:uppercase;
  284. letter-spacing:2px;
  285. }
  286.  
  287. small, sub, sup {font-size:11px;}
  288.  
  289. img {
  290. -webkit-filter:grayscale(100%);
  291. -webkit-transition: all 0.9s ease-in-out;
  292. -moz-transition: all 0.9s ease-in-out;
  293. -o-transition: all 0.9s ease-in-out;
  294. -ms-transition: all 0.9s ease-in-out;
  295. transition: all 0.9s ease-in-out;
  296. max-width:100%;
  297. height:auto;
  298. border:none;
  299. }
  300.  
  301. blockquote {
  302. border-left:2px solid #211c1c;
  303. padding:2px 7px;
  304. margin-left:0px;
  305. font-size:12px;
  306. width:352px;
  307. }
  308.  
  309. blockquote img {
  310. max-width:100%;
  311. height:auto;
  312. }
  313.  
  314. blockquote blockquote {
  315. border-left:2px solid #211c1c;
  316. padding:6px;
  317. margin:9px 2px 0px 9px;
  318. font-size:12px;
  319. width:330px;
  320. }
  321.  
  322. h1 {
  323. color:#7c6d6d;
  324. font-weight:600;
  325. font-family: 'Kristi', cursive;
  326. font-size:18px;
  327. text-transform:lowercase;
  328. letter-spacing:2px;
  329. line-height:14px;
  330. text-align:center;
  331. padding:5px;
  332. white-space:wrap;
  333. word-wrap: break-word;
  334. background: url("https://68.media.tumblr.com/b0d0ab1a50a1d12fdd5966b1aec73100/tumblr_inline_orcou4wtPL1ueopam_540.png");
  335. border:1px solid #9e9997;
  336. }
  337.  
  338. h2 {
  339. color:#7c6d6d;
  340. font-weight:600;
  341. font-family: 'Kristi', cursive;
  342. font-size:12px;
  343. text-transform:uppercase;
  344. letter-spacing:2px;
  345. line-height:14px;
  346. text-align:center;
  347. padding:0px;
  348. white-space:wrap;
  349. word-wrap: break-word;
  350. }
  351.  
  352. a:hover {
  353. color:#7c6d6d;
  354. -moz-transition-duration:0.3s;
  355. -webkit-transition-duration:0.3s;
  356. -o-transition-duration:0.3s;
  357. }
  358.  
  359.  
  360.  
  361. /*ENTRIES*/
  362.  
  363. #entries {
  364. padding:10px;
  365. width:360px;
  366. margin-left:302px;
  367. margin-top:0px;
  368. font-size:13px;
  369. font-family:calibri;
  370. color:#7c726f;
  371. letter-spacing:0px
  372. line-height:110%;
  373.  
  374. padding: 5px;
  375. top:390px;
  376. Width:340px;
  377. margin-bottom:40px;
  378. margin-left:473px;
  379. position:relative;
  380. background-color: rgba(10,10,10,0.5);
  381. height:330px;
  382. overflow-y:scroll;
  383. overflow-x:hidden;
  384. white-space:wrap;
  385. word-wrap: break-word;
  386. padding: 5px 35px;
  387. border:0px solid #cbc8c5;
  388. -webkit-mask-image: -webkit-gradient(
  389. linear, center 75%, center bottom,
  390. from(rgba(0,0,0,20)),
  391. to(rgba(20,0,0,0)));
  392. }
  393.  
  394.  
  395. #post {
  396. width:370px;
  397. padding:10px;
  398. padding-bottom:0px;
  399. padding-top:5px;
  400. background-color: rgba(10,10,10,0.5);
  401. border:0px solid #cbc8c5;
  402. margin-top:0px;
  403. margin-bottom:20px;
  404. margin-left:-24px;
  405. white-space:wrap;
  406. word-wrap: break-word;
  407. border:1px solid #211c1c;
  408. }
  409.  
  410.  
  411. /*SIDEBAR*/
  412.  
  413. #sidebar {
  414. position:fixed;
  415. margin-left:100px;
  416. margin-top:80px;
  417. margin-left:170px;
  418. width:100px;
  419. }
  420.  
  421. #sidebarimage {
  422. width:0px;
  423. }
  424.  
  425. #sidebarimage img {
  426. width:0px;
  427. margin-top:164px;
  428. padding:3px;
  429. margin-left:-80px;
  430. }
  431.  
  432. #sidebarimage img:hover {
  433. opacity:0.7;
  434. -moz-transition-duration:0.6s;
  435. -webkit-transition-duration:0.6s;
  436. -o-transition-duration:0.6s;
  437. }
  438.  
  439. .links {
  440. width:152px;
  441. font-family:'calibri';
  442. padding: 4px;
  443. text-align:center;
  444. text-transform:uppercase;
  445. position:fixed;
  446. margin-top:140px;
  447. margin-left:180px;
  448. -webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #090909;
  449. }
  450.  
  451. .links a {
  452. width:94px;
  453. padding:3px;
  454. font-size:11px;
  455. letter-spacing:0px;
  456. color:#090909;
  457. }
  458.  
  459. .links a:hover {
  460. -moz-transition-duration:0.3s;
  461. -webkit-transition-duration:0.3s;
  462. -o-transition-duration:0.3s;
  463. color:#090909;
  464. }
  465.  
  466. #description {
  467. text-align:justify;
  468. font-family:'Arial';
  469. width:100px;
  470. margin-top:7px;
  471. margin-left:-3px;
  472. font-size:0px;
  473. position:fixed;
  474. text-transform:none;
  475. color:{color:DescriptionText};
  476. }
  477.  
  478. #pagination {
  479. width:300px;
  480. font-style:bold;
  481. padding:2px;
  482. font-family:'arial';
  483. color:transparent;
  484. letter-spacing:0px;
  485. font-size:9px;
  486. text-align:center;
  487. padding:2px;
  488. margin-top:-120px;
  489. margin-left:0px;
  490. text-transform:lowercase;
  491. }
  492.  
  493. #pagination a {
  494. color:#5d1600;
  495. font-size:18px;
  496. }
  497.  
  498. /*POST INFO*/
  499.  
  500. #info {
  501. background: url("https://68.media.tumblr.com/b0d0ab1a50a1d12fdd5966b1aec73100/tumblr_inline_orcou4wtPL1ueopam_540.png");
  502. background-color:transparent;
  503. border:1px solid #211c1c;
  504. width:368px;
  505. height:25px;
  506. text-align:center;
  507. letter-spacing:10px;
  508. margin-top:8px;
  509. margin-bottom:50px;
  510. text-transform:uppercase;
  511. font-size:15px;
  512. font-style:none;
  513.  
  514. }
  515.  
  516. #info a {
  517. color:#dcdcdc;}
  518.  
  519. #info a:hover {
  520. color:#000;}
  521.  
  522. #tags {
  523. font-family: helvetica;
  524. color:#8d8887;
  525. padding-bottom:35px;
  526. letter-spacing:2px;
  527. text-transform:uppercase;
  528. font-size:7px;
  529. font-style:normal;
  530. margin-top:10px;
  531. text-align:justify;
  532. float:right;
  533. background-color:transparent;
  534. }
  535.  
  536.  
  537. #tags a {
  538. padding:-3px;
  539. opacity:0.8;
  540. text-align:justify;
  541. color:#8d8887;
  542. white-space:wrap;
  543. word-wrap: break-word;
  544. background-color:transparent;
  545.  
  546. }
  547.  
  548.  
  549. #tags a:hover {
  550. color:{color:text};
  551. }
  552.  
  553. /*QUESTION*/
  554.  
  555. #asker {
  556. margin-left:-3px;
  557. text-align: center;
  558. padding: 5px;
  559. width:367px;
  560. background-color: rgba(18,15,5,.11);
  561. color:#ffffff; font-weight:600;font-family: 'Oswald', sans-serif;font-size:10px;
  562. text-transform:uppercase;
  563. letter-spacing:2px;
  564. font-weight:normal;
  565. -moz-transition-duration:0.4s;
  566. -webkit-transition-duration:0.4s;
  567. -o-transition-duration:0.4s;
  568. margin-bottom:3px;}
  569.  
  570. #asker:hover {
  571. background-color: rgba(18,15,5,.11);
  572. -moz-transition-duration:0.4s;
  573. -webkit-transition-duration:0.4s;
  574. -o-transition-duration:0.4s;}
  575.  
  576. #asker a {
  577. color:#ffffff;
  578. }
  579.  
  580. #question {
  581. margin-left:-3px;
  582. text-align: center;
  583. width:360px;
  584. font-family:Trebuchet MS;
  585. font-size:9px;
  586. color:#ffffff;
  587. letter-spacing:1px;
  588. word-spacing:2px;
  589. text-transform:uppercase;
  590. background-color: rgba(18,15,5,.11);
  591. padding: 8px;}
  592.  
  593. #answer {
  594. background:transparent;
  595. color:#414141;
  596. width:360px;
  597. text-align:justify;
  598. margin-top:3px;
  599. padding:1px 0px 1px 8px;}
  600.  
  601. /*CREDIT*/
  602.  
  603. #cred {
  604. position:fixed;
  605. font-family:'Calibri';
  606. text-transform:uppercase;
  607. font-size:8px;
  608. right:9px;
  609. bottom:9px;
  610. padding:4px;
  611. letter-spacing:1px;
  612. color:#80805e;
  613. }
  614.  
  615. #cred a {
  616. color:#4d4d4d;
  617. }
  618.  
  619. {CustomCSS}
  620.  
  621. /*EXTRA*/
  622.  
  623. .extra {
  624. position:fixed;
  625. z-index:99999;
  626. margin-top:-190px;
  627. margin-left:505px;
  628. width:90px;
  629. }
  630.  
  631. #extrabox {
  632. text-align:justify;
  633. font-family:'Arial';
  634. width:90px;
  635. margin-top:128px;
  636. margin-left:-714px;
  637. font-size:10px;
  638. position:fixed;
  639. text-transform:none;
  640. color:#414141;
  641. z-index:99999;
  642. }
  643.  
  644. /*EXTRA1*/
  645.  
  646. .extra1 {
  647. position:fixed;
  648. z-index:99999;
  649. margin-top:-140px;
  650. margin-left:310px;
  651. width:500px;
  652. overflow-x:hidden;
  653. overflow-y:hidden;
  654. }
  655.  
  656. #extrabox1 {
  657. background-color: rgba(202,201,199,0.5);
  658. text-align:justify;
  659. font-family:'Arial';
  660. width:500px;
  661. margin-top:129px;
  662. margin-left:-614px;
  663. font-size:10px;
  664. position:fixed;
  665. text-transform:none;
  666. color:#414141;
  667. z-index:99999;
  668. }
  669.  
  670.  
  671. </style></head><body>
  672.  
  673. <div id="sidebar">
  674.  
  675. <div id="sidebarimage">
  676. <a title="home" href="/">
  677. <img src="{image:Sidebar}">
  678. </a>
  679. </div>
  680.  
  681. <div class="links">
  682. <a href="/" title="Return"> ●</a><br><br>
  683. <a href="/ask" title="Inquire"> ●</a><br><br>
  684. {block:IfShowLink1}<a href="{text:Link 1}" title="{text:Link 1 Text}">●</a>{/block:IfShowLink1}<br><br>
  685. {block:IfShowLink2}<a href="{text:Link 2}" title="{text:Link 2 Text}">●</a>{/block:IfShowLink2}<br><br>
  686. {block:IfShowLink3}<a href="{text:Link 3}" title="{text:Link 3 Text}">●</a>{/block:IfShowLink3}
  687.  
  688. <div id="description">
  689.  
  690. {block:Pagination}
  691. <div id="pagination">
  692. {block:PreviousPage}<a href="{PreviousPage}">◄</a>{/block:PreviousPage}
  693. — {block:NextPage}<a href="{NextPage}">►</a>{/block:NextPage}
  694. </div>
  695. {/block:Pagination}
  696. </div>
  697. </div>
  698. </div>
  699.  
  700. <div id="entries">
  701. {block:Posts}
  702. <div id="post">
  703.  
  704. {block:Text}
  705. {block:Title}<h1>{Title}</h1>{/block:Title}
  706. {Body}{/block:Text}
  707.  
  708. {block:Photo}<center>{LinkOpenTag}<img src="{PhotoURL-HighRes}" width="360px" height="auto">{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  709. {block:Photoset}<center>{Photoset}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  710.  
  711. {block:Quote}<h2>"{Quote}"</h2>
  712. {block:Source}<div class="qsource"> —{Source}</div>
  713. {/block:Source}{/block:Quote}
  714.  
  715. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1><br>{block:Description}{Description}{/block:Description}{/block:Link}
  716.  
  717. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b><u>{Label}</u></b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  718.  
  719. {block:Audio}<left>{block:AlbumArt}<img src="{AlbumArtURL}" width="60px" height="60px" align="left" style="margin-right:10px" />{/block:AlbumArt}<span class="audio">{AudioPlayerBlack}</left></span>
  720. {block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}
  721. {block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  722. {/block:ExternalAudio}<b>Played:</b> {PlayCount} times <br>
  723. {/block:Audio}<br>
  724.  
  725. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  726.  
  727. {block:Answer}<div id="asker">{asker}</div>
  728. <div id="question">{Question}</div>
  729. <div id="answer">{Answer}</div>{/block:answer}
  730.  
  731. <div id="info">
  732. <br>
  733.  
  734. &nbsp; &nbsp;
  735.  
  736.  
  737. {block:Date}
  738. <a href="{Permalink}" style="position:absolute; margin-left:-100px; margin-top:-8px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title=" {ShortMonth} {DayOfMonthWithZero} - {TimeAgo} "> ● </a>
  739. {/block:Date}
  740.  
  741.  
  742. {block:RebloggedFrom}
  743. <a href="{ReblogParentURL}" style="position:absolute; margin-left:-65px; margin-top:-8px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title=" via. {ReblogParentName} "> ● </a>
  744. {/block:RebloggedFrom}
  745.  
  746.  
  747. {block:ContentSource}
  748. <a href="{SourceURL}" style="position:absolute; margin-left:-30px; margin-top:-8px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title=" source. {SourceTitle} "> ● </a>
  749. {/block:ContentSource}
  750.  
  751.  
  752. <a href="{Permalink}" style="position:absolute; margin-left:5px; margin-top:-8px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title=" {NoteCount} notes "> ● </a>
  753.  
  754.  
  755. <a href="{ReblogURL}" style="position:absolute; margin-left:40px; margin-top:-8px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title="reblog"> ● </a>
  756.  
  757.  
  758. <br>
  759.  
  760. {block:HasTags}<div id="tags">{block:Tags} & <a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}</div> &nbsp;</div>
  761. {/block:Posts}
  762. <br><br>{block:PostNotes}<div id="notes"><left>{PostNotes}</div>{/block:PostNotes}
  763. {/block:Posts}</div></div></div>
  764. <br><br><br><br>
  765.  
  766. <div id="cred">
  767. <a href="https://moralsofajackcal.tumblr.com/">impriisonedqueen</a>
  768. </div>
  769. </div>
  770.  
  771. <div class="extra">
  772.  
  773. <div id=“extrabox”>
  774.  
  775. <div style="overflow:auto; width: 0px; height:0px; border: 0px solid #cbc8c5; background-color:#transparent; text-align: justify; z-index:9999999;padding:10px; color:#5e5d55;font-size:10px;font-family:calibri;overflow-x:hidden; -webkit-mask-image: -webkit-gradient(
  776. linear, center 75%, center bottom,
  777. from(rgba(0,0,0,20)),
  778. to(rgba(20,0,0,0)));
  779. ">
  780.  
  781. </div></div></div>
  782.  
  783. <div class="extra1">
  784.  
  785. <div id=“extrabox1”>
  786.  
  787. <div style="overflow:auto; width: 500px; height:55px; border: 0px solid #000000; background-color: transparent; text-align: justify; z-index:9999999;padding:5px; color:#5e5d55;">
  788. </div></div></div>
  789.  
  790.  
  791. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement