Fucking_Aj

Theme 5 - "No Ordinary Love" - by Lootinq

Apr 10th, 2014
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 40.71 KB | None | 0 0
  1.  
  2.  
  3. <!--
  4. keep credit ~ thank u
  5. -->
  6.  
  7. <html lang="en">
  8. <!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  9. <html xmlns="http://www.w3.org/1999/xhtml">
  10. <head>
  11. <script type="text/javascript">
  12. // <![CDATA[
  13. var speed=100; // speed colours change, 1 second = 1000
  14. var delay=15; // how long to wait for each wipe
  15. var alink="http://www.mf2fm.com/rv"; // page to link text to (set to ="" for no link)
  16.  
  17. /****************************
  18. * Wipe Out Text Effect *
  19. *(c) 2003-6 mf2fm web-design*
  20. * http://www.mf2fm.com/rv *
  21. * DON'T EDIT BELOW THIS BOX *
  22. ****************************/
  23. var w_txt;
  24. window.onload=function() { if (document.getElementById) {
  25. var wiper=document.getElementById("wipe");
  26. w_txt=wiper.firstChild.nodeValue;
  27. while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  28. for (var i=0; i<w_txt.length; i++) {
  29. var wipei=document.createElement("span");
  30. wipei.setAttribute("id", "wipe"+i);
  31. wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  32. if (alink) {
  33. wipei.style.cursor="pointer";
  34. wipei.onclick=function() { top.location.href=alink; }
  35. }
  36. wiper.appendChild(wipei);
  37. }
  38. wipe(0);
  39. }}
  40.  
  41. function wipe(c) {
  42. if (!c) for (var w=0; w<w_txt.length; w++) document.getElementById("wipe"+w).style.visibility="hidden";
  43. else if (c<=w_txt.length) document.getElementById("wipe"+(c-1)).style.visibility="visible";
  44. setTimeout("wipe("+(++c%(w_txt.length+delay))+")", speed);
  45. }
  46. // ]]>
  47. </script>
  48. <script type="text/javascript">
  49. <!--
  50.  
  51. // Disable Right Click Script
  52.  
  53. function IE(e)
  54. {
  55. if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3"))
  56. {
  57. return false;
  58. }
  59. }
  60. function NS(e)
  61. {
  62. if (document.layers || (document.getElementById && !document.all))
  63. {
  64. if (e.which == "2" || e.which == "3")
  65. {
  66. return false;
  67. }
  68. }
  69. }
  70. document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");
  71.  
  72. //-->
  73. </script>
  74.  
  75. <script type="text/javascript">
  76. // <![CDATA[
  77. var bgcolour="#ffffff"; // background colour
  78. var fgcolour="{color:blogtitle}"; // foreground colour
  79. var speed=80; // speed of bubbling, lower is faster
  80. var shades=12; // number of shades of bubble
  81.  
  82. /****************************
  83. * Bubbling Text Effect *
  84. *(c)2003-13 mf2fm web-design*
  85. * http://www.mf2fm.com/rv *
  86. * DON'T EDIT BELOW THIS BOX *
  87. ****************************/
  88. var bubbcol=new Array();
  89. var bubbshd;
  90. var bubbler, bubbtxt;
  91. var bubbchr=new Array();
  92.  
  93. function addLoadEvent(funky) {
  94. var oldonload=window.onload;
  95. if (typeof(oldonload)!='function') window.onload=funky;
  96. else window.onload=function() {
  97. if (oldonload) oldonload();
  98. funky();
  99. }
  100. }
  101.  
  102. addLoadEvent(bubbagump);
  103.  
  104. function bubbagump() { if (document.getElementById) {
  105. var i, fg, bg, col;
  106. for (bubbler=0; bubbler<=shades; bubbler++) {
  107. col="#";
  108. for (i=1; i<6; i+=2) {
  109. bg=parseInt(bgcolour.substring(i,i+2),16);
  110. fg=parseInt(fgcolour.substring(i,i+2),16);
  111. col+=dechex(bg+(fg-bg)*(bubbler/shades));
  112. }
  113. bubbcol[bubbler+1]=col;
  114. if (bubbler==Math.floor(shades/2)) bubbshd=col;
  115. }
  116. bubbler=document.getElementById("bubble");
  117. bubbtxt=bubbler.firstChild.nodeValue;
  118. while (bubbler.childNodes.length) bubbler.removeChild(bubbler.childNodes[0]);
  119. for (i=0; i<bubbtxt.length; i++) {
  120. fg=document.createElement("span");
  121. fg.setAttribute("id", "bubb"+i);
  122. fg.style.textShadow=bubbshd+" 0px 0px 2px";
  123. fg.appendChild(document.createTextNode(bubbtxt.charAt(i)));
  124. bubbler.appendChild(fg);
  125. }
  126. bubbler=setInterval("bubbling()", speed);
  127. }}
  128.  
  129. function dechex(dec) {
  130. dec=Math.floor(dec);
  131. return ((dec<16)?'0':'')+dec.toString(16);
  132. }
  133.  
  134. function bubbling() {
  135. var i, bubby;
  136. for (i=0; i<bubbtxt.length; i++) {
  137. bubby=document.getElementById("bubb"+i);
  138. if (bubbchr[i]) {
  139. bubby.style.color=bubbcol[bubbchr[i]];
  140. bubbchr[i]=(bubbchr[i]+1)%bubbcol.length;
  141. }
  142. else if (Math.random()<7.5/(shades*bubbtxt.length)) bubbchr[i]=1;
  143. }
  144. }
  145. // ]]>
  146. </script>
  147. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  148. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  149. <script>
  150. (function($){
  151. $(document).ready(function(){
  152. $("a[title]").style_my_tooltips({
  153. tip_follows_cursor:true,
  154. tip_delay_time:90,
  155. tip_fade_speed:600,
  156. attribute:"title"
  157. });
  158. });
  159. })(jQuery);
  160. </script>
  161. <script type="text/javascript"
  162. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  163.  
  164. <!--DEFAULT VARIABLES-->
  165. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  166. <meta name="color:background" content="#fff"/>
  167. <meta name="color:link" content="#777"/>
  168. <meta name="color:text" content="#777"/>
  169. <meta name="color:title" content="#333"/>
  170. <meta name="color:hover" content="#fff"/>
  171. <meta name="image:sidebar" content="1"/>
  172. <meta name="image:pic" content="1"/>
  173. <meta name="image:background" content="1"/>
  174. <meta name="color:borders" content="#5f90b9">
  175. <meta name="text:your name" content="Your name"/>
  176. <meta name="color:blogtitle" content="#5f90b9"/>
  177.  
  178. <meta name="text:blogtitle" content="No Ordinary Love"/>
  179. <meta name="text:quote" content="I gave you all that I have inside
  180. And you took my love"/>
  181. <meta name="text:sidebarquote" content="Make a wish on our sorry little hearts. Have a smoke, pour a drink, steal a kiss in the dark. Fingernails on my skin like the teeth of a shark. I'm intoxicated by the lie"/>
  182. <meta name="text:link two" content="/"/>
  183. <meta name="text:link three" content="/"/>
  184. <meta name="text:link four" content="/"/>
  185. <meta name="text:link five" content="/"/>
  186. <meta name="text:link two msg" content="laa"/>
  187. <meta name="text:link three msg" content="laaa"/>
  188. <meta name="text:link four msg" content="laaaa"/>
  189. <meta name="text:link five msg" content="laaaaa"/>
  190. <meta name="color:navi" content="#5f90b9"/>
  191. <style type="text/css">
  192.  
  193.  
  194. iframe#tumblr_controls {right:2px !important; position: fixed !important;-webkit-transition: opacity 0.7s linear;opacity: 0.05;-webkit-transition: all 0.8s ease-out;-moz-
  195.  
  196. transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
  197.  
  198. iframe#tumblr_controls:hover{-webkit-transition: opacity 0.7s linear;opacity: 0.8;-webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;}
  199.  
  200. p {
  201. margin:0px;
  202. margin-top:0px;
  203. }
  204. yourname {
  205. font-family: mathy;
  206. font-size: 35px;
  207. }
  208.  
  209.  
  210. body {
  211. padding: 0px;
  212. margin: 0px;
  213. color:{color:text};
  214. font-family: handy;
  215. line-height:10px;
  216. font-size:8px;
  217. background-color: {color:Background};
  218. background-image:url({image:Background});
  219. background-attachment: fixed;
  220. background-repeat: repeat;
  221. }
  222.  
  223.  
  224. a:link, a:active, a:visited{
  225. text-decoration: none;
  226. -webkit-transition: color 0.3s ease-out;
  227. -moz-transition: color 0.3s ease-out;
  228. transition: color 0.3s ease-out;
  229. color:{color:link};
  230. }
  231.  
  232. a:hover {
  233. text-decoration: none;
  234. font-style:;
  235. color: {color:Hover};
  236. }
  237.  
  238. div#center{
  239. margin:auto;
  240. position:relative;
  241. width:1000px;
  242. background-color:;
  243. overflow:auto;
  244. overflow-y:hidden;
  245. }
  246.  
  247. #s-m-t-tooltip {
  248. max-width:500px;
  249. padding:5px;
  250. margin:-30px 0px 0px -7px;
  251. height:12px;
  252. line-height:12px;
  253. font-family:calibri; /* change the font */
  254. font-size:10px; /* change the font size */
  255. letter-spacing:2px; /* change the letter spacing */
  256. text-transform:uppercase; /* can be uppercase, lowercase, none*/
  257. color:#fff; /* change the text color */
  258. border:0px solid #fff;
  259. z-index:9999999999999999999999999999999990999999999999999999999999999999;
  260. box-shadow:1px 1px 3px #ccc;
  261. border-radius:0px;
  262. background-image: -ms-linear-gradient(top, {color:blogtitle}; 0%, {color:blogtitle} 100%);
  263. background-image: -moz-linear-gradient(top, {color:borders} 0%, {color:blogtitle} 100%);
  264. background-image: -o-linear-gradient(top, {color:borders} 0%, {color:blogtitle} 100%);
  265. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, {color:borders}), color-stop(1, {color:blogtitle}));
  266. background-image: -webkit-linear-gradient(top, {color:borders} 0%, {color:blogtitle} 100%);
  267. }
  268. /*CUSTOMIZE ENTRY SETTINGS HERE*/
  269. .entry {
  270. float:left;
  271. display: block;
  272. margin:7px;
  273. overflow:hidden;
  274. width:220px;
  275. padding:11px;
  276. border-radius:5px;
  277. border:1px solid #e1e1e1;
  278. {block:PermalinkPage}
  279. width:450px;
  280. text-align:left;
  281. line-height:10px;
  282. {/block:PermalinkPage}
  283. background:white;
  284. background-image:URL();
  285. }
  286. .entry img{
  287. border-radius:3px;
  288. }
  289.  
  290.  
  291. /*CUSTOMIZE THE APPEARANCE OF PERMALINKS*/
  292. .entry .perma{
  293. width:auto;
  294. height:auto;
  295. margin-left:3px;
  296. position: absolute;
  297. overflow:hidden;
  298. text-align:center;
  299. bottom:6px;
  300. font-family:consolas;
  301. background:white;
  302. word-spacing:2px;
  303. letter-spacing:1px;
  304. opacity: 0.0;
  305. padding:3px;
  306. padding-bottom:1px;
  307. border-right:4px solid {color:nav};
  308. border-left:4px solid {color:nav};
  309. border-radius:5px;
  310. -webkit-transition: all .7s ease;
  311. -moz-transition: all .7s ease;
  312. -o-transition: all .7s ease;
  313. transition: all .7s ease;
  314. z-index:9;
  315. -webkit-box-shadow: 0px 0px 20px #fff;
  316. -moz-box-shadow: 0px 0px 20px #fff;
  317. box-shadow: 0px 0px 20px #fff;
  318. }
  319.  
  320. .entry:hover .perma{
  321. overflow:visible;
  322. opacity:9; transform: scale(1.05);
  323. -ms-transform: scale(1.05);
  324. -webkit-transform: scale(1.05);
  325. -o-transform: scale(1.05);
  326. -moz-transform: scale(1.05);
  327. -webkit-box-shadow: 0px 0px 20px #fff;
  328. -moz-box-shadow: 0px 0px 20px #fff;
  329. box-shadow: 0px 0px 20px #fff;
  330. }
  331. .LikeButton{
  332.  
  333. position:absolute;
  334. float:left;
  335. top:25px;
  336. left:83px;
  337. z-index:9999;
  338. background:white;
  339. padding:5px;
  340. height: 16px;
  341. width:16px;
  342. opacity:0;
  343. border:4px double {color:borders};
  344. border-radius:111px;
  345. -o-transition-transition: all 0.5s ease;
  346. -webkit-transition: all 0.5s ease;
  347. -moz-transition: all 0.5s ease;
  348. transition: all 0.5s ease;
  349.  
  350. }
  351. .entry:hover .LikeButton{
  352. opacity:8;
  353.  
  354. top:25px;
  355. left:21px;
  356. -o-transition-transition: all 0.5s ease;
  357. -webkit-transition: all 0.5s ease;
  358. -moz-transition: all 0.5s ease;
  359. transition: all 0.5s ease;
  360.  
  361. }
  362.  
  363. .ReblogButton{
  364. position:absolute;
  365. float:left;
  366. z-index:9999;
  367. background:white;
  368. padding:5px;
  369. height:16px;
  370. width:16px;
  371. top:25px;
  372. left:83px;
  373. opacity:0;
  374. border:4px double {color:borders};
  375. border-radius:100px;
  376. -o-transition-transition: all 0.5s ease;
  377. -webkit-transition: all 0.5s ease;
  378. -moz-transition: all 0.5s ease;
  379. transition: all 0.5s ease;
  380. }
  381. .entry:hover .ReblogButton{
  382. opacity:8;
  383. top:25px;
  384. left:65px;
  385.  
  386. -o-transition-transition: all 0.5s ease;
  387. -webkit-transition: all 0.5s ease;
  388. -moz-transition: all 0.5s ease;
  389. transition: all 0.5s ease;
  390.  
  391. }
  392. .LikeButton:hover{
  393.  
  394. -o-transition-transition: all 0.5s ease;
  395. -webkit-transition: all 0.5s ease;
  396. -moz-transition: all 0.5s ease;
  397. transition: all 0.5s ease;
  398. }
  399. .ReblogButton:hover{
  400.  
  401. -o-transition-transition: all 0.5s ease;
  402. -webkit-transition: all 0.5s ease;
  403. -moz-transition: all 0.5s ease;
  404. transition: all 0.5s ease;
  405. }
  406.  
  407. .text{
  408. text-transform: uppercase;
  409. display: block;
  410. text-align:left;
  411. padding-left:18px;
  412. text-decoration: none;
  413. font-size: 9px;
  414. font-family:calibri;
  415. line-height:10px;
  416. letter-spacing:1px;
  417. margin: 2px;
  418. margin-top: 22px;
  419. border: 0px solid #f3f3f3;
  420. outline:1px dashed white;
  421. outline-offset:-3px;
  422. padding-top: 5px;
  423. padding-bottom: 6px;
  424. background:{color:blogtitle};
  425. color:white;
  426. margin-left: -20px;
  427. margin-right: -20px;
  428. opacity: 0.7;
  429. -webkit-transition: all 0.6s ease-in-out;
  430. -moz-transition: all 0.6s ease-in-out;
  431. transition: all 0.6s ease-in-out;
  432. }
  433.  
  434. .text a{color:#fff; !important;}
  435. .text a:hover{color:#fff; !important;}
  436. .text:hover{
  437. -webkit-transition: 0.8s ease-out;
  438. -moz-transition: 0.8s ease-out;
  439. transition: 0.8s ease-out;
  440. }
  441. .entry:hover .text{
  442. opacity:.7;
  443. -webkit-transition: 0.8s ease-out;
  444. -moz-transition: 0.8s ease-out;
  445. transition: 0.8s ease-out;
  446. }
  447.  
  448.  
  449.  
  450. /*CUSTOMIZE POST POSITIONING AND STUFFZ HERE*/
  451. #posts {
  452. width:560px;
  453. margin-top:41px;
  454. z-index:99;
  455. margin-left:399px;
  456. right:auto;
  457. background:transparent;
  458. margin-right:auto;
  459. position:relative;
  460. overflow-y: hidden;
  461. }
  462.  
  463.  
  464. /*CUSTOMIZE SIDEBAR HERE*/
  465. #sidebar{
  466. position:fixed !important;
  467. width:330px;
  468. background:white;
  469. height:230px;
  470. margin-top:150px;
  471. margin-left:-35px;
  472. text-align:center;
  473. border:13px solid {color:borders};
  474. padding:10px;
  475. transition: all 0.6s ease-out;
  476. -o-transition-transition: all 0.4s ease-out;
  477. -webkit-transition: all 0.4s ease-out;
  478. -moz-transition: all 0.4s ease-out;
  479. }
  480. #sidebar:hover{
  481. transition: all 0.6s ease-out;
  482. -o-transition-transition: all 0.4s ease-out;
  483. -webkit-transition: all 0.4s ease-out;
  484. -moz-transition: all 0.4s ease-out;
  485. }
  486. #pic{
  487.  
  488. margin-top:2px;
  489. margin-left:-2px;
  490. width:330px;
  491. height:230px;
  492.  
  493. }
  494.  
  495.  
  496. #pic img{
  497. margin-top:0px;
  498. margin-left:-1px;
  499. width:330px;
  500. background:;
  501. height:230px;
  502. opacity:1;
  503. -webkit-transition: all .7s ease;
  504. -moz-transition: all .7s ease;
  505. -o-transition: all .7s ease;
  506. transition: all .7s ease;
  507. -webkit-transform: perspective(360deg) rotateY(360deg);
  508. -moz-transform: perspective(360deg) rotateY(360deg);
  509. transform: perspective(360deg) rotateY(360deg);
  510. }
  511.  
  512. #sidebar:hover #pic img{
  513.  
  514.  
  515. -webkit-transform: perspective(360deg) rotateY(360deg);
  516. -moz-transform: perspective(360deg) rotateY(360deg);
  517. transform: perspective(360deg) rotateY(360deg);
  518. opacity:0;
  519. }
  520. @font-face {font-family: 'mathy'; src: url(http://static.tumblr.com/if4ekm8/4fJn11p1e/mathilde.otf); }
  521.  
  522. #desc:before{
  523. position: absolute;
  524. left:170px;
  525. top:42px;
  526. width:2px;
  527. height:5px;
  528. content:"";
  529. transform: scale(0, 1.11);
  530. -webkit-transform: scale(1, 0.501);
  531. -moz-transform: scale(1, 0.501);
  532. -o-transform: scale(1, 0.501);
  533. -ms-transform: scale(1, 0.501);
  534. border-left:7px solid transparent;
  535. border-right:7px solid transparent;
  536. -webkit-transform:rotate(-90deg);
  537. border-top:10px solid {color:borders};
  538. }
  539.  
  540. #desc{
  541. z-index:2;
  542. position:fixed !important;
  543. opacity: 0;
  544. width:155px;
  545. height:auto;
  546. padding:8px;
  547. margin-left:19px;
  548. margin-top:-217px;
  549. color:black;
  550.  
  551.  
  552. border:1px solid #f2f2f2;
  553. background:{color:borders};
  554. outline:1px dashed #fff;
  555. outline-offset:-6px;
  556. letter-spacing:1px;
  557. font-family: calibri;
  558. font-size:11px;
  559. line-height:16px;
  560. transition: all 0.6s ease-out;
  561. -o-transition-transition: all 0.4s ease-out;
  562. -webkit-transition: all 0.4s ease-out;
  563. -moz-transition: all 0.4s ease-out;
  564. }
  565.  
  566. #sidebar:hover #desc{
  567. opacity:3;
  568. transform:rotate(0deg);
  569. -ms-transform:rotate(0deg);
  570. -webkit-transform:rotate(0deg);
  571. -moz-border-radius: 45px;;
  572.  
  573. }
  574. #ff{
  575. opacity:0;
  576.  
  577. transition: all 0.6s ease-out;
  578. margin-top:-260px;
  579. margin-left:-60px;
  580. width:100px;
  581.  
  582. -o-transition-transition: all 0.4s ease-out;
  583. -webkit-transition: all 0.4s ease-out;
  584. -moz-transition: all 0.4s ease-out;
  585. }
  586. #sidebar:hover #ff{
  587. opacity:1;
  588. transition: all 0.6s ease-out;
  589. -o-transition-transition: all 0.4s ease-out;
  590. -webkit-transition: all 0.4s ease-out;
  591. -moz-transition: all 0.4s ease-out;
  592. }
  593. #ff img{
  594. width:330px;
  595.  
  596. }
  597.  
  598.  
  599. #blogtitle{
  600. position:fixed;
  601. text-align: center;
  602. margin: 20px auto 10px;
  603. width:600px;
  604. padding:10px;
  605. background: transparent;
  606. font-family:pea katrina;
  607. font-size:30px;
  608. text-shadow: -1px 0 #ccc, 0 1px #ccc, 1px 0 #ccc, 0 -1px #ccc;
  609. color:#Fff;
  610. margin-top:125px;
  611. margin-left:-187px;
  612. z-index: 99999;
  613. opacity:3;
  614. text-transform:none;
  615. background-image:sdfgh;
  616. letter-spacing: 1px;
  617. line-height:0px;
  618. text-align:center;
  619. font-weight:20px;
  620. -o-transition-transition: all 0.5s ease;
  621. -webkit-transition: all 0.5s ease;
  622. -moz-transition: all 0.5s ease;
  623. transition: all 0.5s ease;
  624. }
  625.  
  626. #topbar{
  627. position:fixed;
  628. width:1753px;
  629. height:30px;
  630. opacity: 2;
  631. padding: 0px;
  632. padding-left: 25px;
  633. margin-left:-348px;
  634. margin-top: -1px;
  635. box-shadow:0px 2px 1px #ddd;
  636. text-transform: uppercase;
  637. background:{color:borders};
  638. color: #fff;
  639. border-bottom: 4px double #fff;
  640.  
  641. border-left:0px;
  642. line-height:29px;
  643. text-align:left;
  644. font-size: 12px;
  645. font-family: Calibri;
  646. z-index:9999;
  647. text-align:center;
  648. -webkit-transition: all .7s ease;
  649. -moz-transition: all .7s ease;
  650. -o-transition: all .7s ease;
  651. transition: all .7s ease;
  652. -webkit-animation:fadeInDown 2s;
  653. -moz-animation:fadeInDown 2s;
  654. -ms-animation:fadeInDown 2s;
  655. }
  656. #ocehans1{
  657. height:13px;
  658. text-align:center;
  659. overflow:hidden;
  660. border-radius:3px;
  661. margin-top:-1px;
  662. border-bottom:1px solid #efefef;
  663. text-transform:uppercase;
  664. letter-spacing:1px;
  665. font-size:8px;
  666. line-height:10px;
  667. z-index:999999999999999999999;
  668. -webkit-transition: all 0.5s ease-in-out;
  669. -moz-transition: all 0.5s ease-in-out;
  670. -o-transition: all 0.5s ease-in-out;
  671. }
  672. #ocehans1:hover{
  673. height:67px;
  674. -webkit-transition: all 0.5s ease-in-out;
  675. -moz-transition: all 0.5s ease-in-out;
  676. -o-transition: all 0.5s ease-in-out;
  677. }
  678.  
  679. #ocehans2{
  680. height:13px;
  681. text-align:center;
  682. overflow:hidden;
  683. border-bottom:1px solid #efefef;
  684. border-radius:3px;
  685. text-transform:uppercase;
  686. background-color:#fff;
  687. letter-spacing:1px;
  688. font-size;8px;
  689. line-height:13px;
  690. z-index:999999999999999999999;
  691. -webkit-transition: all 0.5s ease-in-out;
  692. -moz-transition: all 0.5s ease-in-out;
  693. -o-transition: all 0.5s ease-in-out;
  694. }
  695.  
  696. #ocehans2:hover{
  697. height:60px;
  698. -webkit-transition: all 0.5s ease-in-out;
  699. -moz-transition: all 0.5s ease-in-out;
  700. -o-transition: all 0.5s ease-in-out;
  701. }
  702.  
  703. #ocehans3{
  704. height:13px;
  705. text-align:center;
  706. overflow:hidden;
  707. border-bottom:1px solid #efefef;
  708. text-transform:uppercase;
  709. background-color:#fff;
  710. border-radius:3px;
  711. letter-spacing:1px;
  712. font-size;8px;
  713. line-height:13px;
  714. z-index:999999999999999999999;
  715. -webkit-transition: all 0.5s ease-in-out;
  716. -moz-transition: all 0.5s ease-in-out;
  717. -o-transition: all 0.5s ease-in-out;
  718. }
  719.  
  720. #ocehans3:hover{
  721. height:135px;
  722. -webkit-transition: all 0.5s ease-in-out;
  723. -moz-transition: all 0.5s ease-in-out;
  724. -o-transition: all 0.5s ease-in-out;
  725. }
  726.  
  727.  
  728.  
  729. #ocehans4{
  730. height:13px;
  731. text-align:center;
  732. overflow:hidden;
  733. text-transform:uppercase;
  734. background-color:#fff;
  735. letter-spacing:1px;
  736. border-bottom:0px solid #efefef;
  737. font-size;8px;
  738. line-height:13px;
  739. z-index:999999999999999999999;
  740. -webkit-transition: all 0.5s ease-in-out;
  741. -moz-transition: all 0.5s ease-in-out;
  742. -o-transition: all 0.5s ease-in-out;
  743. }
  744.  
  745. #ocehans4:hover{
  746. height:145px;
  747. -webkit-transition: all 0.5s ease-in-out;
  748. -moz-transition: all 0.5s ease-in-out;
  749. -o-transition: all 0.5s ease-in-out;
  750. }
  751.  
  752. #ocehans{
  753. text-align:left;
  754. font-size:8px;
  755. text-transform:uppercase;
  756. opacity: 1;
  757. border:1px solid #eee;
  758. position:fixed;
  759. font-family:consolas;
  760. border-radius:9px;
  761. right:14px;
  762. background-color:#fff;
  763. letter-spacing:1px;
  764. width:78px;
  765. z-index:9999;
  766. box-shadow:rgba(0,0,0,.03) 6px 6px;
  767. padding:6px;
  768. top:57px;
  769.  
  770. }
  771. #link1{
  772. position:fixed;
  773. overflow:visible;
  774. opacity:0;
  775. z-index:999999999999999999;
  776. margin-top:-50px;
  777. margin-left:35px;
  778. -webkit-transition: all .3s ease;
  779. -moz-transition: all .3s ease;
  780. -o-transition: all .3s ease;
  781. transition: all .3s ease;
  782. }
  783.  
  784. #sidebar:hover #link1{
  785. opacity:1;
  786. -webkit-transition: all .7s ease;
  787. -moz-transition: all .7s ease;
  788. -o-transition: all .7s ease;
  789. transition: all .7s ease;
  790. }
  791. #link1 a{
  792. padding-right:8px;
  793. padding-left:8px;
  794. padding-top:7px;
  795. padding-bottom:0px;
  796. background:{color:navi};
  797. border:3px double #fff;
  798.  
  799. -webkit-transition: all .8s ease;
  800. -moz-transition: all .8s ease;
  801. -o-transition: all .8s ease;
  802. transition: all .8s ease;
  803. }
  804. #link2{
  805. position:fixed;
  806. overflow:visible;
  807. opacity:0;
  808. z-index:999999999999999999;
  809. margin-top:-50px;
  810. margin-left:65px;
  811. -webkit-transition: all .3s ease;
  812. -moz-transition: all .3s ease;
  813. -o-transition: all .3s ease;
  814. transition: all .3s ease;
  815. }
  816.  
  817. #sidebar:hover #link2{
  818. opacity:1;
  819. -webkit-transition: all .7s ease;
  820. -moz-transition: all .7s ease;
  821. -o-transition: all .7s ease;
  822. transition: all .7s ease;
  823. }
  824. #link2 a{
  825. padding-right:8px;
  826. padding-left:8px;
  827. padding-top:7px;
  828. padding-bottom:0px;
  829. background:{color:navi};
  830. border:3px double #fff;
  831.  
  832. -webkit-transition: all .8s ease;
  833. -moz-transition: all .8s ease;
  834. -o-transition: all .8s ease;
  835. transition: all .8s ease;
  836. }
  837. #link3{
  838. position:fixed;
  839. overflow:visible;
  840. opacity:0;
  841. z-index:999999999999999999;
  842. margin-top:-50px;
  843. margin-left:95px;
  844. -webkit-transition: all .3s ease;
  845. -moz-transition: all .3s ease;
  846. -o-transition: all .3s ease;
  847. transition: all .3s ease;
  848. }
  849.  
  850. #sidebar:hover #link3{
  851. opacity:1;
  852. -webkit-transition: all .7s ease;
  853. -moz-transition: all .7s ease;
  854. -o-transition: all .7s ease;
  855. transition: all .7s ease;
  856. }
  857. #link3 a{
  858. padding-right:8px;
  859. padding-left:8px;
  860. padding-top:7px;
  861. padding-bottom:0px;
  862. background:{color:navi};
  863. border:3px double #fff;
  864.  
  865. -webkit-transition: all .8s ease;
  866. -moz-transition: all .8s ease;
  867. -o-transition: all .8s ease;
  868. transition: all .8s ease;
  869. }
  870.  
  871. #link4{
  872. position:fixed;
  873. overflow:visible;
  874. opacity:0;
  875. z-index:999999999999999999;
  876. margin-top:-50px;
  877. margin-left:125px;
  878. -webkit-transition: all .3s ease;
  879. -moz-transition: all .3s ease;
  880. -o-transition: all .3s ease;
  881. transition: all .3s ease;
  882. }
  883.  
  884. #sidebar:hover #link4{
  885. opacity:1;
  886. -webkit-transition: all .7s ease;
  887. -moz-transition: all .7s ease;
  888. -o-transition: all .7s ease;
  889. transition: all .7s ease;
  890. }
  891. #link4 a{
  892. padding-right:8px;
  893. padding-left:8px;
  894. padding-top:7px;
  895. padding-bottom:0px;
  896. background:{color:navi};
  897. border:3px double #fff;
  898.  
  899. -webkit-transition: all .8s ease;
  900. -moz-transition: all .8s ease;
  901. -o-transition: all .8s ease;
  902. transition: all .8s ease;
  903. }
  904.  
  905. #link5{
  906. position:fixed;
  907. overflow:visible;
  908. opacity:0;
  909. z-index:999999999999999999;
  910. margin-top:-50px;
  911. margin-left:155px;
  912. -webkit-transition: all .3s ease;
  913. -moz-transition: all .3s ease;
  914. -o-transition: all .3s ease;
  915. transition: all .3s ease;
  916. }
  917.  
  918. #sidebar:hover #link5{
  919. opacity:1;
  920. -webkit-transition: all .7s ease;
  921. -moz-transition: all .7s ease;
  922. -o-transition: all .7s ease;
  923. transition: all .7s ease;
  924. }
  925. #link5 a{
  926. padding-right:8px;
  927. padding-left:8px;
  928. padding-top:7px;
  929. padding-bottom:0px;
  930. background:{color:navi};
  931. border:3px double #fff;
  932.  
  933. -webkit-transition: all .8s ease;
  934. -moz-transition: all .8s ease;
  935. -o-transition: all .8s ease;
  936. transition: all .8s ease;
  937. }
  938. #quote2{
  939. width:260px;
  940. height:60px;
  941. text-align:center;
  942. margin-top:-25px;
  943. margin-left:-5px;
  944. font-family:handy;
  945. font-size:8px;
  946. opacity:0.0;
  947. line-height:10px;
  948. color:{color:blogtitle};
  949. transition: all 0.5s ease-out;
  950. -o-transition-transition: all 0.5s ease-out;
  951. -webkit-transition: all 0.5s ease-out;
  952. -moz-transition: all 0.5s ease-out;
  953. }
  954.  
  955. #sidebar:hover #quote2{
  956. opacity:1;
  957. transition: all 0.5s ease-out;
  958. -o-transition-transition: all 0.5s ease-out;
  959. -webkit-transition: all 0.5s ease-out;
  960. -moz-transition: all 0.5s ease-out;
  961. }
  962.  
  963. #rad{
  964. opacity:0;
  965. margin-top:-10px;
  966. transition: all 0.5s ease-out;
  967. -o-transition-transition: all 0.5s ease-out;
  968. -webkit-transition: all 0.5s ease-out;
  969. -moz-transition: all 0.5s ease-out;
  970. }
  971. #sidebar:hover #rad{
  972. opacity:1;
  973. transition: all 0.5s ease-out;
  974. -o-transition-transition: all 0.5s ease-out;
  975. -webkit-transition: all 0.5s ease-out;
  976. -moz-transition: all 0.5s ease-out;
  977. } #cred{
  978. width:auto;
  979. position:fixed;
  980. bottom:75px;
  981. left:0px;
  982. -webkit-transition: all .7s ease;
  983. -moz-transition: all .7s ease;
  984. -o-transition: all .7s ease;
  985. transition: all .7s ease;
  986. }
  987. #cred2{
  988. font-size:26px;
  989. font-family:arial;
  990. line-height:16px;
  991. text-align:center;
  992. height:15px;
  993. margin-top:33px;
  994. width:15px;
  995. padding:5px;
  996. padding-right:10px;
  997. background:#ffffff;
  998. margin-left:0px;
  999. position:fixed;
  1000. -webkit-transition: all .7s ease;
  1001. -moz-transition: all .7s ease;
  1002. -o-transition: all .7s ease;
  1003. transition: all .7s ease;
  1004. border:1px solid #aaa;
  1005. color:#fff;
  1006. background-image:url(http://media.tumblr.com/e608d1b986d6f93305ca16666d9c7709/tumblr_inline_mva7hw8Bx91qjbhq0.jpg);
  1007. }
  1008.  
  1009. #cred3{
  1010. text-align:center;
  1011. width:110px;
  1012. font-size:11px;
  1013. background:#ffffff;
  1014. height:5px;
  1015. padding-top:10px;
  1016. padding-bottom:10px;
  1017. font-family:calibri;
  1018. text-transform:uppercase;
  1019. margin-left:-110px;
  1020. margin-top:33px;
  1021. position:fixed;
  1022. -webkit-transition: all .7s ease;
  1023. -moz-transition: all .7s ease;
  1024. -o-transition: all .7s ease;
  1025. transition: all .7s ease;
  1026. border:1px solid #aaa;
  1027. line-height:5px;
  1028. color:#fff;
  1029. background-image:url(http://media.tumblr.com/e608d1b986d6f93305ca16666d9c7709/tumblr_inline_mva7hw8Bx91qjbhq0.jpg);
  1030. }
  1031.  
  1032. #cred:hover #cred3{
  1033. margin-left:30px;
  1034. }
  1035. #cred3:hover{
  1036.  
  1037.  
  1038. -webkit-transition: all .7s ease;
  1039. -moz-transition: all .7s ease;
  1040. -o-transition: all .7s ease;
  1041. transition: all .7s ease;
  1042. }
  1043. @font-face { font-family: "handy"; src: url('http://static.tumblr.com/yqxw8ss/qOClwq07v/handy00.ttf'); }
  1044. @font-face {font-family:Pea Katrina; src: url(http://static.tumblr.com/9wzbixa/Qgwmkun3g/peakatrina.ttf);} @font-face {font-family:"Aderyn"; src:url('http://static.tumblr.com/9wzbixa/Qnqm26qzk/dk_aderyn_0.ttf');}
  1045. @font-face { font-family: 'ronda'; src: url('http://static.tumblr.com/rmj06l2/kcLlo1q2y/pf_ronda_seven.ttf'); }
  1046. @font-face{font-family: "wow"; src:url('http://static.tumblr.com/9wzbixa/Cf3mj2g0f/basicl.ttf');}
  1047. @font-face { font-family: "pee"; src: url('http://static.tumblr.com/4yxykdm/wmVlrea61/king_cool_kc_1_.ttf'); }
  1048. @font-face { font-family: "lol"; src: url('http://static.tumblr.com/hcfbjje/sfRlpm8t0/starsfromoureyes.ttf'); }
  1049.  
  1050.  
  1051.  
  1052. @font-face { font-family: penus; src: url('http://static.tumblr.com/vtg00tr/F5imr15mo/asimplelife.ttf'); }
  1053.  
  1054. @font-face { font-family: "paulpan"; src: url('http://static.tumblr.com/4yxykdm/Ncwlrfhzq/paulpan_.ttf'); }
  1055.  
  1056. @font-face { font-family: "dixel"; src: url('http://static.tumblr.com/jdjsstr/8ovm78cbb/pf_arma_five_1_.ttf'); }
  1057.  
  1058.  
  1059. /*CUSTOMIZE TITLE OF ENTRIES HERE*/
  1060. .title{
  1061. line-height: 22px;
  1062. color:{color:Title};
  1063. font-weight: normal;
  1064. font-size:19px;
  1065. font-family:paulpan;
  1066.  
  1067. }
  1068.  
  1069.  
  1070. /*CUSTOMIZE PERMALINKS OF TEXT POSTS AND SUCH HERE*/
  1071. .permalink{
  1072. text-transform: normal;
  1073. display: block;
  1074. text-align: right;
  1075. text-decoration: none;
  1076. }
  1077.  
  1078.  
  1079. /*I RECCOMMEND TO NOT TOUCH ANY OF THIS LOLz*/
  1080. #infscr-loading{
  1081. bottom: -70px;
  1082. position: absolute;
  1083. left: 50%;
  1084. margin-left:-8px;
  1085. width:16px;
  1086. height:11px;
  1087. overflow:hidden;
  1088. margin-bottom: 50px;
  1089. }
  1090.  
  1091. #postnotes{
  1092. text-align: justify;}
  1093.  
  1094. #postnotes blockquote{
  1095. border: 0px;}
  1096.  
  1097. blockquote{
  1098. padding:0px 0px 2px 5px;
  1099. margin:0px 0px 2px 10px;
  1100. border-left: 1px dotted #555555;
  1101. }
  1102.  
  1103. blockquote p, ul{
  1104. margin:0px;
  1105. padding:0px;
  1106. }
  1107.  
  1108. a img{border: 0px;}
  1109.  
  1110.  
  1111. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  1112.  
  1113. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  1114. .user_7 .label, .user_8 .label, .user_9 .label {color:{color:text};}
  1115.  
  1116. .notes img{width:10px; position:relative; top:3px;}
  1117. <--ses-->
  1118. small{font-size: 90%;}
  1119.  
  1120. {CustomCSS}
  1121.  
  1122. </style>
  1123.  
  1124. {block:IndexPage}
  1125. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  1126. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  1127.  
  1128. <script type="text/javascript">
  1129. $(window).load(function(){
  1130. var $wall = $('#posts');
  1131. $wall.imagesLoaded(function(){
  1132. $wall.masonry({
  1133. itemSelector: '.entry, .entry_photo',
  1134. isAnimated : false
  1135. });
  1136. });
  1137.  
  1138. $wall.infinitescroll({
  1139. navSelector : '#pagination',
  1140. nextSelector : '#pagination a',
  1141. itemSelector : '.entry, .entry_photo',
  1142. bufferPx : 2000,
  1143. debug : false,
  1144. errorCallback: function() {
  1145. $('#infscr-loading').fadeOut('normal');
  1146. }},
  1147. function( newElements ) {
  1148. var $newElems = $( newElements );
  1149. $newElems.hide();
  1150. $newElems.imagesLoaded(function(){
  1151. $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
  1152. });
  1153. }); $('#posts').show(500);
  1154. });
  1155. </script>
  1156.  
  1157.  
  1158. {/block:IndexPage}
  1159.  
  1160.  
  1161. <title>{title}</title>
  1162.  
  1163. <link rel="shortcut icon" href="{Favicon}" />
  1164. <meta name="viewport" content="width=820" />
  1165. </head>
  1166. <div id="ocehans">
  1167. <center>
  1168. <div id="ocehans1">
  1169. <div style="font-size:8px;">stats</div> <div style="padding-top:1px; text-transform:uppercase; opacity:.9; font-family: calibri; font-size:8px; line-height:10px; text-align:center; color:#b9b9b9;">
  1170. text 1 here
  1171. <br><br>
  1172. </div>
  1173. </div>
  1174.  
  1175. <div id="ocehans2">
  1176. <div style="font-size:8px;">links</div> <div style="padding-top:1px; text-transform:uppercase; opacity:.9; font-family: calibri; font-size:8px; line-height:10px; text-align:center; color:#b9b9b9;">
  1177. text 2 here
  1178.  
  1179. </div></div>
  1180.  
  1181. <div id="ocehans3">
  1182. <div style="font-size:8px;">networks</div> <div style="padding-top:1px; text-transform:uppercase; opacity:.9; font-family: calibri; font-size:8px; line-height:10px; text-align:center; color:#b9b9b9;">
  1183. text 3 here
  1184. <br><br>
  1185. </div>
  1186. </div>
  1187.  
  1188. <div id="ocehans4">
  1189. <div style="font-size:8px;">Read me</div> <div style="padding-top:1px; text-transform:uppercase; opacity:.9; font-family: calibri; font-size:8px; line-height:10px; text-align:center; color:#b9b9b9;">
  1190. text 4 here
  1191. </div></div>
  1192. </div></div></div></div>
  1193. <body>
  1194. <BODY onselectstart="return false;" ondragstart="return false;">
  1195. <div class="wrapper">
  1196. <div class="header">
  1197. </div>
  1198.  
  1199. <div id="cage">
  1200. <div id="center">
  1201. <div id="blogtitle"><span id="bubble">{text:blogtitle}</span></div>
  1202. <div id="topbar"><span id="wipe">{text:quote}</span>
  1203. </div>
  1204. <!--STUFF THAT GOES INTO THE SIDEBAR-->
  1205. <div id="sidebar">
  1206.  
  1207. <center>
  1208. <div id="pic"><img src="{image:sidebar}"></div>
  1209. <div id="desc"><yourname>{text:your name};</yourname>{description}</div>
  1210. <div id="ff"><img src="http://37.media.tumblr.com/90465b3b6a901581274a31b6747db8c3/tumblr_mnig1u59cI1s5jjtzo1_400.gif"></div>
  1211. <div id="links">
  1212. <div class="nav">
  1213. <div id="link1"><a href="/" title="refresh my blog!"></a></div>
  1214. <div id="link2"><a href="{text:link two}" title="{text:link two msg}"></a></div>
  1215. <div id="link3"><a href="{text:link three}" title="{text:link three msg}"></a></div>
  1216. <div id="link4"><a href="{text:link four}" title="{text:link four msg}"></a></div>
  1217.  
  1218. <div id="link5"><a href="{text:link five}" title="{text:link five msg}"></a></div>
  1219. </div>
  1220. </div>
  1221. <div id="quote2">*・゜゚{text:sidebarquote}・゜゚・*</div>
  1222. <div id="rad"><img src="http://media.tumblr.com/tumblr_lmjk6wNC7g1qh6bfb.png"></div>
  1223. </center>
  1224. </div>
  1225.  
  1226. <!------------------------------------->
  1227.  
  1228.  
  1229. <div class="left">
  1230. <div id="posts">
  1231. {block:Posts}
  1232. <div class="entry">
  1233.  
  1234. {block:Text}{block:Title}<span class="title">{Title}</span>{/block:Title}<span class="body">{Body}</span><div class="permalinktext"><div class="text">
  1235. <center> {12Hour}:{Minutes} {AmPm}, {DayOfWeek} with <a href="{permalink}">{notecountwithlabel}</a> </center></div></div>
  1236. {/block:Text}
  1237.  
  1238. {block:Link}<a href="{URL}" class="title">{Name}</a>{block:Description}<div class="body">{Description}</div>{/block:Description} <div class="permalinktext">
  1239. <center> {12Hour}:{Minutes} {AmPm}, {DayOfWeek} with <a href="{permalink}">{notecountwithlabel}</a> </center></div>{block:Link}
  1240.  
  1241. {block:Answer}
  1242.  
  1243. <div style="font-family:Aderyn; font-size:18px;">{Asker}</div>: <div style="line-height:13px; font-family:calibri; font-size:11px; padding:2px; border-bottom:1px dashed #e1e1e1;">{Question}</div>
  1244. <div style="margin-top:8px; margin-bottom:4px; font-family:calibri;font-size: 11px;font-style: none;background: transparent; padding-bottom:5px;">{Answer}</div> <div style="font-family:Aderyn; font-size:18px; line-height:16px;">Love, {text:your name}</div>
  1245. {block:IndexPage}
  1246. <div class="permalinktext"><div class="text">posted {timeago} with <a href="{permalink}">{notecountwithlabel}</a></div></div>
  1247. {/block:IndexPage}
  1248. {/block:Answer}
  1249. {/block:Answer}
  1250.  
  1251. {block:Photo}
  1252. {block:IndexPage}
  1253. <center>
  1254. <div class="perma2">
  1255. <a href="{reblogurl}"> <ul class="LikeButton">
  1256. <li>{ReblogButton color="gray" size=16}</li>
  1257. </ul>
  1258. <ul class="ReblogButton">
  1259. <li>{LikeButton color="gray" size=16}</li>
  1260. </ul></a></div></a>
  1261.  
  1262. <div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  1263. {/block:IndexPage}
  1264. {block:PermalinkPage}
  1265. {LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" style="border-radius:0px;" alt="{PhotoAlt}" width="100%"/></a></div>
  1266.  
  1267. {LinkCloseTag}
  1268. {/block:PermalinkPage}
  1269. {/block:Photo}
  1270.  
  1271. {block:Photoset}
  1272. <center>
  1273. {block:IndexPage}
  1274. <div class="perma2">
  1275. <a href="{reblogurl}"><ul class="LikeButton">
  1276. <li>{ReblogButton color="black" size=16}</li>
  1277. </ul>
  1278. <ul class="ReblogButton">
  1279. <li>{LikeButton color="black" size=16}</li>
  1280. </ul></a></div></a>
  1281. <div style="width: 100%;">{Photoset-250}</div>
  1282. {/block:IndexPage}
  1283. </center>
  1284. <center>{block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}</center>
  1285. {/block:Photoset}
  1286.  
  1287. {block:Quote}<span class="title">"{Quote}"</span> — {block:Source}<b>{Source}</b>{/block:Source}<br><div class="permalinktext">
  1288. </a></div>{/block:Quote}
  1289.  
  1290. {block:Chat}{block:Title}<span class="title">{Title}</span>{/block:Title}
  1291. <ul class="chat">
  1292. {block:Lines}
  1293. <li class="user_{UserNumber}">
  1294. {block:Label}
  1295. <b><span class="label">{Label}</span></b>
  1296. {/block:Label}
  1297.  
  1298. {Line}
  1299. </li>
  1300. {/block:Lines}
  1301. <div class="permalinktext">
  1302. <center> <div style="background-color:#fcfcfc;border:1px solid #eee; border-radius:5px;padding:7px; font-family:calibri;font-size:10px;"><div style="background:{color:perma buttons}; font-size:9px; font-family:calibri; padding:3px;">{12Hour}:{Minutes} {AmPm}, {DayOfWeek} with <a href="{permalink}">{notecountwithlabel}</a></div></div> </center></div>
  1303. {/block:Chat}
  1304.  
  1305. {block:Audio}
  1306. {block:AlbumArt}<div class="artcover">
  1307. <img src="{AlbumArtURL}"></div>{/block:AlbumArt}
  1308. <div class="player"><div class="audioplayer">{AudioPlayerWhite}</div></div>
  1309. <div class="audioinfo"><div class="i"><i>Song Title: </i><span{block:TrackName} style="display: none;"{block:TrackName}>Unknown</span>{block:TrackName}{TrackName}{/block:TrackName}</div><div class="i"><i>Artist: </i><span{block:Artist} style="display: none;"{block:Artist}>Unknown</span> {block:Artist}{Artist}{/block:Artist}</div><div class="i"><i>Album: </i><span{block:Album} style="display: none;"{block:Album}>Unknown</span>{block:Album}{Album}{/block:Album}</div></div>
  1310. {block:IndexPage}
  1311. <div style="background-color:#fcfcfc;border:1px solid #eee; border-radius:5px;padding:7px; font-family:calibri;font-size:10px;"><div class="permalinktext">posted {timeago} with <a href="{permalink}">{notecountwithlabel}</a></div></div>
  1312. {/block:IndexPage}
  1313. {/block:Audio}
  1314.  
  1315.  
  1316.  
  1317. {block:Video}<center>
  1318. <div style="padding-top:0px; padding-bottom:2px; -webkit-filter:grayscale(100%);">
  1319. {Video-250}</div>
  1320. {block:IndexPage}
  1321. <div class="permalinktext">posted {timeago} with <a href="{permalink}">{notecountwithlabel}</a></div>
  1322. {/block:IndexPage}
  1323. {block:Video}
  1324.  
  1325. {block:PostNotes}<div align="left">{caption}</div>
  1326. <center>
  1327.  
  1328. {block:NoteCount}{NoteCountWithLabel}<br>{/block:NoteCount}
  1329.  
  1330. {block:HasTags}
  1331. tags: {block:Tags}<a href="{TagURL}">{Tag}. </a>{/block:Tags}<br> {/block:HasTags}
  1332. {block:RebloggedFrom}
  1333. reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
  1334. posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>
  1335.  
  1336. {/block:RebloggedFrom}
  1337. </center></span>
  1338. <br>
  1339. <div id="postnotes">{PostNotes}</div><br>
  1340.  
  1341. <center>{block:ContentSource}
  1342. <br><a href="{SourceURL}">
  1343. {lang:Source}:
  1344. {block:SourceLogo}
  1345. <img src="{BlackLogoURL}" width="{LogoWidth}"
  1346. height="{LogoHeight}" alt="{SourceTitle}" />
  1347. {/block:SourceLogo}
  1348. {block:NoSourceLogo}
  1349. {SourceLink}
  1350. {/block:NoSourceLogo}
  1351. </a>
  1352. {/block:ContentSource}</center>
  1353.  
  1354. {/block:PostNotes}
  1355. </div>
  1356. {/block:Posts}
  1357. </div></div>
  1358.  
  1359. {block:IndexPage}
  1360. {block:Pagination}
  1361. <div id="pagination">
  1362. {block:NextPage}
  1363. <a id="nextPage" href="{NextPage}"></a>
  1364. {/block:NextPage}
  1365. {block:PreviousPage}
  1366. <a href="{PreviousPage}"></a>
  1367. {/block:PreviousPage}
  1368. </div>
  1369. {/block:Pagination}
  1370. {/block:IndexPage}
  1371. </body>
  1372. <div id="cred"><div id="cred2">☠</div>
  1373. <div id="cred3">
  1374. <a href="http://lootinq.tumblr.com/" title="theme credit">Theme by Liqhtful ☢</a>
  1375. </div></div>
  1376. </html>
Add Comment
Please, Sign In to add comment