Advertisement
Kimmyvp123

Theme 4 by Preachlarcel

Aug 4th, 2013
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 37.98 KB | None | 0 0
  1. <SCRIPT type="text/javascript">
  2. /*
  3. Snow Fall 1 - no images - Java Script
  4. Visit http://rainbow.arch.scriptmania.com/scripts/
  5. for this script and many more
  6. */
  7.  
  8. // Set the number of snowflakes (more than 30 - 40 not recommended)
  9. var snowmax=35
  10.  
  11. // Set the colors for the snow. Add as many colors as you like
  12. var snowcolor=new Array("#aaaacc","#ddddff","#ccccdd","#f3f3f3","#f0ffff")
  13.  
  14. // Set the fonts, that create the snowflakes. Add as many fonts as you like
  15. var snowtype=new Array("Times","Arial","Times","Verdana")
  16.  
  17. // Set the letter that creates your snowflake (recommended: * )
  18. var snowletter="*"
  19.  
  20. // Set the speed of sinking (recommended values range from 0.3 to 2)
  21. var sinkspeed=0.6
  22.  
  23. // Set the maximum-size of your snowflakes
  24. var snowmaxsize=30
  25.  
  26. // Set the minimal-size of your snowflakes
  27. var snowminsize=8
  28.  
  29. // Set the snowing-zone
  30. // Set 1 for all-over-snowing, set 2 for left-side-snowing
  31. // Set 3 for center-snowing, set 4 for right-side-snowing
  32. var snowingzone=1
  33.  
  34. ///////////////////////////////////////////////////////////////////////////
  35. // CONFIGURATION ENDS HERE
  36. ///////////////////////////////////////////////////////////////////////////
  37.  
  38.  
  39. // Do not edit below this line
  40. var snow=new Array()
  41. var marginbottom
  42. var marginright
  43. var timer
  44. var i_snow=0
  45. var x_mv=new Array();
  46. var crds=new Array();
  47. var lftrght=new Array();
  48. var browserinfos=navigator.userAgent
  49. var ie5=document.all&&document.getElementById&&!browserinfos.match(/Opera/)
  50. var ns6=document.getElementById&&!document.all
  51. var opera=browserinfos.match(/Opera/)
  52. var browserok=ie5||ns6||opera
  53.  
  54. function randommaker(range) {
  55. rand=Math.floor(range*Math.random())
  56. return rand
  57. }
  58.  
  59. function initsnow() {
  60. if (ie5 || opera) {
  61. marginbottom = document.body.scrollHeight
  62. marginright = document.body.clientWidth-15
  63. }
  64. else if (ns6) {
  65. marginbottom = document.body.scrollHeight
  66. marginright = window.innerWidth-15
  67. }
  68. var snowsizerange=snowmaxsize-snowminsize
  69. for (i=0;i<=snowmax;i++) {
  70. crds[i] = 0;
  71. lftrght[i] = Math.random()*15;
  72. x_mv[i] = 0.03 + Math.random()/10;
  73. snow[i]=document.getElementById("s"+i)
  74. snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)]
  75. snow[i].size=randommaker(snowsizerange)+snowminsize
  76. snow[i].style.fontSize=snow[i].size+'px';
  77. snow[i].style.color=snowcolor[randommaker(snowcolor.length)]
  78. snow[i].style.zIndex=1000
  79. snow[i].sink=sinkspeed*snow[i].size/5
  80. if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)}
  81. if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)}
  82. if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4}
  83. if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2}
  84. snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size)
  85. snow[i].style.left=snow[i].posx+'px';
  86. snow[i].style.top=snow[i].posy+'px';
  87. }
  88. movesnow()
  89. }
  90.  
  91. function movesnow() {
  92. for (i=0;i<=snowmax;i++) {
  93. crds[i] += x_mv[i];
  94. snow[i].posy+=snow[i].sink
  95. snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i])+'px';
  96. snow[i].style.top=snow[i].posy+'px';
  97.  
  98. if (snow[i].posy>=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)>(marginright-3*lftrght[i])){
  99. if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)}
  100. if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)}
  101. if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4}
  102. if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2}
  103. snow[i].posy=0
  104. }
  105. }
  106. var timer=setTimeout("movesnow()",50)
  107. }
  108.  
  109. for (i=0;i<=snowmax;i++) {
  110. document.write("<span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'>"+snowletter+"</span>")
  111. }
  112. if (browserok) {
  113. window.onload=initsnow
  114. }
  115.  
  116. </SCRIPT>
  117.  
  118. <!--
  119. Theme by Cuntstr-ctinq!. Don't remove credit or I will disable your wifi :P!
  120. -->
  121.  
  122. <html lang="en">
  123. <!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  124. <html xmlns="http://www.w3.org/1999/xhtml">
  125. <head>
  126.  
  127. <link href='http://static.tumblr.com/blpgwiz/sSZmijydf/slide_in.css' rel='stylesheet' type='text/css'>
  128.  
  129. <link href='http://static.tumblr.com/blpgwiz/u8Qmijy1c/fade_in_up.css' rel='stylesheet' type='text/css'>
  130.  
  131. <link href='http://static.tumblr.com/blpgwiz/usPm404d2/bounce_normal.css' rel='stylesheet' type='text/css'>
  132.  
  133. <link href='http://static.tumblr.com/blpgwiz/EfNmijxib/tada.css' rel='stylesheet' type='text/css'>
  134.  
  135. <link href='http://static.tumblr.com/blpgwiz/Zjemijy8n/fade_in_down.css' rel='stylesheet' type='text/css'>
  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. <script type="text/javascript"
  153. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  154. <script>
  155. $(document).ready(function() {
  156. //
  157. $('a.poplight[href^=#]').click(function() {
  158. var popID = $(this).attr('rel'); //Get Popup Name
  159. var popURL = $(this).attr('href'); //Get Popup href to define size
  160. var query= popURL.split('?');
  161. var dim= query[1].split('&');
  162. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  163. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://png.findicons.com/files/icons/1714/dropline_neu/24/dialog_close.png" class="btn_close" title="Close" alt="Close" /></a>');
  164. var popMargTop = ($('#' + popID).height() + 80) / 2;
  165. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  166. //Apply Margin to Popup
  167. $('#' + popID).css({
  168. 'margin-top' : -popMargTop,
  169. 'margin-left' : -popMargLeft
  170. });
  171. $('body').append('<div id="fade"></div>');
  172. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  173. return false;
  174. });
  175. $('a.close, #fade').live('click', function() {
  176. $('#fade , .popup_block').fadeOut(function() {
  177. $('#fade, a.close').remove(); //fade them both out
  178. });
  179. return false;
  180. });
  181. });
  182. </script>
  183.  
  184. <script type="text/javascript">
  185. <!--
  186.  
  187. // Disable Right Click Script
  188.  
  189. function IE(e)
  190. {
  191. if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3"))
  192. {
  193. return false;
  194. }
  195. }
  196. function NS(e)
  197. {
  198. if (document.layers || (document.getElementById && !document.all))
  199. {
  200. if (e.which == "2" || e.which == "3")
  201. {
  202. return false;
  203. }
  204. }
  205. }
  206. document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");
  207.  
  208. //-->
  209. </script>
  210.  
  211.  
  212. <script type="text/javascript"
  213. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  214.  
  215. <!--DEFAULT VARIABLES-->
  216. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  217. <meta name="color:backgrd" content="#eee"/>
  218. <meta name="color:link" content="#777"/>
  219. <meta name="color:text" content="#777"/>
  220. <meta name="color:title" content="#333"/>
  221. <meta name="color:hover" content="#fff"/>
  222. <meta name="color:text" content="#777"/>
  223. <meta name="color:blogtitle" content="#aaa"/>
  224. <meta name="color:blogtitle shadow" content="#000"/>
  225. <meta name="color:scrollbar" content="#ccc"/>
  226. <meta name="color:sidebarborder" content="#eee"/>
  227. <meta name="color:sidebarborder2" content="#eee"/>
  228. <meta name="image:sidebar" content="1"/>
  229. <meta name="image:background" content="1"/>
  230. <meta name="image:sidebar bg" content="1"/>
  231. <meta name="text:blogtitle" content="Hello lovelies" />
  232. <meta name="text:stats" content="" />
  233. <meta name="text:stats2" content="" />
  234. <meta name="text:quote" content="Hello lovelies" />
  235. <meta name="text:Link One" content""/>
  236. <meta name="text:Link One Hover Title" content"hover title1"/>
  237. <meta name="text:Link Two" content""/>
  238. <meta name="text:Link Two Hover Title" content"hover title2"/>
  239. <meta name="text:Link Three" content""/>
  240. <meta name="text:Link Three Hover Title" content"hover title3"/>
  241. <meta name="text:Link Four" content="" />
  242. <meta name="text:Link Four Hover Title" content"hover title4"/>
  243.  
  244.  
  245. <style type="text/css">
  246.  
  247. #fade { /*--Transparent background layer--*/
  248. display: none; /*--hidden by default--*/
  249. background:url(http://24.media.tumblr.com/222165b55b774b5f3cb41dcd88cc4b05/tumblr_mm8xqcUmjW1s5um8no1_250.png);
  250. position: fixed; left: 0; top: 0;
  251. width: 100%; height: 100%;
  252. opacity: .80;
  253. z-index: 9999;
  254. }
  255. .popup_block{
  256. display: none; /*--hidden by default--*/
  257. background: #fff;
  258. padding: 20px;
  259. border: 10px solid #ccc;
  260. float: left;
  261. font-size:12px;
  262. font-family:arial;
  263. position: fixed;
  264. top: 50%; left: 50%;
  265. z-index: 99999;
  266. /*--CSS3 Box Shadows--*/
  267. -webkit-box-shadow: 0px 0px 20px #000;
  268. -moz-box-shadow: 0px 0px 20px #000;
  269. box-shadow: 0px 0px 20px #000;
  270. /*--CSS3 Rounded Corners--*/
  271. -webkit-border-radius: 10px;
  272. -moz-border-radius: 10px;
  273. border-radius: 10px;
  274. }
  275. img.btn_close {
  276. float: right;
  277. margin: -5px -5px 0 0;
  278. }
  279. /*--Making IE6 Understand Fixed Positioning--*/
  280. *html #fade {
  281. position: absolute;
  282. }
  283. *html .popup_block {
  284. position: absolute;
  285. }
  286.  
  287.  
  288.  
  289. #s-m-t-tooltip {
  290. max-width:300px;
  291. padding:6px 6px 6px 6px;
  292. margin:20px 0px 0px 20px;
  293. background: #fff; /* change the background color */
  294. border:1px solid #eee; /* change the border color */
  295. border-right:4px solid #eee;
  296. border-left:4px solid #eee;
  297. font-family:pewp; /* change the font */
  298. font-size:10px; /* change the font size */
  299. letter-spacing:1px; /* change the letter spacing */
  300. text-transform:uppercase; /* can be uppercase, lowercase, none*/
  301. color:{color:hoverlink textcolor}; /* change the text color */
  302. z-index:999999;
  303. -moz-border-radius: 35px 20px / 20px 35px;
  304. border-radius: 35px 20px / 20px 35px;
  305. -moz-box-shadow:1px 1px 2px 1px #aaa;
  306. -webkit-box-shadow:1px 1px 2px 1px #aaa;
  307. box-shadow:1px 1px 2px 1px #aaa;
  308. }
  309.  
  310. 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-
  311.  
  312. transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
  313.  
  314. 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;}
  315.  
  316. p {
  317. margin:0px;
  318. margin-top:0px;
  319. }
  320.  
  321.  
  322. body {
  323. padding: 0px;
  324. margin: 0px;
  325. color:{color:text};
  326. font-family: dixel;
  327. line-height:7px;
  328. font-size:8px;
  329. background-color: {color:Background};
  330. background-image:url({image:Background});
  331. background-attachment: fixed;
  332. background-repeat: repeat;
  333. }
  334.  
  335.  
  336. a:link, a:active, a:visited{
  337. text-decoration: none;
  338. -webkit-transition: color 0.3s ease-out;
  339. -moz-transition: color 0.3s ease-out;
  340. transition: color 0.3s ease-out;
  341. color:{color:link};
  342. }
  343.  
  344. a:hover {
  345. text-decoration: none;
  346. font-style:;
  347. color: {color:Hover};
  348. }
  349.  
  350. div#center{
  351. margin:auto;
  352. position:relative;
  353. width:1000px;
  354. background-color:;
  355. overflow:auto;
  356. overflow-y:hidden;
  357. }
  358.  
  359. ::-webkit-scrollbar-thumb:vertical {
  360. height:9px;
  361. background-color: {color:scrollbar};
  362. }
  363.  
  364. ::-webkit-scrollbar-thumb:horizontal {
  365. width:0px;
  366. height:0px;
  367. overflow:hidden;
  368. background:#fff;
  369. margin-right:px;
  370. }
  371.  
  372. ::-webkit-scrollbar {
  373. width:3px;
  374. height:5px;
  375. overflow:hidden;
  376. background:#ddd;
  377. margin-right:5px;
  378. }
  379.  
  380. /*CUSTOMIZE ENTRY SETTINGS HERE*/
  381. .entry {
  382. float:left;
  383. display: block;
  384. margin:5px;
  385. opacity:1;
  386. overflow:hidden;
  387. border: 1px solid #c9c9c9;
  388. box-shadow:2px 2px 2px #ddd;
  389. padding: 6px;
  390. width:230px;
  391. font-family:caviar;
  392. font-size:14px;
  393. line-height:20px;
  394. padding-bottom: 3px;
  395. {block:PermalinkPage}
  396. width:520px;
  397. text-align:left;
  398. line-height:15px;
  399. {/block:PermalinkPage}
  400. background-color:#fff;
  401. background-image:URL();
  402. -webkit-transition: all 0.5s linear;
  403. -moz-transition: all 0.5s linear;
  404. transition: all 0.5s linear;
  405. -webkit-animation: SlideIn 2s;
  406. -moz-animation: SlideIn 2s;
  407. -ms-animation: SlideIn 2s;
  408. }
  409.  
  410. .entry:hover{
  411. opacity:0.7;
  412. }
  413.  
  414. /*CUSTOMIZE THE APPEARANCE OF PERMALINKS*/
  415.  
  416. .entry .perma a{
  417. color:#000;
  418. }
  419. .entry .perma{
  420. width:230px;
  421. height:42px;
  422. font-family: consolas;
  423. text-transform:uppercase;
  424. position: absolute;
  425. font-size: 14px;
  426. line-height: 48px;
  427. text-align:center;
  428. overflow:hidden;
  429. opacity: 0.0;
  430. padding-left:-10px;
  431. background-color:#fff;
  432. letter-spacing:0px;
  433. top:-2px;
  434. margin-left: 0px;
  435. border-top: 3px solid #eee;
  436. border-bottom: 3px solid #eee;
  437. border-radius: 0px;
  438. -webkit-transition: opacity 0.7s linear; opacity: 0.0;
  439. -webkit-transition: all 0.7s linear;
  440. -moz-transition: all 0.7s linear;
  441. transition: all 0.7s linear;
  442. }
  443.  
  444. .entry:hover .perma{
  445. opacity:1;
  446. top:60px;}
  447.  
  448.  
  449.  
  450. /*CUSTOMIZE POST POSITIONING AND STUFFZ HERE*/
  451. #posts {
  452. width:800px;
  453. margin-top:35px;
  454. z-index:999999;
  455. margin-left:239px;
  456. right:auto;
  457. background:transparent;
  458. margin-right:auto;
  459. position:relative;
  460. overflow-y: hidden;
  461. -webkit-transition: all 0.5s linear;
  462. -moz-transition: all 0.5s linear;
  463. transition: all 0.5s linear;
  464. }
  465.  
  466. .duck{
  467. position: fixed !important;
  468. z-index: 99;
  469. font-family: arial;
  470. line-height:10px;
  471. font-size: 1px;
  472. padding: 3px;
  473. bottom:5px;
  474. left:1325px;
  475. height:15px;
  476. width:18px;
  477. border-radius:10px;
  478. border:1px solid {color:borders};
  479. background:white;
  480. }
  481.  
  482. /*CUSTOMIZE SIDEBAR HERE*/
  483. #sidebar{
  484. -webkit-animation:fadeInLeftBig ease-in-out 2s;
  485. -moz-animation:fadeInLeftBig ease-in-out 2s;
  486. -ms-animation:fadeInLeftBig ease-in-out 2s;
  487. z-index: 1;
  488. position:fixed !important;
  489. width:240px;
  490. background: white;
  491. padding: 10px;
  492. border-top: 8px solid {color:sidebarborder};
  493. border-left: 8px solid {color:sidebarborder2};
  494. border-right: 8px solid {color:sidebarborder2};
  495. border-bottom: 8px solid {color:sidebarborder};
  496. border-top-left-radius: 0px;
  497. border-top-right-radius: 0px;
  498. border-bottom-left-radius: 0px;
  499. border-bottom-right-radius: 0px;
  500. margin-top:140px;
  501. box-shadow: 0px 0px 5px #ddd;
  502. margin-left:-155px;
  503. text-align:center;
  504. -webkit-animation: fadeInDown 2s;
  505. -moz-animation: fadeInDown 2s;
  506. -ms-animation: fadeInDown 2s;
  507. }
  508.  
  509.  
  510.  
  511. #sidebar .phineas{
  512. position:fixed !important;
  513. width: 400px;
  514. opacity:1;
  515. margin-top: -57px;
  516. margin-left:25px;
  517. text-align: left;
  518. line-height: 54px;
  519. color:{color:blogtitle};
  520. font-weight: normal;
  521. font-family: Cedarville;
  522. text-shadow: 1px 1px 3px {color:blogtitle shadow};
  523. font-size: 50px;
  524. z-index:6;
  525. -webkit-animation: tada 2s;
  526. -moz-animation: tada 2s;
  527. -ms-animation: tada 2s;
  528. }
  529. #sidebar:hover .phineas{
  530. text-transform:none;
  531. font-family: cedarville;
  532. letter-spacing: 4px;
  533. margin-left:25px;
  534. }
  535.  
  536. @font-face { font-family: "cutiepop"; src: url('http://static.tumblr.com/q54tzar/Gs7m21f91/cutiepop_1_.ttf'); }
  537. @font-face { font-family: "honeyscript"; src: url('http://static.tumblr.com/q54tzar/vvam21fco/honeyscript-light_1_.ttf'); }
  538. @font-face { font-family: "s"; src: url('http://static.tumblr.com/yo59jgt/m4om1rino/signerica_fat.ttf'); }
  539. @font-face { font-family: "comesinhandy"; src: url('http://static.tumblr.com/ygfurav/eGLmkhogi/comesinhandy.ttf'); }
  540. @font-face {font-family: "cedarville"; src: url('http://static.tumblr.com/fxpo5zq/oefmes3gi/cedarville_pnkfun_1_cursive.ttf');}
  541. @font-face { font-family: "dreams"; src: url('http://static.tumblr.com/4yxykdm/xXTlrecqr/caviardreams.ttf'); }
  542. @font-face{ font-family:jane; src: url('http://static.tumblr.com/bm7b8hm/vnWmf9864/janeaust.ttf');,}
  543. @font-face { font-family: "neou"; src: url('http://static.tumblr.com/t5cadah/Qzumnxg66/neou-thin.ttf'); }
  544. @font-face{font-family:"Jane Austen";src:url('http://static.tumblr.com/9wzbixa/ncHmj2mmb/janeaust.ttf');}
  545. @font-face { font-family: "pacifico"; src: url('http://static.tumblr.com/jdjsstr/Julm7s6p2/pacifico_1_.ttf'); }
  546. @font-face { font-family: "cutty"; src: url('http://static.tumblr.com/dcylwch/HvDmhxbob/cuttyfruty.ttf'); }
  547. @font-face { font-family: "beauty"; src: url('http://static.tumblr.com/2zvjoo9/n9Mm31t9e/discoverbeauty.ttf');}
  548. @font-face { font-family: "yolo"; src: url('http://static.tumblr.com/5fd89aw/H0ilkmgoh/arsenale_white.ttf'); }
  549. @font-face { font-family: "bebas"; src: url('http://static.tumblr.com/cvlbtjz/cnsln9tpp/bebasneue.otf'); }
  550. @font-face { font-family: "bold"; src: url('http://static.tumblr.com/cvlbtjz/cnsln9tpp/bebasneue.otf'); }
  551. @font-face { font-family: "bond"; src: url('hhttp://static.tumblr.com/t5cadah/QLlmki683/bondoluopeek.otf'); }
  552. @font-face {font-family: "beautiful every time"; src: url('http://static.tumblr.com/nsunyax/Pm3lzwzye/beautifuleverytime.ttf');}
  553. @font-face { font-family: "demo"; src: url('http://static.tumblr.com/jdjsstr/Eq8m819c1/neou-thin_1_.ttf'); }
  554. @font-face { font-family: "caviardreams"; src: url('http://static.tumblr.com/4yxykdm/xXTlrecqr/caviardreams.ttf'); }
  555. @font-face {font-family:"Bree"; src:url('http://static.tumblr.com/9wzbixa/YBvm26pgu/bree.ttf');}
  556. @font-face { font-family: "sb"; src: url('http://static.tumblr.com/yo59jgt/m4om1rino/signerica_fat.ttf'); }
  557. @font-face { font-family: "lala"; src: url('http://static.tumblr.com/vpzhdvv/6d7m90v7t/111.woff');}
  558. @font-face { font-family: "neverletgo"; src: url('http://static.tumblr.com/q54tzar/o02m2jt6c/neverletgo_3_.ttf'); }
  559. @font-face { font-family: "icons"; src: url('http://static.tumblr.com/8hrjcus/Q3fmg7rhn/breezi_font-webfont.ttf'); }
  560. @font-face {font-family:"CelesteHand"; src: url('http://static.tumblr.com/y5evvpz/dVCmkz0sf/celeste_hand.ttf');}
  561. @font-face {font-family:"Springtime"; src: url('http://static.tumblr.com/y5evvpz/7iomdz3n1/springtime.ttf');}
  562. @font-face {font-family:"Aderyn"; src:url('http://static.tumblr.com/9wzbixa/Qnqm26qzk/dk_aderyn_0.ttf');}
  563. @font-face { font-family: "dawning"; src: url('http://static.tumblr.com/viiafci/Hyzlxws2r/dawningofanewday.ttf'); }
  564.  
  565. #desc{
  566. position:fixed !important;
  567. width:165px;
  568. padding:30px;
  569. background:white;
  570. height:40px;
  571. padding-top:10px;
  572. padding-bottom:50px;
  573. margin-top:-180px;
  574. margin-left:5px;
  575. text-align:top;
  576. z-index:99;
  577. font-family:caviar;
  578. color:#000;
  579. font-size:14px;
  580. line-height:14px;
  581. overflow-y:scroll;
  582. border: 2px solid #ccc;
  583. opacity:0;
  584. -o-transition-transition: all 0.7s linear;
  585. -webkit-transition: all 0.7s linear;
  586. -moz-transition: all 0.7s linear;
  587. box-shadow: 1px 1px 3px #aaa;
  588. }
  589.  
  590. #sidebar:hover #desc{
  591. opacity:1;
  592. margin-left:5px;
  593. transition: all 0.7s ease-out;
  594. -o-transition-transition: all 0.7s ease-out;
  595. -webkit-transition: all 0.7s ease-out;
  596. -moz-transition: all 0.7s ease-out;
  597. -webkit-transform: rotateY(360deg);
  598. -moz-transform: rotateY(360deg);
  599. transform: rotateY(360deg);
  600. }
  601.  
  602. #box{
  603. position:fixed !important;
  604. width:30px;
  605. padding:20px;
  606. padding-top:10px;
  607. background:white;
  608. height:5px;
  609. margin-top:-53px;
  610. margin-left:10px;
  611. text-align:center;
  612. z-index:5;
  613. font-family:pewp;
  614. color:#000;
  615. font-size:14px;
  616. line-height:12px;
  617. border: 2px solid #ccc;
  618. opacity:0;
  619. overflow-y:hidden;
  620. overflow-x:hidden;
  621. -o-transition-transition: all 0.7s linear;
  622. -webkit-transition: all 0.7s linear;
  623. -moz-transition: all 0.7s linear;
  624. border-right:2px solid #ccc;
  625. border-left:2px solid #ccc;
  626. }
  627.  
  628. #sidebar:hover #box{
  629. opacity:1;
  630. margin-top:-53px;
  631. margin-left:10px;
  632. transition: all 0.7s ease-out;
  633. -o-transition-transition: all 0.7s ease-out;
  634. -webkit-transition: all 0.7s ease-out;
  635. -moz-transition: all 0.7s ease-out;
  636. -webkit-transform: rotateX(360deg);
  637. -moz-transform: rotateX(360deg);
  638. transform: rotateX(360deg);
  639. }
  640.  
  641.  
  642. #box2{
  643. position:fixed !important;
  644. width:30px;
  645. padding:20px;
  646. padding-top:10px;
  647. background:white;
  648. height:5px;
  649. margin-top:-53px;
  650. margin-left:159px;
  651. text-align:center;
  652. z-index:5;
  653. font-family:pewp;
  654. color:#000;
  655. font-size:14px;
  656. line-height:12px;
  657. border: 2px solid #ccc;
  658. opacity:0;
  659. overflow-y:hidden;
  660. overflow-x:hidden;
  661. -o-transition-transition: all 0.7s linear;
  662. -webkit-transition: all 0.7s linear;
  663. -moz-transition: all 0.7s linear;
  664. border-right:2px solid #ccc;
  665. border-left:2px solid #ccc;
  666. }
  667.  
  668. #sidebar:hover #box2{
  669. opacity:1;
  670. margin-top:-53px;
  671. margin-left:159px;
  672. transition: all 0.7s ease-out;
  673. -o-transition-transition: all 0.7s ease-out;
  674. -webkit-transition: all 0.7s ease-out;
  675. -moz-transition: all 0.7s ease-out;
  676. -webkit-transform: rotateX(360deg);
  677. -moz-transform: rotateX(360deg);
  678. transform: rotateX(360deg);
  679. }
  680.  
  681.  
  682.  
  683. #sidebarpic img {
  684. margin-top:-0px;
  685. height:315px;
  686. opacity:.8;
  687. width:240px;
  688. transition: all 0.5s ease-out;
  689. -o-transition-transition: all 0.5s ease-out;
  690. -webkit-transition: all 0.5s ease-out;
  691. -moz-transition: all 0.5s ease-out;
  692. }
  693.  
  694. #sidebar:hover #sidebarpic img{
  695. opacity:0.4;
  696. transition: all 0.5s ease-out;
  697. -o-transition-transition: all 0.5s ease-out;
  698. -webkit-transition: all 0.5s ease-out;
  699. -moz-transition: all 0.5s ease-out;
  700. }
  701.  
  702.  
  703. #link1{
  704. position:fixed;
  705. z-index:999;
  706. width:25px;
  707. height:25px;
  708. padding:3px;
  709. margin-left:150px;
  710. margin-top:165px;
  711. background: white;
  712. border-radius: 30px 10px / 10px 30px;
  713. border-top:4px solid #333;
  714. border-left: 4px solid #333;
  715. border-right: 3px solid #333;
  716. border-bottom: 3px solid #333;
  717. line-height:25px;
  718. text-align:center;
  719. text-color: {color:text};
  720. font-size: 15px;
  721. letter-spacing: 1px;
  722. font-family: calibri;
  723. transition: all 0.5s ease-out;
  724. -o-transition-transition: all 0.5s ease-out;
  725. -webkit-transition: all 0.5s ease-out;
  726. -moz-transition: all 0.5s ease-out;
  727. -webkit-animation: fadeInDown 2s;
  728. -moz-animation: fadeInDown 2s;
  729. -ms-animation: fadeInDown 2s;
  730. }
  731.  
  732. #link1:hover{
  733. border-radius:1px;
  734. transition: all 0.5s ease-out;
  735. -o-transition-transition: all 0.5s ease-out;
  736. -webkit-transition: all 0.5s ease-out;
  737. -moz-transition: all 0.5s ease-out;
  738. }
  739.  
  740. #link2{
  741. position:fixed;
  742. z-index:999;
  743. width:25px;
  744. height:25px;
  745. opacity: 2;
  746. padding:3px;
  747. margin-left:150px;
  748. margin-top:220px;
  749. background: white;
  750. border-radius: 10px 30px / 30px 10px;
  751. border-top:4px solid #333;
  752. border-left: 4px solid #333;
  753. border-right: 3px solid #333;
  754. border-bottom: 3px solid #333;
  755. line-height:25px;
  756. text-align:center;
  757. text-color: {color:text};
  758. font-size: 15px;
  759. letter-spacing: 1px;
  760. font-family: calibri;
  761. transition: all 0.5s ease-out;
  762. -o-transition-transition: all 0.5s ease-out;
  763. -webkit-transition: all 0.5s ease-out;
  764. -moz-transition: all 0.5s ease-out;
  765. -webkit-animation: fadeInDown 2s;
  766. -moz-animation: fadeInDown 2s;
  767. -ms-animation: fadeInDown 2s;
  768. }
  769.  
  770. #link2:hover{
  771. border-radius:1px;
  772. transition: all 0.5s ease-out;
  773. -o-transition-transition: all 0.5s ease-out;
  774. -webkit-transition: all 0.5s ease-out;
  775. -moz-transition: all 0.5s ease-out;
  776. }
  777.  
  778. #link3{
  779. position:fixed;
  780. z-index:999;
  781. width:25px;
  782. height:25px;
  783. opacity: 2;
  784. padding:3px;
  785. margin-left:150px;
  786. margin-top:275px;
  787. background: white;
  788. border-radius: 30px 10px / 10px 30px;
  789. border-top:4px solid #333;
  790. border-left: 4px solid #333;
  791. border-right: 3px solid #333;
  792. border-bottom: 3px solid #333;
  793. line-height:25px;
  794. text-align:center;
  795. text-color: {color:text};
  796. font-size: 15px;
  797. letter-spacing: 1px;
  798. font-family: calibri;
  799. transition: all 0.5s ease-out;
  800. -o-transition-transition: all 0.5s ease-out;
  801. -webkit-transition: all 0.5s ease-out;
  802. -moz-transition: all 0.5s ease-out;
  803. -webkit-animation: fadeInDown 2s;
  804. -moz-animation: fadeInDown 2s;
  805. -ms-animation: fadeInDown 2s;
  806. }
  807.  
  808. #link3:hover{
  809. border-radius:1px;
  810. transition: all 0.5s ease-out;
  811. -o-transition-transition: all 0.5s ease-out;
  812. -webkit-transition: all 0.5s ease-out;
  813. -moz-transition: all 0.5s ease-out;
  814. }
  815.  
  816.  
  817. #link4{
  818. position:fixed;
  819. z-index:999;
  820. width:25px;
  821. height:25px;
  822. opacity: 2;
  823. border-radius: 10px 30px / 30px 10px;
  824. padding:3px;
  825. margin-left:150px;
  826. margin-top:330px;
  827. background: white;
  828. border-top:4px solid #333;
  829. border-left: 4px solid #333;
  830. border-right: 3px solid #333;
  831. border-bottom: 3px solid #333;
  832. line-height:25px;
  833. text-align:center;
  834. text-color: {color:text};
  835. font-size: 15px;
  836. letter-spacing: 1px;
  837. font-family: calibri;
  838. transition: all 0.5s ease-out;
  839. -o-transition-transition: all 0.5s ease-out;
  840. -webkit-transition: all 0.5s ease-out;
  841. -moz-transition: all 0.5s ease-out;
  842. -webkit-animation: fadeInDown 2s;
  843. -moz-animation: fadeInDown 2s;
  844. -ms-animation: fadeInDown 2s;
  845. }
  846.  
  847. #link4:hover{
  848. border-radius:1px;
  849. transition: all 0.5s ease-out;
  850. -o-transition-transition: all 0.5s ease-out;
  851. -webkit-transition: all 0.5s ease-out;
  852. -moz-transition: all 0.5s ease-out;
  853. }
  854.  
  855.  
  856. #link5{
  857. position:fixed;
  858. z-index:999;
  859. width:25px;
  860. height:24px;
  861. opacity: 1;
  862. padding:3px;
  863. margin-left:150px;
  864. margin-top:385px;
  865. background:white;
  866. border-top:4px solid #333;
  867. border-left: 4px solid #333;
  868. border-right: 3px solid #333;
  869. border-bottom: 3px solid #333;
  870. line-height:25px;
  871. text-align:center;
  872. text-color: {color:text};
  873. font-size: 15px;
  874. border-radius: 30px 10px / 10px 30px;
  875. letter-spacing: 1px;
  876. font-family: calibri;
  877. transition: all 0.5s ease-out;
  878. -o-transition-transition: all 0.5s ease-out;
  879. -webkit-transition: all 0.5s ease-out;
  880. -moz-transition: all 0.5s ease-out;
  881. -webkit-animation: fadeInDown 2s;
  882. -moz-animation: fadeInDown 2s;
  883. -ms-animation: fadeInDown 2s;
  884. }
  885.  
  886. #link5:hover{
  887. border-radius:1px;
  888. transition: all 0.5s ease-out;
  889. -o-transition-transition: all 0.5s ease-out;
  890. -webkit-transition: all 0.5s ease-out;
  891. -moz-transition: all 0.5s ease-out;
  892. }
  893.  
  894. #lace{
  895. background-image:url('http://static.tumblr.com/3yblkz0/S8omdno3x/jaja.png');
  896. left:0;
  897. width:100%;
  898. margin-top: 18px;
  899. height:18px;
  900. position: fixed;
  901. z-index: 999999999999999999999;
  902. opacity:1;
  903. }
  904.  
  905. #white {
  906. background-color: #fff;
  907. repeat:repeat-x;
  908. left:0;
  909. width:100%;
  910. margin-top: -12px;
  911. height:30px;
  912. position: fixed;
  913. z-index: 999999999999999999999;
  914. opacity:1;
  915. }
  916.  
  917. #quote{
  918. position: fixed;
  919. margin-top: -29px;
  920. margin-left: -112px;
  921. height: 15px;
  922. width: 1348px;
  923. background-color:transparent;
  924. z-index: 9999999999999999999999;
  925. opacity: 1;
  926. font-family: calibri;
  927. text-transform: uppercase;
  928. text-align:center;
  929. font-size: 14px;
  930. border-left:3px solid #fff;
  931. border-right:3px solid #fff;
  932. box-shadow: 0px 0px 0px #aaa;
  933. padding-top: 6px;
  934. padding-left: 10px;
  935. letter-spacing: 1px;
  936. text-shadow:0px 0px 2px #000;
  937. line-height: 0px;
  938. color: {color:quote text};
  939. }
  940. #quote:hover{
  941. text-transform:uppercase;
  942. font-family: poop;
  943. font-size: 14px;
  944. letter-spacing: 4px;
  945. }
  946.  
  947. .sidebarbag{
  948. position:fixed;
  949. margin-left:160px;
  950. top: 0px;
  951. background-color:{color:backgrd};
  952. background-image:url({image:sidebar bg});
  953. border-bottom-left-radius:15px;
  954. border-bottom-right-radius:15px;
  955. height:790px;
  956. border-right: 5px solid #000;
  957. box-shadow: 0px 0px 5px #000;
  958. opacity:1;
  959. width:14px;
  960. border-bottom:1px solid #fff;
  961. border-left: 1px solid #fff;
  962. border-right: 1px solid #fff;
  963. -webkit-animation: fadeInUp 2s;
  964. -moz-animation: fadeInUp 2s;
  965. -ms-animation: fadeInUp 2s;
  966. transition: all 0.6s ease-out;
  967. -o-transition-transition: all 0.6s ease-out;
  968. -webkit-transition: all 0.6s ease-out;
  969. -moz-transition: all 0.6s ease-out;
  970.  
  971. }
  972. .sidebarbag:hover{
  973. background-position:right;
  974. transition: all 0.6s ease-out;
  975. -o-transition-transition: all 0.6s ease-out;
  976. -webkit-transition: all 0.6s ease-out;
  977. -moz-transition: all 0.6s ease-out;
  978. }
  979. .sidebarbag:hover{
  980. background-position:right;
  981. transition: all 0.6s ease-out;
  982. -o-transition-transition: all 0.6s ease-out;
  983. -webkit-transition: all 0.6s ease-out;
  984. -moz-transition: all 0.6s ease-out;
  985. }
  986.  
  987.  
  988. .sidebarbag2{
  989. position:fixed;
  990. margin-left:1050px;
  991. top: 0px;
  992. border-top-right-radius:15px;
  993. border-top-left-radius:15px;
  994. background-color:{color:backgrd};
  995. background-image:url({image:sidebar bg});
  996. height:790px;
  997. border-right: 5px solid #000;
  998. box-shadow: 0px 0px 5px #000;
  999. opacity:1;
  1000. width:14px;
  1001. border-bottom:1px solid #fff;
  1002. border-left: 1px solid #fff;
  1003. border-right: 1px solid #fff;
  1004. transition: all 0.6s ease-out;
  1005. -o-transition-transition: all 0.6s ease-out;
  1006. -webkit-transition: all 0.6s ease-out;
  1007. -moz-transition: all 0.6s ease-out;
  1008. -webkit-animation: fadeInDown 2s;
  1009. -moz-animation: fadeInDown 2s;
  1010. -ms-animation: fadeInDown 2s;
  1011. }
  1012. .sidebarbag2:hover{
  1013. background-position:right;
  1014. transition: all 0.6s ease-out;
  1015. -o-transition-transition: all 0.6s ease-out;
  1016. -webkit-transition: all 0.6s ease-out;
  1017. -moz-transition: all 0.6s ease-out;
  1018. }
  1019. .sidebarbag2:hover{
  1020. background-position:right;
  1021. transition: all 0.6s ease-out;
  1022. -o-transition-transition: all 0.6s ease-out;
  1023. -webkit-transition: all 0.6s ease-out;
  1024. -moz-transition: all 0.6s ease-out;
  1025. }
  1026.  
  1027. /*CUSTOMIZE TITLE OF ENTRIES HERE*/
  1028. .title{
  1029. font-family:blackswan;
  1030. font-size: 36px;
  1031. line-height: 29px;
  1032. color:{color:title};
  1033. font-weight: normal;
  1034. }
  1035.  
  1036. @font-face { font-family: "blackswan"; src: url('http://static.tumblr.com/q54tzar/7POm34eyl/a_s_black_swan_3_.ttf'); }
  1037.  
  1038.  
  1039. /*CUSTOMIZE PERMALINKS OF TEXT POSTS AND SUCH HERE*/
  1040. .permalink a { color:#000; }
  1041.  
  1042. .entry .permalink {
  1043. text-align:right;
  1044. opacity:1;
  1045. text-transform:uppercase;
  1046. margin-bottom:0px;
  1047. font-family:calibri;
  1048. font-size:10px;
  1049. color:#000000;
  1050. margin-right:-33px;
  1051. -webkit-transition: all 0.5s ease-out;
  1052. -moz-transition: all 0.5s ease-out;
  1053. transition: all 0.5s ease-out;}
  1054.  
  1055. .entry:hover .permalink {
  1056. margin-right:5px;
  1057. -webkit-transition: all 0.5s ease-out;
  1058. -moz-transition: all 0.5s ease-out;
  1059. transition: all 0.5s ease-out;
  1060. }
  1061.  
  1062.  
  1063. /*I RECCOMMEND TO NOT TOUCH ANY OF THIS LOLz*/
  1064. #infscr-loading{
  1065. bottom: -70px;
  1066. position: absolute;
  1067. left: 50%;
  1068. margin-left:-8px;
  1069. width:16px;
  1070. height:11px;
  1071. overflow:hidden;
  1072. margin-bottom: 50px;
  1073. }
  1074.  
  1075. #postnotes{
  1076. text-align: justify;}
  1077.  
  1078. #postnotes blockquote{
  1079. border: 0px;}
  1080.  
  1081. blockquote{
  1082. padding:0px 0px 2px 5px;
  1083. margin:0px 0px 2px 10px;
  1084. border-left: 1px dotted #555555;
  1085. }
  1086.  
  1087. blockquote p, ul{
  1088. margin:0px;
  1089. padding:0px;
  1090. }
  1091.  
  1092. a img{border: 0px;}
  1093.  
  1094.  
  1095. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  1096.  
  1097. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  1098. .user_7 .label, .user_8 .label, .user_9 .label {color:{color:text};}
  1099.  
  1100. .notes img{width:10px; position:relative; top:3px;}
  1101. <--ses-->
  1102. small{font-size: 90%;}
  1103.  
  1104. {CustomCSS}
  1105.  
  1106. </style>
  1107.  
  1108. {block:IndexPage}
  1109. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  1110. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  1111.  
  1112. <script type="text/javascript">
  1113. $(window).load(function(){
  1114. var $wall = $('#posts');
  1115. $wall.imagesLoaded(function(){
  1116. $wall.masonry({
  1117. itemSelector: '.entry, .entry_photo',
  1118. isAnimated : false
  1119. });
  1120. });
  1121.  
  1122. $wall.infinitescroll({
  1123. navSelector : '#pagination',
  1124. nextSelector : '#pagination a',
  1125. itemSelector : '.entry, .entry_photo',
  1126. bufferPx : 2000,
  1127. debug : false,
  1128. errorCallback: function() {
  1129. $('#infscr-loading').fadeOut('normal');
  1130. }},
  1131. function( newElements ) {
  1132. var $newElems = $( newElements );
  1133. $newElems.hide();
  1134. $newElems.imagesLoaded(function(){
  1135. $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
  1136. });
  1137. }); $('#posts').show(500);
  1138. });
  1139. </script>
  1140.  
  1141. {/block:IndexPage}
  1142.  
  1143.  
  1144. <title>{title}</title>
  1145.  
  1146. <link rel="shortcut icon" href="{Favicon}" />
  1147. <meta name="viewport" content="width=820" />
  1148. </head>
  1149.  
  1150. <body onkeydown="return false">
  1151. <BODY onselectstart="return false;" ondragstart="return false;">
  1152. <div class="wrapper">
  1153. <div class="header">
  1154. </div>
  1155.  
  1156. <div id="cage">
  1157. <div id="white"></div>
  1158. <div id="lace"></div>
  1159. <div id="center">
  1160.  
  1161. <!--STUFF THAT GOES INTO THE SIDEBAR-->
  1162. <div id="sidebar">
  1163. <div class="phineas">{text:blogtitle}</div>
  1164. <div class="linkbar"></div>
  1165. <center>
  1166. <a href="/"><div id="sidebarpic">
  1167. <a href="/"><img src="{image:sidebar}" width=100%></a>
  1168. <div id="stats"></div>
  1169. <div id="stats2"></div>
  1170. <div id="box">{text:stats}</div>
  1171. <div id="box2">{text:stats2}</div>
  1172. <div id="desc">{description}</div>
  1173.  
  1174. </center>
  1175.  
  1176. </div>
  1177. <div class="linkback1"></div>
  1178. <div class="linkback2"></div>
  1179. <div class="linkback3"></div>
  1180. <div class="linkback4"></div>
  1181. <div class="linkback5"></div>
  1182.  
  1183. <div id="link1"><a href="{text:link one}"title="{text:link one hover title}">01</a></div>
  1184.  
  1185. <div id="link2"><a href="{text:link two}"title="{text:link two hover title}">02</a></div>
  1186.  
  1187. <div id="link3"><a href="{text:link three}"title="{text:link three hover title}">03</a></div>
  1188.  
  1189. <div id="link4"><a href="{text:link four}"title="{text:link four hover title}">04</a></div>
  1190.  
  1191. <div id="link5"><a href="http://preachlarcel.tumblr.com"title="Theme Credit">05</a>
  1192. </div>
  1193.  
  1194.  
  1195.  
  1196. <!------------------------------------->
  1197.  
  1198.  
  1199. <div class="left">
  1200. <div id="quote">{text:quote}</div>
  1201. <div class="sidebarbag"></div>
  1202. <div class="sidebarbag2"></div>
  1203. <div class="sidebarbag3"></div>
  1204. <div id="posts">
  1205. {block:Posts}
  1206. <div class="entry">
  1207.  
  1208.  
  1209. {block:Text}{block:Title}<span class="title">{Title}</span>{/block:Title}<span class="body">{Body}</span><p align=right><span class="permalink"><a
  1210.  
  1211. href="{Permalink}"><a href="{Permalink}"><a href="{Permalink}">{notecountwithlabel}</a></a><br>{/block:HasTags}</span></align>
  1212. {/block:Text}
  1213.  
  1214. {block:Link}<a href="{URL}" class="title">{Name}</a>{block:Description}<div class="body">{Description}</div>{/block:Description} <p align=right><span
  1215.  
  1216. class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"></span></align>{block:Link}
  1217.  
  1218. {block:Photo}
  1219. {block:IndexPage}
  1220. <center>
  1221. <div class="perma">
  1222. <a href="{Permalink}">{NoteCount} notes</a> ♥ <a href="{ReblogURL}" target="_blank"> reblog</a> </div>
  1223.  
  1224. <div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  1225. {/block:IndexPage}
  1226. {block:PermalinkPage}
  1227. {LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  1228.  
  1229. {LinkCloseTag}
  1230. {/block:PermalinkPage}
  1231. {/block:Photo}
  1232.  
  1233. {block:Photoset}
  1234. {block:IndexPage}
  1235. <center>
  1236.  
  1237. <div class="perma">
  1238. <a href="{ReblogURL}" target="_blank"> reblog </a> </div>
  1239.  
  1240. {Photoset-250}</center>
  1241. {/block:IndexPage}
  1242. {block:PermalinkPage}
  1243. <center>
  1244. {Photoset-500}</center>
  1245. {/block:PermalinkPage}
  1246. {/block:Photoset}
  1247.  
  1248. {block:Quote}<span class="title">"{Quote}"</span> — {block:Source}<b>{Source}</b>{/block:Source}<br><p align=right><span class="permalink"><a
  1249.  
  1250. href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"> </span>{/block:Quote}
  1251.  
  1252. {block:Chat}{block:Title}<span class="title">{Title}</span>{/block:Title}
  1253. <ul class="chat">
  1254. {block:Lines}
  1255. <li class="user_{UserNumber}">
  1256. {block:Label}
  1257. <span class="label">{Label}</span>
  1258. {/block:Label}
  1259.  
  1260. {Line}
  1261. </li>
  1262. {/block:Lines}
  1263. <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}">
  1264. {/block:Chat}
  1265.  
  1266. {block:Audio}
  1267. <div style="width:200px; height:30px;">
  1268. {AudioPlayerBlack}
  1269. </div>
  1270. {block:IndexPage}<span class="permalink">
  1271. <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"> </a>
  1272. </span>{/block:IndexPage}
  1273. {/block:Audio}
  1274.  
  1275. {block:Video}
  1276. {block:IndexPage}
  1277. <center>
  1278. <div class="perma">
  1279. <a href="{ReblogURL}" target="_blank"> reblog </a> </div>
  1280. {Video-250}</center>
  1281. {/block:IndexPage}
  1282. {block:PermalinkPage}
  1283. <center>
  1284. {Video-400}</center>
  1285. {/block:PermalinkPage}
  1286. {block:Video}
  1287.  
  1288.  
  1289.  
  1290. {block:Answer}<br>
  1291. <img src="{AskerPortraitURL-30}" width="30" align="left" style="margin-left: -1px; margin-top: -15px; padding: 2px; border: 1px solid #ddd; border-top-left-radius: 5px; border-bottom-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; z-index:1; opacity:1; background: white; text-align:left;box-shadow:1px 1px 1px #aaa;"/>
  1292.  
  1293. <div style="border-top-left-radius: 5px; border-bottom-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; border: 2px solid #ddd; margin-top: -7px; margin-left:5px; text-align: left; line-height:13px; min-height:30px; padding-left: 5px; padding-top: 5px; padding-right: 4px; padding-bottom: 2px; background: white; z-index: 0;box-shadow:1px 1px 1px #aaa;width:210px;">&nbsp;<askk>{Asker}:</askk><div style="margin-top:0px;">{Question}</div></div>
  1294.  
  1295. <div style="padding-top:9px;"></div>
  1296.  
  1297. <div style="border-top-left-radius: 5px; border-bottom-left-radius: 5px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; border: 2px solid transparent; margin-top: 2px; margin-left: 2px; {block:IndexPage} width: 210px; {/block:IndexPage}{block:PermalinkPage} width:690px; {/block:PermalinkPage} min-height:28px; line-height: 13px; padding-left: 5px; padding-top: 5px; padding-right: 4px; padding-bottom: 2px; background: transparent; z-index: 0; text-align: left;box-shadow:1px 1px 1px transparent;"><div style="margin-top:0px;">{Answer}</div></div>
  1298. {block:IndexPage}<div style="align: right; border-top: 1px solid {color:borders}; margin-top:5px; text-align: center"><a href="{Permalink}"> {NoteCount} </a> notes</div>{/block:IndexPage}
  1299. {/block:Answer}
  1300. {/block:Answer}
  1301.  
  1302.  
  1303.  
  1304. {/block:IndexPage}
  1305.  
  1306.  
  1307. {block:PermalinkPage}
  1308. <center>
  1309. <br>{block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} &middot; {block:Tags}<a href="TagURL"> #{Tag}</a> {/block:Tags}{/block:hasTags}</center>
  1310.  
  1311.  
  1312. {/block:PermalinkPage}
  1313.  
  1314.  
  1315. {block:PostNotes}{PostNotes}
  1316. {/block:PostNotes}
  1317. </div>
  1318.  
  1319.  
  1320. {/block:Posts}
  1321. </div>
  1322.  
  1323. {block:IndexPage}
  1324. {block:Pagination}
  1325. <div id="pagination">
  1326. {block:NextPage}
  1327. <a id="nextPage" href="{NextPage}"></a>
  1328. {/block:NextPage}
  1329. {block:PreviousPage}
  1330. <a href="{PreviousPage}"></a>
  1331. {/block:PreviousPage}
  1332. </div>
  1333. {/block:Pagination}
  1334. {/block:IndexPage}
  1335. </div>
  1336. </body>
  1337.  
  1338. <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>
  1339. </div>
  1340. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement