Advertisement
Kimmyvp123

Custom for Kendall :D

Jul 30th, 2013
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 36.55 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:linkborder" content="#000"/>
  228. <meta name="color:postborder" content="#f5e1f5"/>
  229. <meta name="color:titlehover" content="#f5e1f5"/>
  230. <meta name="image:sidebar" content="1"/>
  231. <meta name="image:background" content="1"/>
  232. <meta name="image:sidebar bg" content="1"/>
  233. <meta name="text:blogtitle" content="Hello lovelies" />
  234. <meta name="text:Link One" content""/>
  235. <meta name="text:Link One Hover Title" content"hover title1"/>
  236. <meta name="text:Link Two" content""/>
  237. <meta name="text:Link Two Hover Title" content"hover title2"/>
  238. <meta name="text:Link Three" content""/>
  239. <meta name="text:Link Three Hover Title" content"hover title3"/>
  240. <meta name="text:Link Four" content="" />
  241. <meta name="text:Link Four Hover Title" content"hover title4"/>
  242.  
  243.  
  244. <style type="text/css">
  245.  
  246. #fade { /*--Transparent background layer--*/
  247. display: none; /*--hidden by default--*/
  248. background:url(http://24.media.tumblr.com/222165b55b774b5f3cb41dcd88cc4b05/tumblr_mm8xqcUmjW1s5um8no1_250.png);
  249. position: fixed; left: 0; top: 0;
  250. width: 100%; height: 100%;
  251. opacity: .80;
  252. z-index: 9999;
  253. }
  254. .popup_block{
  255. display: none; /*--hidden by default--*/
  256. background: #fff;
  257. padding: 20px;
  258. border: 10px solid #ccc;
  259. float: left;
  260. font-size:12px;
  261. font-family:arial;
  262. position: fixed;
  263. top: 50%; left: 50%;
  264. z-index: 99999;
  265. /*--CSS3 Box Shadows--*/
  266. -webkit-box-shadow: 0px 0px 20px #000;
  267. -moz-box-shadow: 0px 0px 20px #000;
  268. box-shadow: 0px 0px 20px #000;
  269. /*--CSS3 Rounded Corners--*/
  270. -webkit-border-radius: 10px;
  271. -moz-border-radius: 10px;
  272. border-radius: 10px;
  273. }
  274. img.btn_close {
  275. float: right;
  276. margin: -5px -5px 0 0;
  277. }
  278. /*--Making IE6 Understand Fixed Positioning--*/
  279. *html #fade {
  280. position: absolute;
  281. }
  282. *html .popup_block {
  283. position: absolute;
  284. }
  285.  
  286.  
  287.  
  288. #s-m-t-tooltip {
  289. max-width:300px;
  290. padding:6px 6px 6px 6px;
  291. margin:20px 0px 0px 20px;
  292. background: #fff; /* change the background color */
  293. border:1px solid #eee; /* change the border color */
  294. border-right:4px solid #eee;
  295. border-left:4px solid #eee;
  296. font-family:pewp; /* change the font */
  297. font-size:10px; /* change the font size */
  298. letter-spacing:1px; /* change the letter spacing */
  299. text-transform:uppercase; /* can be uppercase, lowercase, none*/
  300. color:{color:hoverlink textcolor}; /* change the text color */
  301. z-index:999999;
  302. -moz-border-radius: 35px 20px / 20px 35px;
  303. border-radius: 35px 20px / 20px 35px;
  304. -moz-box-shadow:1px 1px 2px 1px #aaa;
  305. -webkit-box-shadow:1px 1px 2px 1px #aaa;
  306. box-shadow:1px 1px 2px 1px #aaa;
  307. }
  308.  
  309. 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-
  310.  
  311. transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
  312.  
  313. 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;}
  314.  
  315. p {
  316. margin:0px;
  317. margin-top:0px;
  318. }
  319.  
  320.  
  321. body {
  322. padding: 0px;
  323. margin: 0px;
  324. color:{color:text};
  325. font-family: dixel;
  326. line-height:7px;
  327. font-size:8px;
  328. background-color: {color:Background};
  329. background-image:url({image:Background});
  330. background-attachment: fixed;
  331. background-repeat: repeat;
  332. }
  333.  
  334.  
  335. a:link, a:active, a:visited{
  336. text-decoration: none;
  337. -webkit-transition: color 0.3s ease-out;
  338. -moz-transition: color 0.3s ease-out;
  339. transition: color 0.3s ease-out;
  340. color:{color:link};
  341. }
  342.  
  343. a:hover {
  344. text-decoration: none;
  345. font-style:;
  346. color: {color:Hover};
  347. }
  348.  
  349. div#center{
  350. margin:auto;
  351. position:relative;
  352. width:1000px;
  353. background-color:;
  354. overflow:auto;
  355. overflow-y:hidden;
  356. }
  357.  
  358. ::-webkit-scrollbar-thumb:vertical {
  359. height:9px;
  360. background-color: {color:scrollbar};
  361. }
  362.  
  363. ::-webkit-scrollbar-thumb:horizontal {
  364. width:0px;
  365. height:0px;
  366. overflow:hidden;
  367. background:#fff;
  368. margin-right:px;
  369. }
  370.  
  371. ::-webkit-scrollbar {
  372. width:3px;
  373. height:5px;
  374. overflow:hidden;
  375. background:#ddd;
  376. margin-right:5px;
  377. }
  378.  
  379. /*CUSTOMIZE ENTRY SETTINGS HERE*/
  380. .entry {
  381. float:left;
  382. display: block;
  383. margin:5px;
  384. opacity:.6;
  385. overflow:hidden;
  386. border: 1px solid #c9c9c9;
  387. box-shadow:2px 2px 2px #ddd;
  388. padding: 6px;
  389. width:230px;
  390. font-family:caviar;
  391. font-size:14px;
  392. line-height:20px;
  393. padding-bottom: 3px;
  394. {block:PermalinkPage}
  395. width:520px;
  396. text-align:left;
  397. line-height:15px;
  398. {/block:PermalinkPage}
  399. background-color:{color:postborder};
  400. background-image:URL();
  401. -webkit-transition: all 0.5s linear;
  402. -moz-transition: all 0.5s linear;
  403. transition: all 0.5s linear;
  404. -webkit-animation: SlideIn 2s;
  405. -moz-animation: SlideIn 2s;
  406. -ms-animation: SlideIn 2s;
  407. }
  408.  
  409. .entry:hover{
  410. opacity:1;
  411. }
  412.  
  413.  
  414. /*CUSTOMIZE THE APPEARANCE OF PERMALINKS*/
  415.  
  416. .entry .perma a{
  417. color:#000;
  418. }
  419. .entry .perma{
  420. width:245px;
  421. height:22px;
  422. font-family: consolas;
  423. text-transform:uppercase;
  424. position: absolute;
  425. font-size: 10px;
  426. line-height: 28px;
  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: -6px;
  435. border-radius: 0px;
  436. -webkit-transition: opacity 0.5s linear; opacity: 0.0;
  437. -webkit-transition: all 0.5s linear;
  438. -moz-transition: all 0.5s linear;
  439. transition: all 0.5s linear;
  440. }
  441.  
  442. .entry:hover .perma{
  443. opacity:0.9;
  444. top:0px;}
  445.  
  446.  
  447.  
  448. /*CUSTOMIZE POST POSITIONING AND STUFFZ HERE*/
  449. #posts {
  450. width:800px;
  451. margin-top:35px;
  452. z-index:999999;
  453. margin-left:219px;
  454. right:auto;
  455. background:transparent;
  456. margin-right:auto;
  457. position:relative;
  458. overflow-y: hidden;
  459. -webkit-transition: all 0.5s linear;
  460. -moz-transition: all 0.5s linear;
  461. transition: all 0.5s linear;
  462. }
  463.  
  464. .duck{
  465. position: fixed !important;
  466. z-index: 99;
  467. font-family: arial;
  468. line-height:10px;
  469. font-size: 1px;
  470. padding: 3px;
  471. bottom:5px;
  472. left:1325px;
  473. height:15px;
  474. width:18px;
  475. border-radius:10px;
  476. border:1px solid {color:borders};
  477. background:white;
  478. }
  479.  
  480. /*CUSTOMIZE SIDEBAR HERE*/
  481. #sidebar{
  482. -webkit-animation:fadeInLeftBig ease-in-out 2s;
  483. -moz-animation:fadeInLeftBig ease-in-out 2s;
  484. -ms-animation:fadeInLeftBig ease-in-out 2s;
  485. z-index: 3;
  486. position:fixed !important;
  487. width:240px;
  488. background: white;
  489. padding: 10px;
  490. border-top: 8px solid #070700;
  491. border-left: 8px solid #070707;
  492. border-right: 8px solid #070707;
  493. border-bottom: 8px solid #070700;
  494. border-top-left-radius: 0px;
  495. border-top-right-radius: 0px;
  496. border-bottom-left-radius: 0px;
  497. border-bottom-right-radius: 0px;
  498. margin-top:140px;
  499. box-shadow: 0px 0px 5px #ddd;
  500. margin-left:-155px;
  501. text-align:center;
  502. }
  503.  
  504.  
  505.  
  506. #sidebar .phineas{
  507. position:fixed !important;
  508. width: 400px;
  509. opacity:1;
  510. margin-top: -57px;
  511. margin-left:25px;
  512. text-align: left;
  513. line-height: 54px;
  514. color:{color:blogtitle};
  515. font-weight: normal;
  516. font-family: Cedarville;
  517. text-shadow: 1px 1px 3px {color:blogtitle shadow};
  518. font-size: 50px;
  519. z-index:6;
  520. -webkit-animation: tada 2s;
  521. -moz-animation: tada 2s;
  522. -ms-animation: tada 2s;
  523. }
  524. #sidebar:hover .phineas{
  525. text-transform:none;
  526. color: {color:titlehover};
  527. font-family: cedarville;
  528. letter-spacing: 1px;
  529. margin-left:25px;
  530. }
  531.  
  532.  
  533.  
  534. @font-face { font-family: "s"; src: url('http://static.tumblr.com/yo59jgt/m4om1rino/signerica_fat.ttf'); }
  535. @font-face { font-family: "comesinhandy"; src: url('http://static.tumblr.com/ygfurav/eGLmkhogi/comesinhandy.ttf'); }
  536. @font-face {font-family: "cedarville"; src: url('http://static.tumblr.com/fxpo5zq/oefmes3gi/cedarville_pnkfun_1_cursive.ttf');}
  537. @font-face { font-family: "dreams"; src: url('http://static.tumblr.com/4yxykdm/xXTlrecqr/caviardreams.ttf'); }
  538. @font-face{ font-family:jane; src: url('http://static.tumblr.com/bm7b8hm/vnWmf9864/janeaust.ttf');,}
  539. @font-face { font-family: "neou"; src: url('http://static.tumblr.com/t5cadah/Qzumnxg66/neou-thin.ttf'); }
  540. @font-face{font-family:"Jane Austen";src:url('http://static.tumblr.com/9wzbixa/ncHmj2mmb/janeaust.ttf');}
  541. @font-face { font-family: "pacifico"; src: url('http://static.tumblr.com/jdjsstr/Julm7s6p2/pacifico_1_.ttf'); }
  542. @font-face { font-family: "cutty"; src: url('http://static.tumblr.com/dcylwch/HvDmhxbob/cuttyfruty.ttf'); }
  543. @font-face { font-family: "beauty"; src: url('http://static.tumblr.com/2zvjoo9/n9Mm31t9e/discoverbeauty.ttf');}
  544. @font-face { font-family: "yolo"; src: url('http://static.tumblr.com/5fd89aw/H0ilkmgoh/arsenale_white.ttf'); }
  545. @font-face { font-family: "bebas"; src: url('http://static.tumblr.com/cvlbtjz/cnsln9tpp/bebasneue.otf'); }
  546. @font-face { font-family: "bold"; src: url('http://static.tumblr.com/cvlbtjz/cnsln9tpp/bebasneue.otf'); }
  547. @font-face { font-family: "bond"; src: url('hhttp://static.tumblr.com/t5cadah/QLlmki683/bondoluopeek.otf'); }
  548. @font-face {font-family: "beautiful every time"; src: url('http://static.tumblr.com/nsunyax/Pm3lzwzye/beautifuleverytime.ttf');}
  549. @font-face { font-family: "demo"; src: url('http://static.tumblr.com/jdjsstr/Eq8m819c1/neou-thin_1_.ttf'); }
  550. @font-face { font-family: "caviardreams"; src: url('http://static.tumblr.com/4yxykdm/xXTlrecqr/caviardreams.ttf'); }
  551. @font-face {font-family:"Bree"; src:url('http://static.tumblr.com/9wzbixa/YBvm26pgu/bree.ttf');}
  552. @font-face { font-family: "sb"; src: url('http://static.tumblr.com/yo59jgt/m4om1rino/signerica_fat.ttf'); }
  553. @font-face { font-family: "lala"; src: url('http://static.tumblr.com/vpzhdvv/6d7m90v7t/111.woff');}
  554. @font-face { font-family: "neverletgo"; src: url('http://static.tumblr.com/q54tzar/o02m2jt6c/neverletgo_3_.ttf'); }
  555. @font-face { font-family: "icons"; src: url('http://static.tumblr.com/8hrjcus/Q3fmg7rhn/breezi_font-webfont.ttf'); }
  556. @font-face {font-family:"CelesteHand"; src: url('http://static.tumblr.com/y5evvpz/dVCmkz0sf/celeste_hand.ttf');}
  557. @font-face {font-family:"Springtime"; src: url('http://static.tumblr.com/y5evvpz/7iomdz3n1/springtime.ttf');}
  558. @font-face {font-family:"Aderyn"; src:url('http://static.tumblr.com/9wzbixa/Qnqm26qzk/dk_aderyn_0.ttf');}
  559. @font-face { font-family: "dawning"; src: url('http://static.tumblr.com/viiafci/Hyzlxws2r/dawningofanewday.ttf'); }
  560.  
  561. #socks7{
  562. position:fixed !important;
  563. width:180px;
  564. padding:30px;
  565. padding-top:10px;
  566. background:white;
  567. height:60px;
  568. margin-top:-10px;
  569. margin-left:0px;
  570. text-align:center;
  571. z-index:5;
  572. font-family:pewp;
  573. color:#000;
  574. font-size:14px;
  575. line-height:15px;
  576. border: 2px solid #ccc;
  577. opacity:0;
  578. overflow-y:hidden;
  579. overflow-x:hidden;
  580. -o-transition-transition: all 0.4s linear;
  581. -webkit-transition: all 0.4s linear;
  582. -moz-transition: all 0.4s linear;
  583. box-shadow: 1px 1px 3px #aaa;
  584. border-right:2px solid #ccc;
  585. border-left:2px solid #ccc;
  586. -webkit-transform-origin: center center;
  587. -webkit-transform: rotate(-360deg);
  588. -moz-transform-origin: center center;
  589. -moz-transform: rotate(-360deg);
  590. -o-transform-origin: center center;
  591. -o-transform: rotate(-360deg);
  592. transform-origin: center center;
  593. transform: rotate(-360deg);
  594. }
  595.  
  596. #sidebar:hover #socks7{
  597. opacity:1;
  598. margin-top:-180px;
  599. margin-left:0px;
  600. -webkit-transform-origin: center center;
  601. -webkit-transform: rotate(360deg);
  602. -moz-transform-origin: center center;
  603. -moz-transform: rotate(360deg);
  604. -o-transform-origin: center center;
  605. -o-transform: rotate(360deg);
  606. transform-origin: center center;
  607. transform: rotate(360deg);
  608. transition: all 0.5s ease-out;
  609. -o-transition-transition: all 0.5s ease-out;
  610. -webkit-transition: all 0.5s ease-out;
  611. -moz-transition: all 0.5s ease-out;
  612. }
  613.  
  614. #sidebarpic img {
  615. margin-top:-0px;
  616. height:315px;
  617. opacity:.6;
  618. width:240px;
  619. transition: all 0.5s ease-out;
  620. -o-transition-transition: all 0.5s ease-out;
  621. -webkit-transition: all 0.5s ease-out;
  622. -moz-transition: all 0.5s ease-out;
  623. }
  624.  
  625. #sidebar:hover #sidebarpic img{
  626. -webkit-filter:blur(4px);
  627. transition: all 0.5s ease-out;
  628. -o-transition-transition: all 0.5s ease-out;
  629. -webkit-transition: all 0.5s ease-out;
  630. -moz-transition: all 0.5s ease-out;
  631. }
  632.  
  633.  
  634. #link1{
  635. position:fixed;
  636. z-index:999;
  637. width:25px;
  638. height:25px;
  639. padding:3px;
  640. margin-left:150px;
  641. margin-top:165px;
  642. background: white;
  643. border-radius: 30px 10px / 10px 30px;
  644. border-top:4px solid #333;
  645. border-left: 4px solid #333;
  646. border-right: 3px solid #333;
  647. border-bottom: 3px solid #333;
  648. line-height:25px;
  649. text-align:center;
  650. text-color: {color:text};
  651. font-size: 15px;
  652. letter-spacing: 1px;
  653. font-family: calibri;
  654. transition: all 0.5s ease-out;
  655. -o-transition-transition: all 0.5s ease-out;
  656. -webkit-transition: all 0.5s ease-out;
  657. -moz-transition: all 0.5s ease-out;
  658. -webkit-animation: fadeInDown 2s;
  659. -moz-animation: fadeInDown 2s;
  660. -ms-animation: fadeInDown 2s;
  661. }
  662.  
  663. #link1:hover{
  664. border-radius:1px;
  665. -webkit-transform-origin: center center;
  666. -webkit-transform: rotate(360deg);
  667. -moz-transform-origin: center center;
  668. -moz-transform: rotate(360deg);
  669. -o-transform-origin: center center;
  670. -o-transform: rotate(360deg);
  671. transform-origin: center center;
  672. transform: rotate(360deg);
  673. transition: all 0.5s ease-out;
  674. -o-transition-transition: all 0.5s ease-out;
  675. -webkit-transition: all 0.5s ease-out;
  676. -moz-transition: all 0.5s ease-out;
  677. }
  678.  
  679. #link2{
  680. position:fixed;
  681. z-index:999;
  682. width:25px;
  683. height:25px;
  684. opacity: 2;
  685. padding:3px;
  686. margin-left:150px;
  687. margin-top:220px;
  688. background: white;
  689. border-radius: 10px 30px / 30px 10px;
  690. border-top:4px solid #333;
  691. border-left: 4px solid #333;
  692. border-right: 3px solid #333;
  693. border-bottom: 3px solid #333;
  694. line-height:25px;
  695. text-align:center;
  696. text-color: {color:text};
  697. font-size: 15px;
  698. letter-spacing: 1px;
  699. font-family: calibri;
  700. transition: all 0.5s ease-out;
  701. -o-transition-transition: all 0.5s ease-out;
  702. -webkit-transition: all 0.5s ease-out;
  703. -moz-transition: all 0.5s ease-out;
  704. -webkit-animation: fadeInDown 2s;
  705. -moz-animation: fadeInDown 2s;
  706. -ms-animation: fadeInDown 2s;
  707. }
  708.  
  709. #link2:hover{
  710. border-radius:1px;
  711. -webkit-transform-origin: center center;
  712. -webkit-transform: rotate(360deg);
  713. -moz-transform-origin: center center;
  714. -moz-transform: rotate(360deg);
  715. -o-transform-origin: center center;
  716. -o-transform: rotate(360deg);
  717. transform-origin: center center;
  718. transform: rotate(360deg);
  719. transition: all 0.5s ease-out;
  720. -o-transition-transition: all 0.5s ease-out;
  721. -webkit-transition: all 0.5s ease-out;
  722. -moz-transition: all 0.5s ease-out;
  723. }
  724.  
  725. #link3{
  726. position:fixed;
  727. z-index:999;
  728. width:25px;
  729. height:25px;
  730. opacity: 2;
  731. padding:3px;
  732. margin-left:150px;
  733. margin-top:275px;
  734. background: white;
  735. border-radius: 30px 10px / 10px 30px;
  736. border-top:4px solid #333;
  737. border-left: 4px solid #333;
  738. border-right: 3px solid #333;
  739. border-bottom: 3px solid #333;
  740. line-height:25px;
  741. text-align:center;
  742. text-color: {color:text};
  743. font-size: 15px;
  744. letter-spacing: 1px;
  745. font-family: calibri;
  746. transition: all 0.5s ease-out;
  747. -o-transition-transition: all 0.5s ease-out;
  748. -webkit-transition: all 0.5s ease-out;
  749. -moz-transition: all 0.5s ease-out;
  750. -webkit-animation: fadeInDown 2s;
  751. -moz-animation: fadeInDown 2s;
  752. -ms-animation: fadeInDown 2s;
  753. }
  754.  
  755. #link3:hover{
  756. border-radius:1px;
  757. -webkit-transform-origin: center center;
  758. -webkit-transform: rotate(360deg);
  759. -moz-transform-origin: center center;
  760. -moz-transform: rotate(360deg);
  761. -o-transform-origin: center center;
  762. -o-transform: rotate(360deg);
  763. transform-origin: center center;
  764. transform: rotate(360deg);
  765. transition: all 0.5s ease-out;
  766. -o-transition-transition: all 0.5s ease-out;
  767. -webkit-transition: all 0.5s ease-out;
  768. -moz-transition: all 0.5s ease-out;
  769. }
  770.  
  771.  
  772. #link4{
  773. position:fixed;
  774. z-index:999;
  775. width:25px;
  776. height:25px;
  777. opacity: 2;
  778. border-radius: 10px 30px / 30px 10px;
  779. padding:3px;
  780. margin-left:150px;
  781. margin-top:330px;
  782. background: white;
  783. border-top:4px solid #333;
  784. border-left: 4px solid #333;
  785. border-right: 3px solid #333;
  786. border-bottom: 3px solid #333;
  787. line-height:25px;
  788. text-align:center;
  789. text-color: {color:text};
  790. font-size: 15px;
  791. letter-spacing: 1px;
  792. font-family: calibri;
  793. transition: all 0.5s ease-out;
  794. -o-transition-transition: all 0.5s ease-out;
  795. -webkit-transition: all 0.5s ease-out;
  796. -moz-transition: all 0.5s ease-out;
  797. -webkit-animation: fadeInDown 2s;
  798. -moz-animation: fadeInDown 2s;
  799. -ms-animation: fadeInDown 2s;
  800. }
  801.  
  802. #link4:hover{
  803. border-radius:1px;
  804. -webkit-transform-origin: center center;
  805. -webkit-transform: rotate(360deg);
  806. -moz-transform-origin: center center;
  807. -moz-transform: rotate(360deg);
  808. -o-transform-origin: center center;
  809. -o-transform: rotate(360deg);
  810. transform-origin: center center;
  811. transform: rotate(360deg);
  812. transition: all 0.5s ease-out;
  813. -o-transition-transition: all 0.5s ease-out;
  814. -webkit-transition: all 0.5s ease-out;
  815. -moz-transition: all 0.5s ease-out;
  816. }
  817.  
  818.  
  819. #link5{
  820. position:fixed;
  821. z-index:999;
  822. width:25px;
  823. height:24px;
  824. opacity: 1;
  825. padding:3px;
  826. margin-left:150px;
  827. margin-top:385px;
  828. background:white;
  829. border-top:4px solid #333;
  830. border-left: 4px solid #333;
  831. border-right: 3px solid #333;
  832. border-bottom: 3px solid #333;
  833. line-height:25px;
  834. text-align:center;
  835. text-color: {color:text};
  836. font-size: 15px;
  837. border-radius: 30px 10px / 10px 30px;
  838. letter-spacing: 1px;
  839. font-family: calibri;
  840. transition: all 0.5s ease-out;
  841. -o-transition-transition: all 0.5s ease-out;
  842. -webkit-transition: all 0.5s ease-out;
  843. -moz-transition: all 0.5s ease-out;
  844. -webkit-animation: fadeInDown 2s;
  845. -moz-animation: fadeInDown 2s;
  846. -ms-animation: fadeInDown 2s;
  847. }
  848.  
  849. #link5:hover{
  850. border-radius:1px;
  851. -webkit-transform-origin: center center;
  852. -webkit-transform: rotate(360deg);
  853. -moz-transform-origin: center center;
  854. -moz-transform: rotate(360deg);
  855. -o-transform-origin: center center;
  856. -o-transform: rotate(360deg);
  857. transform-origin: center center;
  858. transform: rotate(360deg);
  859. transition: all 0.5s ease-out;
  860. -o-transition-transition: all 0.5s ease-out;
  861. -webkit-transition: all 0.5s ease-out;
  862. -moz-transition: all 0.5s ease-out;
  863. }
  864.  
  865. #lace{
  866. width:100%;
  867. z-index:999999999;
  868. position:fixed !important;
  869. text-align:center;
  870. top:-18px;
  871. height:32px;
  872. line-height: 19px;
  873. background-color: transparent;
  874. background-image:url('http://static.tumblr.com/3yblkz0/S8omdno3x/jaja.png');
  875. repeat:false;
  876. color: black;
  877. opacity:1;
  878. font-size: 1px;
  879. padding-top: 3px;
  880. left:0px;
  881. border-bottom: 1px solid transparent;
  882. /*border: dotted 1px #cecece;*/
  883. -webkit-transition: all 0.7s linear;
  884. -moz-transition: all 0.7s linear;
  885. transition: all 0.7s linear;
  886. -webkit-animation: SlideIn 2s;
  887. -moz-animation: SlideIn 2s;
  888. -ms-animation: SlideIn 2s;
  889. }
  890.  
  891. .sidebarbag{
  892. position:fixed;
  893. margin-left:160px;
  894. top: 0px;
  895. background-color:{color:backgrd};
  896. background-image:url({image:sidebar bg});
  897. border-bottom-left-radius:15px;
  898. border-bottom-right-radius:15px;
  899. height:660px;
  900. border-right: 5px solid #000;
  901. box-shadow: 0px 0px 5px #000;
  902. opacity:0.6;
  903. width:14px;
  904. border-bottom:1px solid #fff;
  905. border-left: 1px solid #fff;
  906. border-right: 1px solid #fff;
  907. -webkit-animation: fadeInUp 3s;
  908. -moz-animation: fadeInUp 3s;
  909. -ms-animation: fadeInUp 3s;
  910.  
  911. }
  912.  
  913. .sidebarbag2{
  914. position:fixed;
  915. margin-left:1050px;
  916. top: 240px;
  917. border-top-right-radius:15px;
  918. border-top-left-radius:15px;
  919. background-color:{color:backgrd};
  920. background-image:url({image:sidebar bg});
  921. height:330%;
  922. border-right: 5px solid #000;
  923. box-shadow: 0px 0px 5px #000;
  924. opacity:0.6;
  925. width:14px;
  926. border-bottom:1px solid #fff;
  927. border-left: 1px solid #fff;
  928. border-right: 1px solid #fff;
  929. -webkit-animation: fadeInDown 2s;
  930. -moz-animation: fadeInDown 2s;
  931. -ms-animation: fadeInDown 2s;
  932. }
  933.  
  934. .sidebarbag3{
  935. position:fixed;
  936. margin-left:1100px;
  937. top: 160px;
  938. border-top-right-radius:15px;
  939. border-top-left-radius:15px;
  940. background-color:{color:backgrd};
  941. background-image:url({image:sidebar bg});
  942. height:500%;
  943. border-right: 5px solid #000;
  944. box-shadow: 0px 0px 5px #000;
  945. opacity:0.6;
  946. width:14px;
  947. border-bottom:1px solid #fff;
  948. border-left: 1px solid #fff;
  949. border-right: 1px solid #fff;
  950. -webkit-animation: fadeInDown 2s;
  951. -moz-animation: fadeInDown 2s;
  952. -ms-animation: fadeInDown 2s;
  953. }
  954.  
  955.  
  956. /*CUSTOMIZE TITLE OF ENTRIES HERE*/
  957. .title{
  958. font-family:Freestyle Script;
  959. font-size: 36px;
  960. line-height: 29px;
  961. color:{color:title};
  962. text-shadow:16px 16px 16px #f7ddca;
  963. font-weight: normal;
  964. }
  965.  
  966.  
  967.  
  968. /*CUSTOMIZE PERMALINKS OF TEXT POSTS AND SUCH HERE*/
  969. .permalink a { color:#000; }
  970.  
  971. .entry .permalink {
  972. text-align:right;
  973. opacity:0;
  974. text-transform:uppercase;
  975. margin-bottom:0px;
  976. font-family:calibri;
  977. font-size:10px;
  978. color:#000000;
  979. margin-right:-20px;
  980. -webkit-transition: all 0.5s ease-out;
  981. -moz-transition: all 0.5s ease-out;
  982. transition: all 0.5s ease-out;}
  983.  
  984. .entry:hover .permalink {
  985. margin-right:5px;
  986. opacity:1;
  987. -webkit-transition: all 0.5s ease-out;
  988. -moz-transition: all 0.5s ease-out;
  989. transition: all 0.5s ease-out;
  990. }
  991.  
  992.  
  993. /*I RECCOMMEND TO NOT TOUCH ANY OF THIS LOLz*/
  994. #infscr-loading{
  995. bottom: -70px;
  996. position: absolute;
  997. left: 50%;
  998. margin-left:-8px;
  999. width:16px;
  1000. height:11px;
  1001. overflow:hidden;
  1002. margin-bottom: 50px;
  1003. }
  1004.  
  1005. #postnotes{
  1006. text-align: justify;}
  1007.  
  1008. #postnotes blockquote{
  1009. border: 0px;}
  1010.  
  1011. blockquote{
  1012. padding:0px 0px 2px 5px;
  1013. margin:0px 0px 2px 10px;
  1014. border-left: 1px dotted #555555;
  1015. }
  1016.  
  1017. blockquote p, ul{
  1018. margin:0px;
  1019. padding:0px;
  1020. }
  1021.  
  1022. a img{border: 0px;}
  1023.  
  1024.  
  1025. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  1026.  
  1027. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  1028. .user_7 .label, .user_8 .label, .user_9 .label {color:{color:text};}
  1029.  
  1030. .notes img{width:10px; position:relative; top:3px;}
  1031. <--ses-->
  1032. small{font-size: 90%;}
  1033.  
  1034. {CustomCSS}
  1035.  
  1036. </style>
  1037.  
  1038. {block:IndexPage}
  1039. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  1040. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  1041.  
  1042. <script type="text/javascript">
  1043. $(window).load(function(){
  1044. var $wall = $('#posts');
  1045. $wall.imagesLoaded(function(){
  1046. $wall.masonry({
  1047. itemSelector: '.entry, .entry_photo',
  1048. isAnimated : false
  1049. });
  1050. });
  1051.  
  1052. $wall.infinitescroll({
  1053. navSelector : '#pagination',
  1054. nextSelector : '#pagination a',
  1055. itemSelector : '.entry, .entry_photo',
  1056. bufferPx : 2000,
  1057. debug : false,
  1058. errorCallback: function() {
  1059. $('#infscr-loading').fadeOut('normal');
  1060. }},
  1061. function( newElements ) {
  1062. var $newElems = $( newElements );
  1063. $newElems.hide();
  1064. $newElems.imagesLoaded(function(){
  1065. $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
  1066. });
  1067. }); $('#posts').show(500);
  1068. });
  1069. </script>
  1070.  
  1071. {/block:IndexPage}
  1072.  
  1073.  
  1074. <title>{title}</title>
  1075.  
  1076. <link rel="shortcut icon" href="{Favicon}" />
  1077. <meta name="viewport" content="width=820" />
  1078. </head>
  1079.  
  1080. <body onkeydown="return false">
  1081. <BODY onselectstart="return false;" ondragstart="return false;">
  1082. <div class="wrapper">
  1083. <div class="header">
  1084. </div>
  1085.  
  1086. <div id="cage">
  1087. <div id="lace"></div>
  1088. <div id="center">
  1089.  
  1090. <!--STUFF THAT GOES INTO THE SIDEBAR-->
  1091. <div id="sidebar">
  1092. <div class="phineas">{text:blogtitle}</div>
  1093. <div class="linkbar"></div>
  1094. <center>
  1095. <a href="/"><div id="sidebarpic">
  1096. <a href="/"><img src="{image:sidebar}" width=100%></a>
  1097. <div id="socks7">{description}</div>
  1098. </center>
  1099.  
  1100. </div>
  1101. <div class="linkback1"></div>
  1102. <div class="linkback2"></div>
  1103. <div class="linkback3"></div>
  1104. <div class="linkback4"></div>
  1105. <div class="linkback5"></div>
  1106.  
  1107. <div id="link1"><a href="{text:link one}"title="{text:link one hover title}">L</a></div>
  1108.  
  1109. <div id="link2"><a href="{text:link two}"title="{text:link two hover title}">I</a></div>
  1110.  
  1111. <div id="link3"><a href="{text:link three}"title="{text:link three hover title}">N</a></div>
  1112.  
  1113. <div id="link4"><a href="{text:link four}"title="{text:link four hover title}">K</a></div>
  1114.  
  1115. <div id="link5"><a href="http://preachlarcel.tumblr.com"title="Theme Credit">S</a>
  1116. </div>
  1117.  
  1118.  
  1119.  
  1120. <!------------------------------------->
  1121.  
  1122.  
  1123. <div class="left">
  1124. <div class="sidebarbag"></div>
  1125. <div class="sidebarbag2"></div>
  1126. <div class="sidebarbag3"></div>
  1127. <div id="posts">
  1128. {block:Posts}
  1129. <div class="entry">
  1130.  
  1131.  
  1132. {block:Text}{block:Title}<span class="title">{Title}</span>{/block:Title}<span class="body">{Body}</span><p align=right><span class="permalink"><a
  1133.  
  1134. href="{Permalink}"><a href="{Permalink}"><a href="{Permalink}">{notecountwithlabel}</a></a><br>{/block:HasTags}</span></align>
  1135. {/block:Text}
  1136.  
  1137. {block:Link}<a href="{URL}" class="title">{Name}</a>{block:Description}<div class="body">{Description}</div>{/block:Description} <p align=right><span
  1138.  
  1139. class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"></span></align>{block:Link}
  1140.  
  1141. {block:Photo}
  1142. {block:IndexPage}
  1143. <center>
  1144. <div class="perma">
  1145. <a href="{Permalink}">{NoteCount} notes</a> ♥ <a href="{ReblogURL}" target="_blank"> spread some love</a> </div>
  1146.  
  1147. <div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  1148. {/block:IndexPage}
  1149. {block:PermalinkPage}
  1150. {LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  1151.  
  1152. {LinkCloseTag}
  1153. {/block:PermalinkPage}
  1154. {/block:Photo}
  1155.  
  1156. {block:Photoset}
  1157. {block:IndexPage}
  1158. <center>
  1159.  
  1160. <div class="perma">
  1161. <a href="{ReblogURL}" target="_blank"> reblog </a> </div>
  1162.  
  1163. {Photoset-250}</center>
  1164. {/block:IndexPage}
  1165. {block:PermalinkPage}
  1166. <center>
  1167. {Photoset-500}</center>
  1168. {/block:PermalinkPage}
  1169. {/block:Photoset}
  1170.  
  1171. {block:Quote}<span class="title">"{Quote}"</span> — {block:Source}<b>{Source}</b>{/block:Source}<br><p align=right><span class="permalink"><a
  1172.  
  1173. href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"> </span>{/block:Quote}
  1174.  
  1175. {block:Chat}{block:Title}<span class="title">{Title}</span>{/block:Title}
  1176. <ul class="chat">
  1177. {block:Lines}
  1178. <li class="user_{UserNumber}">
  1179. {block:Label}
  1180. <span class="label">{Label}</span>
  1181. {/block:Label}
  1182.  
  1183. {Line}
  1184. </li>
  1185. {/block:Lines}
  1186. <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}">
  1187. {/block:Chat}
  1188.  
  1189. {block:Audio}
  1190. <div style="width:200px; height:30px;">
  1191. {AudioPlayerBlack}
  1192. </div>
  1193. {block:IndexPage}<span class="permalink">
  1194. <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"> </a>
  1195. </span>{/block:IndexPage}
  1196. {/block:Audio}
  1197.  
  1198. {block:Video}
  1199. {block:IndexPage}
  1200. <center>
  1201. <div class="perma">
  1202. <a href="{ReblogURL}" target="_blank"> reblog </a> </div>
  1203. {Video-250}</center>
  1204. {/block:IndexPage}
  1205. {block:PermalinkPage}
  1206. <center>
  1207. {Video-400}</center>
  1208. {/block:PermalinkPage}
  1209. {block:Video}
  1210.  
  1211.  
  1212.  
  1213. {block:Answer}<br>
  1214. <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;"/>
  1215.  
  1216. <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>
  1217.  
  1218. <div style="padding-top:9px;"></div>
  1219.  
  1220. <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>
  1221. {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}
  1222. {/block:Answer}
  1223. {/block:Answer}
  1224.  
  1225.  
  1226.  
  1227. {/block:IndexPage}
  1228.  
  1229.  
  1230. {block:PermalinkPage}
  1231. <center>
  1232. <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>
  1233.  
  1234.  
  1235. {/block:PermalinkPage}
  1236.  
  1237.  
  1238. {block:PostNotes}{PostNotes}
  1239. {/block:PostNotes}
  1240. </div>
  1241.  
  1242.  
  1243. {/block:Posts}
  1244. </div>
  1245.  
  1246. {block:IndexPage}
  1247. {block:Pagination}
  1248. <div id="pagination">
  1249. {block:NextPage}
  1250. <a id="nextPage" href="{NextPage}"></a>
  1251. {/block:NextPage}
  1252. {block:PreviousPage}
  1253. <a href="{PreviousPage}"></a>
  1254. {/block:PreviousPage}
  1255. </div>
  1256. {/block:Pagination}
  1257. {/block:IndexPage}
  1258. </div>
  1259. </body>
  1260.  
  1261. <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>
  1262. </div>
  1263. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement