Advertisement
Kimmyvp123

Theme 10

Sep 21st, 2013
613
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 35.64 KB | None | 0 0
  1. <!--
  2. Theme BY PREACHLARCEL!! WELL I GOT THE IDEA FROM SOMEONE BUT IDR WHO :'( SO FULL CREDIT GOES TO HER!!!! SORRY AGAIN
  3. -->
  4.  
  5. <html lang="en">
  6. <!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  7. <html xmlns="http://www.w3.org/1999/xhtml">
  8.  
  9. <SCRIPT type="text/javascript">
  10. /*
  11. Snow Fall 1 - no images - Java Script
  12. Visit http://rainbow.arch.scriptmania.com/scripts/
  13. for this script and many more
  14. */
  15.  
  16. // Set the number of snowflakes (more than 30 - 40 not recommended)
  17. var snowmax=35
  18.  
  19. // Set the colors for the snow. Add as many colors as you like
  20. var snowcolor=new Array("#aaa","#fce8d5", "#fff")
  21.  
  22. // Set the fonts, that create the snowflakes. Add as many fonts as you like
  23. var snowtype=new Array("Times","Arial","Times","Verdana")
  24.  
  25. // Set the letter that creates your snowflake (recommended: * )
  26. var snowletter="*"
  27.  
  28. // Set the speed of sinking (recommended values range from 0.3 to 2)
  29. var sinkspeed=0.6
  30.  
  31. // Set the maximum-size of your snowflakes
  32. var snowmaxsize=15
  33.  
  34. // Set the minimal-size of your snowflakes
  35. var snowminsize=8
  36.  
  37. // Set the snowing-zone
  38. // Set 1 for all-over-snowing, set 2 for left-side-snowing
  39. // Set 3 for center-snowing, set 4 for right-side-snowing
  40. var snowingzone=1
  41.  
  42. ///////////////////////////////////////////////////////////////////////////
  43. // CONFIGURATION ENDS HERE
  44. ///////////////////////////////////////////////////////////////////////////
  45.  
  46.  
  47. // Do not edit below this line
  48. var snow=new Array()
  49. var marginbottom
  50. var marginright
  51. var timer
  52. var i_snow=0
  53. var x_mv=new Array();
  54. var crds=new Array();
  55. var lftrght=new Array();
  56. var browserinfos=navigator.userAgent
  57. var ie5=document.all&&document.getElementById&&!browserinfos.match(/Opera/)
  58. var ns6=document.getElementById&&!document.all
  59. var opera=browserinfos.match(/Opera/)
  60. var browserok=ie5||ns6||opera
  61.  
  62. function randommaker(range) {
  63. rand=Math.floor(range*Math.random())
  64. return rand
  65. }
  66.  
  67. function initsnow() {
  68. if (ie5 || opera) {
  69. marginbottom = document.body.scrollHeight
  70. marginright = document.body.clientWidth-15
  71. }
  72. else if (ns6) {
  73. marginbottom = document.body.scrollHeight
  74. marginright = window.innerWidth-15
  75. }
  76. var snowsizerange=snowmaxsize-snowminsize
  77. for (i=0;i<=snowmax;i++) {
  78. crds[i] = 0;
  79. lftrght[i] = Math.random()*15;
  80. x_mv[i] = 0.03 + Math.random()/10;
  81. snow[i]=document.getElementById("s"+i)
  82. snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)]
  83. snow[i].size=randommaker(snowsizerange)+snowminsize
  84. snow[i].style.fontSize=snow[i].size+'px';
  85. snow[i].style.color=snowcolor[randommaker(snowcolor.length)]
  86. snow[i].style.zIndex=1000
  87. snow[i].sink=sinkspeed*snow[i].size/5
  88. if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)}
  89. if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)}
  90. if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4}
  91. if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2}
  92. snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size)
  93. snow[i].style.left=snow[i].posx+'px';
  94. snow[i].style.top=snow[i].posy+'px';
  95. }
  96. movesnow()
  97. }
  98.  
  99. function movesnow() {
  100. for (i=0;i<=snowmax;i++) {
  101. crds[i] += x_mv[i];
  102. snow[i].posy+=snow[i].sink
  103. snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i])+'px';
  104. snow[i].style.top=snow[i].posy+'px';
  105.  
  106. if (snow[i].posy>=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)>(marginright-3*lftrght[i])){
  107. if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)}
  108. if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)}
  109. if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4}
  110. if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2}
  111. snow[i].posy=0
  112. }
  113. }
  114. var timer=setTimeout("movesnow()",50)
  115. }
  116.  
  117. for (i=0;i<=snowmax;i++) {
  118. document.write("<span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'>"+snowletter+"</span>")
  119. }
  120. if (browserok) {
  121. window.onload=initsnow
  122. }
  123.  
  124. </SCRIPT>
  125.  
  126.  
  127. <html lang="en">
  128. <!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN"
  129. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  130. <html xmlns="http://www.w3.org/1999/xhtml">
  131. <script type="text/javascript"
  132. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  133.  
  134. <head>
  135.  
  136.  
  137. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  138. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  139. <script>
  140. (function($){
  141. $(document).ready(function(){
  142. $("a[title]").style_my_tooltips({
  143. tip_follows_cursor:true,
  144. tip_delay_time:90,
  145. tip_fade_speed:600,
  146. attribute:"title"
  147. });
  148. });
  149. })(jQuery);
  150. </script>
  151.  
  152.  
  153. <script language=JavaScript>
  154. <!--
  155.  
  156. //Disable right mouse click Script
  157. //By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
  158. //For full source code, visit http://www.dynamicdrive.com
  159.  
  160. var message="Function Disabled!";
  161.  
  162. ///////////////////////////////////
  163. function clickIE4(){
  164. if (event.button==2){
  165. alert(message);
  166. return false;
  167. }
  168. }
  169.  
  170. function clickNS4(e){
  171. if (document.layers||document.getElementById&&!document.all){
  172. if (e.which==2||e.which==3){
  173. alert(message);
  174. return false;
  175. }
  176. }
  177. }
  178.  
  179. if (document.layers){
  180. document.captureEvents(Event.MOUSEDOWN);
  181. document.onmousedown=clickNS4;
  182. }
  183. else if (document.all&&!document.getElementById){
  184. document.onmousedown=clickIE4;
  185. }
  186.  
  187. document.oncontextmenu=new Function(";return false")
  188.  
  189. // -->
  190. </script>
  191.  
  192.  
  193. <!-- DEFAULT VARIABLES -->
  194. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  195. <meta name="color:background" content="#f8f8f8"/>
  196. <meta name="color:text" content="#000"/>
  197. <meta name="color:title" content="#b9acaf"/>
  198. <meta name="color:link" content="#030303"/>
  199. <meta name="color:hover" content="#000"/>
  200. <meta name="color:scrollbar" content="#eee"/>
  201. <meta name="color:border" content="#e4e4e4"/>
  202. <meta name="color:title one" content="#f5e0e5"/>
  203. <meta name="color:title two" content="#d1cece"/>
  204.  
  205. <meta name="image:sidebar" content=""/>
  206. <meta name="image:sidebar bg" content=""/>
  207. <meta name="image:pillar" content="http://i45.tinypic.com/123qwy8.png"/>
  208. <meta name="image:sidepic" content="http://i48.tinypic.com/20sjgi9.gif"/>
  209. <meta name="image:background" content="0"/>
  210.  
  211. <meta name="text:title one" content="shine bright"/>
  212. <meta name="text:title two" content="like a diamond"/>
  213. <meta name="text:Link One Title" content="return" />
  214. <meta name="text:Link One" content="" />
  215. <meta name="text:Link Two Title" content="message" />
  216. <meta name="text:Link Two" content="" />
  217. <meta name="text:Link Three Title" content="etcetera" />
  218. <meta name="text:Link Three" content="" />
  219. <meta name="text:Link Four Title" content="more" />
  220. <meta name="text:Link Four" content="" />
  221. <meta name="text:yourname" content="BOB" />
  222. <meta name="text:box1" content="Networks" />
  223. <meta name="text:box2" content="Chicken" />
  224. <meta name="text:box3" content="Updates" />
  225. <meta name="text:box1url" content="Networks" />
  226. <meta name="text:box2url" content="Networks" />
  227. <meta name="text:box3url" content="Networks" />
  228. <meta name="text:quote" content="" />
  229.  
  230.  
  231. <style type="text/css">
  232.  
  233.  
  234. /*--Making IE6 Understand Fixed Positioning--*/
  235. *html #fade {
  236. position: absolute;
  237. }
  238. *html .popup_block {
  239. position: absolute;
  240. }
  241.  
  242. #s-m-t-tooltip {
  243. max-width:300px;
  244. padding:2px 2px 2px 2px;
  245. margin:20px 0px 0px 20px;
  246. background: #fff; /* change the background color */
  247. border:1px solid #eee; /* change the border color */
  248. border-right:4px solid #fcd2a9;
  249. border-left:0px solid #c0a6b9;
  250. font-family:pewp; /* change the font */
  251. font-size:10px; /* change the font size */
  252. letter-spacing:1px; /* change the letter spacing */
  253. text-transform:uppercase; /* can be uppercase, lowercase, none*/
  254. color:{color:hoverlink textcolor}; /* change the text color */
  255. z-index:999999;
  256. -moz-box-shadow:1px 1px 2px 1px #aaa;
  257. -webkit-box-shadow:1px 1px 2px 1px #aaa;
  258. box-shadow:1px 1px 2px 1px #aaa;
  259. }
  260.  
  261. ::-webkit-scrollbar-thumb{
  262. background-color: {color:scrollbar};
  263. border: 2px solid #ffffff;
  264. height:5px;
  265. -moz-border-radius: 20px;
  266. border-radius: 20px;
  267. }
  268.  
  269. ::-webkit-scrollbar {
  270. height:5px;
  271. width:9px;
  272. background-color: #aaaaaa;
  273. border: 4px solid #fff;
  274. }
  275.  
  276.  
  277. {block:iftinycursor}body, a, a:hover {cursor:
  278. url(http://cur.cursors-4u.net/others/oth-6/oth589.cur),
  279. progress;}{/block:iftinycursor}
  280.  
  281. iframe#tumblr_controls {right:3px !important; position: fixed
  282. !important;-webkit-transition: opacity 0.7s linear;opacity:
  283. 0.2;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s
  284. ease-out;transition: all 0.8s ease-out;}
  285.  
  286. iframe#tumblr_controls:hover{-webkit-transition: opacity 0.7s
  287. linear;opacity: 1;-webkit-transition: all 0.4s
  288. ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s
  289. ease-out;}
  290.  
  291. @font-face {
  292. font-family: "Ronda";
  293. src: url('http://static.tumblr.com/rmj06l2/kcLlo1q2y/pf_ronda_seven.ttf');
  294. }
  295.  
  296. @font-face {
  297. font-family: "Silkscreen";
  298. src: url('http://static.tumblr.com/1kdckk4/9yjlolf0w/slkscr.ttf');
  299. }
  300.  
  301. @font-face {
  302. font-family: "Existance";
  303. src: url('http://static.tumblr.com/u37ad6e/OCIm7s3av/existence-unicaselight.otf');
  304. }
  305.  
  306. @font-face {
  307. font-family: "Dixel";
  308. src: url('http://static.tumblr.com/jdjsstr/8ovm78cbb/pf_arma_five_1_.ttf');
  309. }
  310.  
  311. @font-face {
  312. font-family: "Lane Narrow";
  313. src: url('http://static.tumblr.com/anvbwtn/Qt4m9sybs/lanenar_.ttf');
  314. }
  315.  
  316. @font-face {
  317. font-family: "Arsenale White";
  318. src: url('http://static.tumblr.com/5fd89aw/H0ilkmgoh/arsenale_white.ttf'); }
  319.  
  320. @font-face {font-family: "Tall Films"; src: url('http://static.tumblr.com/w1f0ilq/4m9lyy51c/tall_film.ttf');}
  321.  
  322. .wrapper{
  323. margin: 0px auto;
  324. margin-left: 60px;
  325. width: 802px;
  326. }
  327.  
  328. .header{
  329. float: left;
  330. width: 100%;
  331. }
  332.  
  333. .left{
  334. float: left;
  335. margin-right: 20px;
  336. width: 802;
  337. }
  338.  
  339. .right{
  340. float: right;
  341. width: 200px;
  342. background-color: #fff;
  343. }
  344.  
  345. body, a, a:hover {cursor:
  346. url('http://img69.imageshack.us/img69/7673/cursorw.png'), progress; }
  347.  
  348. body {
  349. margin:0px;
  350. background-color: {color:Background};
  351. background-image:url({image:Background});
  352. background-attachment: fixed;
  353. background-repeat: repeat;}
  354. body, div, p, textarea, submit, input{
  355. font-family: "Dixel";
  356. font-size: 8px;
  357. line-height:11px;
  358. letter-spacing:1px;
  359. color:{color:Text};
  360. }
  361.  
  362. ::-webkit-scrollbar-thumb{
  363. background-color: {color:scrollbar};
  364. border: 2px solid #ffffff;
  365. height:5px;
  366. -moz-border-radius: 20px;
  367. border-radius: 20px;
  368. }
  369.  
  370. ::-webkit-scrollbar {
  371. height:5px;
  372. width:9px;
  373. background-color: #aaaaaa;
  374. border: 4px solid #fff;
  375. }
  376.  
  377.  
  378. p {
  379. margin:0px;
  380. margin-top:0px;
  381. }
  382.  
  383. a:link, a:active, a:visited{
  384. text-decoration: none;
  385. -webkit-transition: color 0.3s ease-out;
  386. -moz-transition: color 0.3s ease-out;
  387. transition: color 0.3s ease-out;
  388. color: {color:Link};
  389. }
  390.  
  391. a:hover {
  392. : -webkit-transition-duration: 1.0s;
  393. color:{color:Hover};
  394. text-decoration:underline;
  395. }
  396.  
  397. @font-face { font-family: "redensek"; src: url('http://static.tumblr.com/4yxykdm/ICUlrfl4t/redensek_1_.ttf'); }
  398. @font-face { font-family: "silkscreen"; src: url('http://static.tumblr.com/1kdckk4/9yjlolf0w/slkscr.ttf'); }
  399.  
  400. .duck{
  401. position: fixed !important;
  402. z-index: 99;
  403. font-family: arial;
  404. line-height:10px;
  405. font-size: 1px;
  406. padding: 3px;
  407. bottom:5px;
  408. left:1325px;
  409. height:15px;
  410. width:18px;
  411. border-radius:10px;
  412. border:1px solid {color:borders};
  413. background:white;
  414. }
  415.  
  416. div#sidebar {
  417. position:fixed !important;
  418. background-image:url({image:sidepic});
  419. opacity:1;
  420. border:2px solid {color:border};
  421. padding:5px;
  422. width: 195px;
  423. padding-bottom:54px;
  424. height: 215px;
  425. font-family: "Dixel";
  426. font-size:8px;
  427. line-height:8px;
  428. margin-left:0px;
  429. margin-top:140px;
  430. -moz-box-shadow: 0 0 30px 5px #fff;
  431. -webkit-box-shadow: 0 0 30px 5px #fff;
  432. box-shadow: 0 0 50px 2px #fff;
  433. -webkit-transition: all 0.9s ease-in-out;
  434. -moz-transition: all 0.9s ease-in-out;
  435. -o-transition: all 0.9s ease-in-out;
  436. -ms-transition: all 0.9s ease-in-out;
  437. transition: all 0.9s ease-in-out;
  438. }
  439.  
  440. @font-face { font-family: "caviardreams"; src: url('http://static.tumblr.com/4yxykdm/xXTlrecqr/caviardreams.ttf'); }
  441. @font-face { font-family: "lainie"; src: url('http://static.tumblr.com/oetadgc/Uialyjfaa/laine.ttf'); }
  442.  
  443. #quote{
  444. width:990px;
  445. height:25px;
  446. left:280px;
  447. font-size:30px;
  448. font-family:lainie;
  449. text-align:center;
  450. margin-top:-350px;
  451. line-height:30px;
  452. z-index:9999;
  453. text-shadow:0px 0px 8px {color:border};
  454. position:fixed;
  455. background-color:#fff;
  456. -webkit-transition: all .7s ease-in-out;
  457. -moz-transition: all .7s ease-in-out;
  458. -o-transition: all .7s ease-in-out;
  459. -webkit-animation: fadeInUp 2s;
  460. -moz-animation: fadeInUp 2s;
  461. -ms-animation: fadeInUp 2s;
  462. }
  463.  
  464. #quote2{
  465. width:1000px;
  466. height:40px;
  467. left:275px;
  468. margin-top:-357px;
  469. z-index:9;
  470. position:fixed;
  471. background:url('http://i45.tinypic.com/123qwy8.png');
  472. -webkit-transition: all .7s ease-in-out;
  473. -moz-transition: all .7s ease-in-out;
  474. -o-transition: all .7s ease-in-out;
  475. -webkit-animation: fadeInUp 2s;
  476. -moz-animation: fadeInUp 2s;
  477. -ms-animation: fadeInUp 2s;
  478. }
  479.  
  480.  
  481.  
  482. .sidebarbg4{
  483. position:fixed;
  484. margin-left:1206px;
  485. top: 0px;
  486. border-bottom-right-radius:15px;
  487. border-bottom-left-radius:15px;
  488. background-color:{color:backgrd};
  489. background-image:url({image:sidebar bg});
  490. height:120%;
  491. border-right: 5px solid #000;
  492. opacity:1;
  493. width:10px;
  494. border-bottom:1px solid #fff;
  495. border-left: 1px solid #fff;
  496. border-right: 1px solid #fff;
  497. }
  498.  
  499. .line{
  500. position:fixed;
  501. margin-left:180px;
  502. top: 422px;
  503. border-bottom-right-radius:15px;
  504. border-bottom-left-radius:15px;
  505. background-color:#ddd;
  506. height:2%;
  507. border-right: 5px solid #eee;
  508. opacity:0;
  509. z-index:9;
  510. width:5px;
  511. border-bottom:1px solid #fff;
  512. border-left: 1px solid #fff;
  513. border-right: 1px solid #fff;
  514. -webkit-transition: all 0.9s ease-in-out;
  515. -moz-transition: all 0.9s ease-in-out;
  516. -o-transition: all 0.9s ease-in-out;
  517. -ms-transition: all 0.9s ease-in-out;
  518. transition: all 0.9s ease-in-out;
  519. }
  520.  
  521. #sidebar:hover .line{
  522. height:18%;
  523. opacity:1;
  524. -webkit-transition: all 0.9s ease-in-out;
  525. -moz-transition: all 0.9s ease-in-out;
  526. -o-transition: all 0.9s ease-in-out;
  527. -ms-transition: all 0.9s ease-in-out;
  528. transition: all 0.9s ease-in-out;
  529. }
  530.  
  531. .line2{
  532. position:fixed;
  533. margin-left:10px;
  534. top: 422px;
  535. border-bottom-right-radius:15px;
  536. border-bottom-left-radius:15px;
  537. background-color:#ddd;
  538. height:2%;
  539. border-right: 5px solid #000;
  540. opacity:0;
  541. width:5px;
  542. border-bottom:1px solid #fff;
  543. border-left: 1px solid #fff;
  544. border-right: 1px solid #fff;
  545. -webkit-transition: all 0.9s ease-in-out;
  546. -moz-transition: all 0.9s ease-in-out;
  547. -o-transition: all 0.9s ease-in-out;
  548. -ms-transition: all 0.9s ease-in-out;
  549. transition: all 0.9s ease-in-out;
  550. }
  551.  
  552. #sidebar:hover .line2{
  553. height:18%;
  554. opacity:1;
  555. -webkit-transition: all 0.9s ease-in-out;
  556. -moz-transition: all 0.9s ease-in-out;
  557. -o-transition: all 0.9s ease-in-out;
  558. -ms-transition: all 0.9s ease-in-out;
  559. transition: all 0.9s ease-in-out;
  560. }
  561.  
  562. #sidebar img{
  563. background:white;
  564. margin-left:-2px;
  565. border:1px dotted #ddd;
  566. border-bottom:1px solid #ddd;
  567. border-top:1px solid #ddd;
  568. padding:4px;
  569. width: 188px;
  570. height: 212px;
  571. opacity:1;
  572. z-index:999;
  573. margin-bottom:-11px;
  574. transition: all 0.5s ease-out;
  575. -o-transition-transition: all 0.5s ease-out;
  576. -webkit-transition: all 0.5s ease-out;
  577. -moz-transition: all 0.5s ease-out;
  578. }
  579.  
  580. #sidebar:hover img{
  581. opacity:0;
  582. width:0px;
  583. margin-left:90px;
  584. transition: all 0.5s ease-out;
  585. -o-transition-transition: all 0.5s ease-out;
  586. -webkit-transition: all 0.5s ease-out;
  587. -moz-transition: all 0.5s ease-out;
  588. }
  589.  
  590. @font-face { font-family: "halohandletter"; src: url('http://static.tumblr.com/loouiuu/Ttaloide6/halohandletter.ttf'); }
  591.  
  592. #blogtitle{
  593. position:fixed;
  594. background:#fff;
  595. padding:5px;
  596. width:216px;
  597. height:38px;
  598. font-family:"Tall Films";
  599. text-transform:uppercase;
  600. letter-spacing:0px;
  601. font-size:64px;
  602. line-height:44px;
  603. text-shadow: -2px -2px 1px {color:border};
  604. border-top:2px solid #eee;
  605. border-bottom:2px solid #eee;
  606. margin-top:10px;
  607. margin-left:-15px;
  608. color:{color:title two};
  609. text-align:center;
  610. z-index:999999999999999999;
  611. opacity:10;
  612. -webkit-transition: all 0.9s ease-in-out;
  613. -moz-transition: all 0.9s ease-in-out;
  614. -o-transition: all 0.9s ease-in-out;
  615. -ms-transition: all 0.9s ease-in-out;
  616. transition: all 0.9s ease-in-out;
  617. }
  618.  
  619. #sidebar:hover #blogtitle{
  620. width:195px;
  621. margin-left:-5px;
  622. margin-top:-124px;
  623. opacity:10;
  624. -webkit-transition: all 0.9s ease-in-out;
  625. -moz-transition: all 0.9s ease-in-out;
  626. -o-transition: all 0.9s ease-in-out;
  627. -ms-transition: all 0.9s ease-in-out;
  628. transition: all 0.9s ease-in-out;
  629. }
  630.  
  631. @font-face { font-family: "marker"; src: url('http://themes.googleusercontent.com/static/fonts/permanentmarker/v0/9vYsg5VgPHKK8SXYbf3sMupm9E4gBdgiUiSJePew_SQ.woff'); }
  632. @font-face {font-family:"Komika Axis"; src: url('http://static.tumblr.com/9wzbixa/USGm0c3z9/komikax.ttf');}
  633. @font-face { font-family: "blackswan"; src: url('http://static.tumblr.com/q54tzar/7POm34eyl/a_s_black_swan_3_.ttf'); }
  634.  
  635.  
  636. #kool{
  637. position:fixed;
  638. background:transparent;
  639. padding:0px;
  640. width:138px;
  641. height:38px;
  642. font-family:blackswan;
  643. text-transform:;
  644. text-decoration:italic;
  645. letter-spacing:0px;
  646. font-size:55px;
  647. line-height:44px;
  648. text-shadow: -2px -2px 1px {color:border};
  649. border-top:0px solid #eee;
  650. border-bottom:0px solid #eee;
  651. margin-top:160px;
  652. margin-left:50px;
  653. color:#9fa0a2;
  654. text-align:center;
  655. z-index:999999;
  656. opacity:10;
  657. -webkit-transition: all 0.9s ease-in-out;
  658. -moz-transition: all 0.9s ease-in-out;
  659. -o-transition: all 0.9s ease-in-out;
  660. -ms-transition: all 0.9s ease-in-out;
  661. transition: all 0.9s ease-in-out;
  662. transform: rotate(-30deg);
  663. -ms-transform: rotate(-30deg);
  664. -webkit-transform: rotate(-30deg);
  665. -o-transform: rotate(-30deg);
  666. -moz-transform: rotate(-30deg);
  667. }
  668.  
  669. #sidebar:hover #kool{
  670. width:138px;
  671. opacity:0;
  672. -webkit-transition: all 0.9s ease-in-out;
  673. -moz-transition: all 0.9s ease-in-out;
  674. -o-transition: all 0.9s ease-in-out;
  675. -ms-transition: all 0.9s ease-in-out;
  676. transition: all 0.9s ease-in-out;
  677. }
  678.  
  679. #sidebar:hover .undertitle{
  680. opacity:0;
  681. margin-left:-90px;
  682. margin-top:-200px;
  683. -webkit-transition: all 0.9s ease-in-out;
  684. -moz-transition: all 0.9s ease-in-out;
  685. -o-transition: all 0.9s ease-in-out;
  686. -ms-transition: all 0.9s ease-in-out;
  687. transition: all 0.9s ease-in-out;
  688. }
  689.  
  690. .undertitle{
  691. position:fixed;
  692. background:#fff;
  693. padding:5px;
  694. width:216px;
  695. height:38px;
  696. font-family:"Tall Films";
  697. text-transform:uppercase;
  698. letter-spacing:0px;
  699. font-size:64px;
  700. line-height:44px;
  701. text-shadow: -2px -2px 1px {color:border};
  702. border-top:2px solid #eee;
  703. border-bottom:2px solid #eee;
  704. margin-top:-280px;
  705. margin-left:-5px;
  706. color:{color:title two};
  707. text-align:center;
  708. z-index:999999999999999999;
  709. opacity:1;
  710. -webkit-transition: all 0.9s ease-in-out;
  711. -moz-transition: all 0.9s ease-in-out;
  712. -o-transition: all 0.9s ease-in-out;
  713. -ms-transition: all 0.9s ease-in-out;
  714. transition: all 0.9s ease-in-out;
  715. }
  716.  
  717. #desc{
  718. position:fixed;
  719. border:1px dotted #ddd;
  720. border-top:1px solid #ddd;
  721. border-bottom:1px solid #ddd;
  722. padding:4px;
  723. width:141px;
  724. height:30px;
  725. background:white;
  726. font-family:"Calibri";
  727. font-size:10px;
  728. letter-spacing:0px;
  729. margin-top:-97px;
  730. margin-left:20px;
  731. margin-right:130px;
  732. letter-spacing:0px;
  733. line-height:10px;
  734. z-index:9999999;
  735. opacity:0;
  736. -webkit-transition: all 0.9s ease-in-out;
  737. -moz-transition: all 0.9s ease-in-out;
  738. -o-transition: all 0.9s ease-in-out;
  739. -ms-transition: all 0.9s ease-in-out;
  740. transition: all 0.9s ease-in-out;
  741. }
  742.  
  743. #sidebar:hover #desc{
  744. margin-top:-60px;
  745. width:196px;
  746. height:31px;
  747. margin-left:-5px;
  748. opacity:10;
  749. -webkit-transition: all 0.9s ease-in-out;
  750. -moz-transition: all 0.9s ease-in-out;
  751. -o-transition: all 0.9s ease-in-out;
  752. -ms-transition: all 0.9s ease-in-out;
  753. transition: all 0.9s ease-in-out;
  754. }
  755.  
  756. #linkbar{
  757. position:fixed;
  758. border:2px solid #eee;
  759. border-left:2px solid {color:border};
  760. border-right:2px solid {color:border};
  761. padding:5px;
  762. width:210px;
  763. height:15px;
  764. background:#fff;
  765. margin-left:-14px;
  766. margin-top:65px;
  767. letter-spacing:0px;
  768. z-index:99999999999;
  769. opacity:0;
  770. -webkit-transition: all 0.9s ease-in-out;
  771. -moz-transition: all 0.9s ease-in-out;
  772. -o-transition: all 0.9s ease-in-out;
  773. -ms-transition: all 0.9s ease-in-out;
  774. transition: all 0.9s ease-in-out;
  775. }
  776.  
  777. #sidebar:hover #linkbar{
  778. opacity:10;
  779. -webkit-transition: all 0.9s ease-in-out;
  780. -moz-transition: all 0.9s ease-in-out;
  781. -o-transition: all 0.9s ease-in-out;
  782. -ms-transition: all 0.9s ease-in-out;
  783. transition: all 0.9s ease-in-out;
  784. }
  785.  
  786. #nets{
  787. position:fixed;
  788. border:2px solid #eee;
  789. border-left:2px solid {color:border} ;
  790. border-right:2px solid {color:border};
  791. padding:5px;
  792. width:180px;
  793. height:15px;
  794. font-size:10px;
  795. background:#fff;
  796. margin-left:2px;
  797. margin-top:61px;
  798. letter-spacing:0px;
  799. z-index:99999999999;
  800. opacity:0;
  801. -webkit-transition: all 0.9s ease-in-out;
  802. -moz-transition: all 0.9s ease-in-out;
  803. -o-transition: all 0.9s ease-in-out;
  804. -ms-transition: all 0.9s ease-in-out;
  805. transition: all 0.9s ease-in-out;
  806. }
  807.  
  808. #sidebar:hover #nets{
  809. margin-top:101px;
  810. opacity:10;
  811. -webkit-transition: all 0.9s ease-in-out;
  812. -moz-transition: all 0.9s ease-in-out;
  813. -o-transition: all 0.9s ease-in-out;
  814. -ms-transition: all 0.9s ease-in-out;
  815. transition: all 0.9s ease-in-out;
  816. }
  817.  
  818. #bunny{
  819. position:fixed;
  820. border:2px solid #eee;
  821. border-left:2px solid {color:border} ;
  822. border-right:2px solid {color:border};
  823. padding:5px;
  824. width:180px;
  825. height:15px;
  826. font-size:10px;
  827. background:#fff;
  828. margin-left:2px;
  829. margin-top:61px;
  830. letter-spacing:0px;
  831. z-index:99999999999;
  832. opacity:0;
  833. -webkit-transition: all 0.9s ease-in-out;
  834. -moz-transition: all 0.9s ease-in-out;
  835. -o-transition: all 0.9s ease-in-out;
  836. -ms-transition: all 0.9s ease-in-out;
  837. transition: all 0.9s ease-in-out;
  838. }
  839.  
  840. #sidebar:hover #bunny{
  841. margin-top:181px;
  842. opacity:10;
  843. -webkit-transition: all 0.9s ease-in-out;
  844. -moz-transition: all 0.9s ease-in-out;
  845. -o-transition: all 0.9s ease-in-out;
  846. -ms-transition: all 0.9s ease-in-out;
  847. transition: all 0.9s ease-in-out;
  848. }
  849.  
  850. #botm{
  851. position:fixed;
  852. border:2px solid #eee;
  853. border-left:2px solid {color:border};
  854. border-right:2px solid {color:border};
  855. padding:5px;
  856. width:180px;
  857. height:15px;
  858. font-size:10px;
  859. background:#fff;
  860. margin-left:2px;
  861. margin-top:61px;
  862. letter-spacing:0px;
  863. z-index:99999999999;
  864. opacity:0;
  865. -webkit-transition: all 0.9s ease-in-out;
  866. -moz-transition: all 0.9s ease-in-out;
  867. -o-transition: all 0.9s ease-in-out;
  868. -ms-transition: all 0.9s ease-in-out;
  869. transition: all 0.9s ease-in-out;
  870. }
  871.  
  872. #sidebar:hover #botm{
  873. margin-top:141px;
  874. opacity:10;
  875. -webkit-transition: all 0.9s ease-in-out;
  876. -moz-transition: all 0.9s ease-in-out;
  877. -o-transition: all 0.9s ease-in-out;
  878. -ms-transition: all 0.9s ease-in-out;
  879. transition: all 0.9s ease-in-out;
  880. }
  881.  
  882. div#pillar{
  883. padding:4px;
  884. position:fixed;
  885. width:220px;
  886. height:100%;
  887. margin-left:-10px;
  888. margin-top:0px;
  889. border:1px dotted #ddd;
  890. background-image:url({image:pillar});
  891. }
  892.  
  893. .linkbar{
  894. padding:5px;
  895. font-family:"Dixel";
  896. font-size:8px;
  897. line-height:5px;
  898. text-shadow: 0px 0px 2px #fff;
  899. text-transform:none;
  900. text-align:center;
  901. color: {color:link};
  902. z-index:9999999999999;
  903. -webkit-transition: all 0.2s ease-in-out;
  904. -moz-transition: all 0.2s ease-in-out;
  905. -o-transition: all 0.2s ease-in-out;
  906. -ms-transition: all 0.2s ease-in-out;
  907. transition: all 0.2s ease-in-out;
  908. }
  909.  
  910. .linkbar:hover{
  911. -webkit-transition: all 0.2s ease-in-out;
  912. -moz-transition: all 0.2s ease-in-out;
  913. -o-transition: all 0.2s ease-in-out;
  914. -ms-transition: all 0.2s ease-in-out;
  915. transition: all 0.2s ease-in-out;
  916. text-shadow: 0px 0px 2px #fff;
  917. }
  918.  
  919. .text{
  920. font-family:"Dixel";
  921. font-size:8px;
  922. line-height:10px;
  923. color:#000;
  924. width:250px;
  925. margin-top:-1px;
  926. text-shadow: 1px 1px 1px #fff;
  927. }
  928.  
  929. div#center{
  930. margin:auto;
  931. margin-top:0px;
  932. position:relative;
  933. width:1200px;
  934. background-color:;
  935. overflow:auto;
  936. overflow-y:hidden;
  937. }
  938.  
  939. .entry {
  940. float:left;
  941. display: block;
  942. overflow:hidden;
  943. width:270px;
  944. background:white;
  945. padding-top:5px;
  946. padding-right:5px;
  947. padding-left:5px;
  948. padding-bottom:3px;
  949. border:1px solid #eee;
  950. margin:3px;
  951. opacity:1;
  952. -moz-box-shadow: 0px 2px 2px {color:border};
  953. -webkit-box-shadow: 0 0 2px 2px {color:border};
  954. box-shadow: 0 0 2px 2px {color:border};
  955. -webkit-transition: all 0.8s ease-in-out;
  956. -moz-transition: all 0.8s ease-in-out;
  957. -o-transition: all 0.8s ease-in-out;
  958. -ms-transition: all 0.8s ease-in-out;
  959. transition: all 0.8s ease-in-out;
  960. {block:PermalinkPage}
  961. width:600px;
  962. margin-left:70px;
  963. text-align:center;
  964. {/block:PermalinkPage}
  965. }
  966.  
  967. .entry:hover{
  968. opacity:1;
  969. -moz-box-shadow: 0 0 10px 1px #ddd;
  970. -webkit-box-shadow: 0 0 10px 1px #ddd;
  971. box-shadow: 0 0 10px 1px #fff;
  972. -webkit-transition: all 0.2s ease-in-out;
  973. -moz-transition: all 0.2s ease-in-out;
  974. -o-transition: all 0.2s ease-in-out;
  975. -ms-transition: all 0.2s ease-in-out;
  976. transition: all 0.2s ease-in-out;
  977. }
  978.  
  979. .entry .perma{
  980. margin-right: 240px;
  981. width:266px;
  982. height: 0px;
  983. padding:2px;
  984. position: absolute;
  985. text-transform: none;
  986. font-family: "Dixel";
  987. font-size: 8px;
  988. text-align: center;
  989. line-height:15px;
  990. letter-spacing:0px;
  991. overflow:hidden;
  992. background-color:white;
  993. border-top:1px solid #fff;
  994. border-bottom:3px solid {color:border};
  995. text-align:center;
  996. top:5px;
  997. left:5px;
  998. opacity:10;
  999. -webkit-transition: opacity 0.5s linear; opacity: 0.0;
  1000. -webkit-transition: all 0.5s linear;
  1001. -moz-transition: all 0.5s linear;
  1002. transition: all 0.5s linear;
  1003. }
  1004.  
  1005. .entry:hover .perma{
  1006. height: 20px;
  1007. overflow:visible;
  1008. -webkit-transition: opacity 0.5s linear; opacity: 0.9;
  1009. -webkit-transition: all 0.5s linear;
  1010. -moz-transition: all 0.5s linear;
  1011. transition: all 0.5s linear;
  1012. }
  1013.  
  1014. .title{
  1015. font-family: "Lane Narrow";
  1016. font-size: 15px;
  1017. line-height: 15px;
  1018. color: {color:Title};
  1019. text-shadow:1px 2px 2px #fff;
  1020. letter-spacing: 1px;
  1021. font-weight: normal;
  1022. }
  1023.  
  1024. .sel{
  1025. letter-spacing:0px;
  1026. display: block;
  1027. background-color:transparent;
  1028. margin-top: -2px;
  1029. padding-top:3px;
  1030. margin-bottom:2px;
  1031. font-family:"Dixel";
  1032. font-size:8px;
  1033. line-height:4px;
  1034. text-transform:uppercase;
  1035. text-align:left;
  1036. height:1px;
  1037. color:#000;
  1038. opacity:0;
  1039. -webkit-transition: all 0.5s ease-in-out;
  1040. -moz-transition: all 0.5s ease-in-out;
  1041. -o-transition: all 0.5s ease-in-out;
  1042. -ms-transition: all 0.5s ease-in-out;
  1043. transition: all 0.5s ease-in-out;
  1044. }
  1045.  
  1046. .entry:hover .sel{
  1047. opacity:10;
  1048. padding-left: 40px;
  1049. -webkit-transition: all 0.5s ease-in-out;
  1050. -moz-transition: all 0.5s ease-in-out;
  1051. -o-transition: all 0.5s ease-in-out;
  1052. -ms-transition: all 0.5s ease-in-out;
  1053. transition: all 0.5s ease-in-out;
  1054. }
  1055.  
  1056. #posts {
  1057. padding:4px;
  1058. border:0px solid #eee;
  1059. width:910px;
  1060. z-index:1;
  1061. background:transparent;
  1062. margin-top: 59px;
  1063. margin-left: 290px;
  1064. margin-right: auto;
  1065. position:relative;
  1066. overflow-y: hidden;
  1067. }
  1068.  
  1069. #infscr-loading{
  1070. bottom: -70px;
  1071. position: absolute;
  1072. left: 50%;
  1073. margin-left:-8px;
  1074. width:16px;
  1075. height:11px;
  1076. overflow:hidden;
  1077. margin-bottom: 50px;
  1078. }
  1079.  
  1080. #postnotes{
  1081. text-align: justify;
  1082. }
  1083.  
  1084. #postnotes blockquote{
  1085. border: 0px;
  1086. }
  1087.  
  1088. blockquote{
  1089. padding:0px 0px 2px 5px;
  1090. margin:0px 0px 2px 1px;
  1091. border-left: 1px dotted {color:Text};
  1092. }
  1093.  
  1094. blockquote p, ul{
  1095. margin:0px;
  1096. padding:0px;
  1097. }
  1098.  
  1099. asker{
  1100. font-family:"Lane Narrow";
  1101. font-size:10px;
  1102. line-height:15px;
  1103. text-decoration:bold;
  1104. color: {color:link};
  1105. text-transform:uppercase;
  1106. }
  1107.  
  1108. signature{
  1109. width:240px;
  1110. font-family:"Contribute";
  1111. font-size:25px;
  1112. line-height:15px;
  1113. text-decoration:none;
  1114. color:{color:blogtitle};
  1115. letter-spacing:-1px;
  1116. text-transform:none;
  1117. border-top:1px dotted #eee;
  1118. text-shadow:0px 0px 2px #aaa;
  1119. text-align:right;
  1120. }
  1121.  
  1122. a img{border: 0px;}
  1123. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  1124. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label,
  1125. .user_5 .label, .user_6 .label,
  1126. .user_7 .label, .user_8 .label, .user_9 .label {color:{color:Title};}
  1127. .notes img{width:10px; position:relative; top:3px;
  1128. }
  1129.  
  1130. small{font-size: 90%;}
  1131.  
  1132. .video embed, .post div.video object {width:260px !important;
  1133. height:180px !important;}
  1134. .video2 embed, .post div.video object {width:400px !important;
  1135. height:400px !important;}
  1136.  
  1137. {CustomCSS}
  1138.  
  1139. </style>
  1140.  
  1141. {block:IndexPage}
  1142. <script type="text/javascript"
  1143. src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  1144. <script type="text/javascript"
  1145. src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  1146.  
  1147. <script type="text/javascript">
  1148. $(window).load(function () {
  1149. var $content = $('#posts');
  1150. $content.masonry({itemSelector: '.entry'}),
  1151. $content.infinitescroll({
  1152. navSelector : 'div#pagination',
  1153. nextSelector : 'div#pagination a#nextPage',
  1154. itemSelector : '.entry',
  1155. loading: {
  1156. finishedMsg: '',
  1157. img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
  1158. },
  1159. bufferPx : 600,
  1160. debug : false,
  1161. },
  1162. // call masonry as a callback.
  1163. function( newElements ) {
  1164. var $newElems = $( newElements );
  1165. $newElems.hide();
  1166. // ensure that images load before adding to masonry layout
  1167. $newElems.imagesLoaded(function(){
  1168. $content.masonry( 'appended', $newElems, true,
  1169. function(){$newElems.fadeIn(300);} );
  1170.  
  1171.  
  1172. });
  1173. });
  1174. });
  1175. </script>
  1176. {/block:IndexPage}
  1177.  
  1178.  
  1179. <title>{title}</title>
  1180.  
  1181. <link rel="shortcut icon" href="http://media.tumblr.com/tumblr_m230t37Mb11qfamg6.png">
  1182. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  1183. <meta name="viewport" content="width=820" />
  1184. </head>
  1185. <body onkeydown="return false">
  1186. <BODY onselectstart="return false;" ondragstart="return false;">
  1187.  
  1188. <body>
  1189.  
  1190. <div class="wrapper">
  1191. <div class="header">
  1192. </div>
  1193.  
  1194. <div id="center">
  1195.  
  1196. <div id="pillar">
  1197. </div>
  1198.  
  1199. <div id="sidebar">
  1200. <div id="sidebarpic"><a href="/"><img src="{image:sidebar}" width=100%></div>
  1201. <div class="line"></div>
  1202. <div class="line2"></div>
  1203. <div id="desc"><center>{Description}</center></div>
  1204.  
  1205. <div id="linkbar"><center><div class="linkbar"><a href="{text:Link One}">{text:Link One Title}</a> &middot; <a href="{text:Link Two}">{text:Link Two Title}</a> &middot;<a href="{text:Link Three}">{text:Link Three Title}</a> &middot; <a href="{text:Link Four}">{text:Link Four Title}</a></div></center></div>
  1206.  
  1207. <div id="botm"><center><a href="{text:box2url}">{text:box2} </a>
  1208. </div>
  1209. <div id="nets"><center><a href="{text:box1url}">{text:box1}</a>
  1210. </div>
  1211. <div id="bunny"><center><a href="{text:box3url}">{text:box3}</a>
  1212. </div>
  1213. <div id="kool">-{text:yourname} .xoxo</div>
  1214. <div id="blogtitle">
  1215. <center><div class="undertitle">{text:Title One}</div></center>{text:Title Two}</div>
  1216. <div class="sidebarbg4"></div>
  1217. <div id="quote">{text:quote}</div>
  1218. <div id="quote2"></div>
  1219. </div>
  1220.  
  1221.  
  1222. <div class="left">
  1223. <div id="posts">
  1224. {block:Posts}
  1225. <div class="entry">
  1226.  
  1227. {block:Answer}
  1228. <div style="border-radius:5px; border: 1px solid {color:border} margin: 3px; margin-top: -2px; min-height:30px; padding: 3px; background-image:url({image:pillar});">
  1229.  
  1230. <img src="{AskerPortraitURL-30}" width="30" align="left"
  1231. style="margin-right:4px; border:1px solid {color:border}; border-radius:4px; -moz-box-shadow: 0 0 1px 1px {color:border}; -webkit-box-shadow: 0 0 1px 1px {color:border}; box-shadow: 0 0 1px 1px {color:border};"/>
  1232.  
  1233. <asker>{Asker}:</asker>
  1234. {Question}</div>
  1235.  
  1236.  
  1237. <img src="{PostAuthorPortraitURL-30}" width="30" align="right" style="border:1px solid {color:border}; -moz-border-radius: 4px; border-radius: 5px; margin-right: 0px; margin-top:10px ;padding: 2px; z-index:1;opacity:1; box-shadow: 0 0 1px 1px {color:border};"/>
  1238.  
  1239.  
  1240. <div style="margin:1px; background-color: transparent; border:0px dotted #ddd; padding:16px; text-align:center;">{Answer}</div><div class="sel"><a
  1241. href="{Permalink}">{timeago} | {notecountwithlabel}</a></div>
  1242. {/block:Answer}
  1243.  
  1244. {block:Text}
  1245. {block:Title}<span class="title">{Title}</span>{/block:Title}
  1246. <span class="entrytext">{Body}</span></a>
  1247. {block:IndexPage}
  1248. <div class="sel"><a href="{permalink}">{timeago} with
  1249. {notecountwithlabel}</a></div>
  1250. {/block:IndexPage}
  1251. {/block:Text}
  1252.  
  1253. {block:Link}
  1254. <a href="{URL}" class="title">{Name}</a>
  1255. {block:Description}{Description}{/block:Description}
  1256. {block:IndexPage}
  1257. <div class="sel"><a href="{permalink}">{timeago} |
  1258. {notecountwithlabel}</a></span></div>
  1259. {/block:IndexPage}
  1260. {block:Link}
  1261.  
  1262. {block:Photo}{block:IndexPage}
  1263. <div class="perma">
  1264. <a id="notes{PostID}" href="{Permalink}">{NoteCount} notes</a> <img src="http://i98.photobucket.com/albums/l256/SoccerE92/myspace/ht13.gif"></a> {timeago} <img src="http://i98.photobucket.com/albums/l256/SoccerE92/myspace/ht13.gif"></a> <a href="{reblogurl}" target="_blank">relove</div>
  1265. {/block:IndexPage}
  1266. {block:IndexPage}
  1267. <a href="{Permalink}"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"
  1268. width=270px;></a>
  1269. {/block:IndexPage}
  1270. {block:permalinkpage}{LinkOpenTag}
  1271. <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width=600px/>{LinkCloseTag}
  1272. {/block:permalinkpage}
  1273. {/block:Photo}
  1274.  
  1275. {block:Quote}
  1276. <span class="title">{Quote}</span><br />
  1277. {block:Source}{Source}{/block:Source}
  1278. {block:IndexPage}
  1279. <br /><div class="sel"><a href="{permalink}">{timeago} |
  1280. {notecountwithlabel}</a></span></div>
  1281. {/block:IndexPage}
  1282. {/block:Quote}
  1283.  
  1284. {block:Chat}
  1285. {block:Title}<span class="title">{Title}</span>{/block:Title}
  1286. <ul class="chat">
  1287. {block:Lines}
  1288. <li class="user_{UserNumber}">
  1289. {block:Label}
  1290. <span class="label">{Label}</span>
  1291. {/block:Label}
  1292.  
  1293. {Line}
  1294. </li>
  1295. {/block:Lines}
  1296. </ul>
  1297. {block:IndexPage}
  1298. <div class="sel"><a href="{permalink}">{timeago} |
  1299. {notecountwithlabel}</a></span></div>
  1300. {/block:IndexPage}
  1301. {/block:Chat}
  1302.  
  1303. {block:Audio}
  1304. <center><div style="width:180px; height:20px;"><div
  1305. style="float:left">{AudioPlayerWhite}</div><div style="margin-top:8px;
  1306. float:right;"><small>
  1307. {FormattedPlayCount} plays</small></div></div></center><br>
  1308. {block:Caption}{Caption}{/block:Caption}
  1309. {block:IndexPage}
  1310. <div class="sel"><a href="{permalink}">{timeago} |
  1311. {notecountwithlabel}</a></span></div>
  1312. {/block:IndexPage}
  1313. {/block:Audio}
  1314.  
  1315. {block:Video}<center>
  1316. <div class="video">{Video-250}</div></center>
  1317. {block:IndexPage}
  1318. <div class="sel"><a href="{permalink}">{timeago} |
  1319. {notecountwithlabel}</a></span></div>
  1320. {/block:IndexPage}
  1321. {block:Video}
  1322.  
  1323. {block:PostNotes}<div align="middle">{caption}</div>
  1324. <center>
  1325.  
  1326. {block:NoteCount}{NoteCountWithLabel}<br>{/block:NoteCount}
  1327.  
  1328. {block:HasTags}
  1329. tags: {block:Tags}<a href="{TagURL}">{Tag}. </a>{/block:Tags}<br>
  1330. {/block:HasTags}
  1331. {block:RebloggedFrom}
  1332. reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
  1333. posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>
  1334.  
  1335. {/block:RebloggedFrom}
  1336. </center></span>
  1337. <br>
  1338. <div id="postnotes">{PostNotes}</div><br>
  1339.  
  1340. <center>{block:ContentSource}
  1341. <br><a href="{SourceURL}">
  1342. {lang:Source}:
  1343. {block:SourceLogo}
  1344. <img src="{BlackLogoURL}" width="{LogoWidth}"
  1345. height="{LogoHeight}" alt="{SourceTitle}" />
  1346. {/block:SourceLogo}
  1347. {block:NoSourceLogo}
  1348. {SourceLink}
  1349. {/block:NoSourceLogo}
  1350. </a>
  1351. {/block:ContentSource}</center>
  1352.  
  1353. {/block:PostNotes}
  1354. </div>
  1355. {/block:Posts}
  1356. </div></div>
  1357.  
  1358. {block:IndexPage}
  1359. {block:Pagination}
  1360. <div id="pagination">
  1361. {block:NextPage}
  1362. <a id="nextPage" href="{NextPage}"></a>
  1363. {/block:NextPage}
  1364. {block:PreviousPage}
  1365. <a href="{PreviousPage}"></a>
  1366. {/block:PreviousPage}
  1367. </div>
  1368. {/block:Pagination}
  1369. {/block:IndexPage}
  1370.  
  1371. </body>
  1372.  
  1373.  
  1374.  
  1375. </html>
  1376. <div class="duck"><center><a href="http://preachlarcel.tumblr.com/"title="Theme by Preachlarcel"><img src="http://media.tumblr.com/tumblr_lkl5s8Ay6F1qfamg6.gif" width=14/></a></center></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement