Advertisement
wildthemes

gabrielle theme

Nov 30th, 2012
6,758
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.24 KB | None | 0 0
  1. <!--
  2. gabriella christmas theme#2 by wildthemes. do not remove credits, themes take alot of time and effort to make, you will be reported if you're seen using this theme with no credits.-->
  3.  
  4. <!--This work is licensed under a Creative Commons Attribution 3.0 Unported License.
  5.  
  6. taking credits off/stealing/using my themes as a basecode is illegal.-->
  7.  
  8.  
  9. <!--IMPORTANT: for infinite/endless scrolling/show all posts on your blog, go to customize -> scroll down to advanced -> change posts per page to 15.-->
  10.  
  11.  
  12. {block:ifSnowfall}
  13. <script type="text/javascript">
  14.  
  15. /******************************************
  16. * Snow Effect Script- By Altan d.o.o. (http://www.altan.hr/snow/index.html)
  17. * Visit Dynamic Drive DHTML code library (http://www.dynamicdrive.com/) for full source code
  18. * Last updated Nov 9th, 05' by DD. This notice must stay intact for use
  19. ******************************************/
  20.  
  21. //Configure below to change URL path to the snow image
  22. var snowsrc="http://www.snazzyspace.com/tumblr/snowb.gif"
  23. // Configure below to change number of snow to render
  24. var no = 40;
  25. // Configure whether snow should disappear after x seconds (0=never):
  26. var hidesnowtime = 0;
  27. // Configure how much snow should drop down before fading ("windowheight" or "pageheight")
  28. var snowdistance = "pageheight";
  29.  
  30. ///////////Stop Config//////////////////////////////////
  31.  
  32. var ie4up = (document.all) ? 1 : 0;
  33. var ns6up = (document.getElementById&&!document.all) ? 1 : 0;
  34.  
  35. function iecompattest(){
  36. return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
  37. }
  38.  
  39. var dx, xp, yp; // coordinate and position variables
  40. var am, stx, sty; // amplitude and step variables
  41. var i, doc_width = 800, doc_height = 600;
  42.  
  43. if (ns6up) {
  44. doc_width = self.innerWidth;
  45. doc_height = self.innerHeight;
  46. } else if (ie4up) {
  47. doc_width = iecompattest().clientWidth;
  48. doc_height = iecompattest().clientHeight;
  49. }
  50.  
  51. dx = new Array();
  52. xp = new Array();
  53. yp = new Array();
  54. am = new Array();
  55. stx = new Array();
  56. sty = new Array();
  57. snowsrc=(snowsrc.indexOf("dynamicdrive.com")!=-1)? "snow.gif" : snowsrc
  58. for (i = 0; i < no; ++ i) {
  59. dx[i] = 0; // set coordinate variables
  60. xp[i] = Math.random()*(doc_width-50); // set position variables
  61. yp[i] = Math.random()*doc_height;
  62. am[i] = Math.random()*20; // set amplitude variables
  63. stx[i] = 0.02 + Math.random()/10; // set step variables
  64. sty[i] = 0.7 + Math.random(); // set step variables
  65. if (ie4up||ns6up) {
  66. if (i == 0) {
  67. document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><a href=\"http://www.snazzyspace.com\"><img src='"+snowsrc+"' border=\"0\"><\/a><\/div>");
  68. } else {
  69. document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><img src='"+snowsrc+"' border=\"0\"><\/div>");
  70. }
  71. }
  72. }
  73. /******************************************
  74. * Generated at tumblr-layouts.tumblr.com
  75. ******************************************/
  76. function snowIE_NS6() { // IE and NS6 main animation function
  77. doc_width = ns6up?window.innerWidth-10 : iecompattest().clientWidth-10;
  78. doc_height=(window.innerHeight && snowdistance=="windowheight")? window.innerHeight : (ie4up && snowdistance=="windowheight")? iecompattest().clientHeight : (ie4up && !window.opera && snowdistance=="pageheight")? iecompattest().scrollHeight : iecompattest().offsetHeight;
  79. for (i = 0; i < no; ++ i) { // iterate for every dot
  80. yp[i] += sty[i];
  81. if (yp[i] > doc_height-50) {
  82. xp[i] = Math.random()*(doc_width-am[i]-30);
  83. yp[i] = 0;
  84. stx[i] = 0.02 + Math.random()/10;
  85. sty[i] = 0.7 + Math.random();
  86. }
  87. dx[i] += stx[i];
  88. document.getElementById("dot"+i).style.top=yp[i]+"px";
  89. document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i])+"px";
  90. }
  91. snowtimer=setTimeout("snowIE_NS6()", 10);
  92. }
  93.  
  94. function hidesnow(){
  95. if (window.snowtimer) clearTimeout(snowtimer)
  96. for (i=0; i<no; i++) document.getElementById("dot"+i).style.visibility="hidden"
  97. }
  98.  
  99.  
  100. if (ie4up||ns6up){
  101. snowIE_NS6();
  102. if (hidesnowtime>0)
  103. setTimeout("hidesnow()", hidesnowtime*1000)
  104. }
  105.  
  106. </script>{/block:ifSnowfall}
  107. {block:ifTitleEffect}
  108. <script type="text/javascript">
  109. // <![CDATA[
  110. var bgcolour="#ffffff"; // background colour
  111. var fgcolour="{color:Title effect colour}"; // foreground colour
  112. var speed=100; // speed of bubbling, lower is faster
  113. var shades=10; // number of shades of bubble
  114.  
  115. /****************************
  116. * Bubbling Text Effect *
  117. *(c) 2003-6 mf2fm web-design*
  118. * http://www.mf2fm.com/rv *
  119. * DON'T EDIT BELOW THIS BOX *
  120. ****************************/
  121. var bubbcol=new Array();
  122. var bubbler, bubbtxt;
  123. var bubbchr=new Array();
  124. window.onload=function() { if (document.getElementById) {
  125. for (bubbler=0; bubbler<=shades; bubbler++) {
  126. bubbtxt="#";
  127. for (var i=1; i<6; i+=2) {
  128. var bg=parseInt(bgcolour.substring(i,i+2),16);
  129. bubbtxt+=dechex(Math.floor(bg+(parseInt(fgcolour.substring(i,i+2),16)-bg)*(bubbler/shades)));
  130. }
  131. bubbcol[bubbler+1]=bubbtxt;
  132. }
  133. bubbler=document.getElementById("bubble");
  134. bubbtxt=bubbler.firstChild.nodeValue;
  135. while (bubbler.childNodes.length) bubbler.removeChild(bubbler.childNodes[0]);
  136. for (var i=0; i<bubbtxt.length; i++) {
  137. var bubbi=document.createElement("span");
  138. bubbi.setAttribute("id", "bubb"+i);
  139. bubbi.appendChild(document.createTextNode(bubbtxt.charAt(i)));
  140. bubbler.appendChild(bubbi);
  141. }
  142. bubbler=setInterval ("bubbling()", speed);
  143. }}
  144.  
  145. function dechex(dec) {
  146. var hex=dec.toString(16);
  147. if (dec<16) return "0"+hex;
  148. else return hex;
  149. }
  150.  
  151. function bubbling() {
  152. for (var i=0; i<bubbtxt.length; i++) {
  153. var bubbme=document.getElementById("bubb"+i);
  154. if (bubbchr[i]) {
  155. bubbme.style.color=bubbcol[bubbchr[i]];
  156. bubbchr[i]=(bubbchr[i]+1)%bubbcol.length;
  157. }
  158. else if (Math.random()<0.75/bubbchr.length) bubbchr[i]=1;
  159. }
  160. }
  161. // ]]>
  162. </script>
  163. {/block:ifTitleEffect}
  164.  
  165. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  166. <html xmlns="http://www.w3.org/1999/xhtml">
  167. <head>
  168.  
  169. <script type="text/javascript"
  170. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  171. <link href='http://fonts.googleapis.com/css?family=Short+Stack' rel='stylesheet' type='text/css'>
  172. <script type="text/javascript" src="http://static.tumblr.com/3ikgvxs/0TGl4zgpu/jquery.min.js"></script>
  173.  
  174. <meta name="color:Border colour" content="#eee"/>
  175. <meta name="color:Background" content="#ffffff"/>
  176. <meta name="color:Text" content="#000000"/>
  177. <meta name="color:Hover" content="#818185"/>
  178. <meta name="color:Link" content="#000000"/>
  179. <meta name="color:Links background" content="#fff"/>
  180. <meta name="color:posts" content="#ffffff"/>
  181. <meta name="color:post border" content="#ddd"/>
  182. <meta name="if:White glow" content="1"/>
  183. <meta name="if:Snow fall" content="1"/>
  184. <meta name="if:Snow flake" content="1"/>
  185. <meta name="if:Show horizontal border" content="1"/>
  186.  
  187. <meta name="if:Title Effect" content="1"/>
  188. <meta name="color:Title effect colour" content="#eee"/>
  189. <meta name="image:Sidebar" content="1"/>
  190. <meta name="image:Background" content="1"/>
  191. <meta name="image:BorderBackground" content="1"/>
  192. <meta name="if:Show Photo" content="0"/>
  193. <meta name="if:Kewl font" content="0"/>
  194. <meta name="text:Link 1" content= ""/>
  195. <meta name="text:Link 1 Title" content= ""/>
  196. <meta name="text:Link 2" content= ""/>
  197. <meta name="text:Link 2 Title" content= ""/>
  198. <meta name="text:Link 3" content="" />
  199. <meta name="text:Link 3 Title" content="" />
  200. <meta name="text:Link 4" content="" />
  201. <meta name="text:Link 4 Title" content="" />
  202. <meta name="text:Link 5" content="" />
  203. <meta name="text:Link 5 Title" content="" />
  204. <meta name="text:Link 6" content="" />
  205. <meta name="text:Link 6 Title" content= ""/>
  206. <meta name="if:Two Columns" content="0"/>
  207. <meta name="if:Three Columns" content="1"/><script type="text/javascript" src="http://static.tumblr.com/o0thhnj/LCDma95ko/infinite.txt"></script><link rel="stylesheet" href="http://static.tumblr.com/tak5d5w/raDlsuinn/quicksandfonts.css" type="text/css" charset="utf-8">
  208.  
  209. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  210.  
  211. <style type="text/css">
  212.  
  213. @font-face { font-family: "littlefont"; src: url('http://static.tumblr.com/4yxykdm/NMJlre6xz/04b_03___1_.ttf'); }
  214.  
  215.  
  216. @font-face {font-family: "Tall Films"; src: url('http://static.tumblr.com/w1f0ilq/4m9lyy51c/tall_film.ttf');}
  217.  
  218.  
  219.  
  220. ::-webkit-scrollbar {width: 10px; height: 4px; background: #eeeeee; border-left: 1px solid #aaaaaa;border-radius:10px; }
  221.  
  222. ::-webkit-scrollbar-thumb { background-color:#000; border-radius:10px; }
  223.  
  224. a {color:;text-decoration:none;-webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;}
  225.  
  226. <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>{block:Description}<meta name="description" content=”{MetaDescription}” />{/block:Description}
  227.  
  228.  
  229.  
  230.  
  231.  
  232.  
  233.  
  234. #tumblr_controls{
  235. position:fixed !important;
  236. -webkit-filter: invert(100%);
  237.  
  238. }
  239.  
  240. .wrapper{
  241. margin: 0px auto;
  242. width: 802px;
  243. }
  244.  
  245. .header{
  246. float: left;
  247. width: 100%;
  248. }
  249.  
  250. .left{
  251. float: left;
  252. margin-right: 20px;
  253. width: 802px;
  254. }
  255.  
  256. .right{
  257. float: right;
  258. width: 200px;
  259. background-color: {color:Background};
  260. }
  261. @font-face { font-family: "silkscreen"; src: url('http://static.tumblr.com/1kdckk4/9yjlolf0w/slkscr.ttf'); }
  262. body {
  263. padding: 0px;
  264. margin: 0px;
  265. color:{color:text};
  266. font-family: {block:ifKewlfont}'silkscreen'; font-size: 8px;line-height:11px;{/block:ifKewlfont}{block:ifnotKewlfont}short stack; font-size: 11px;line-height:13px; {/block:ifnotKewlfont};
  267. line-height: 12px;
  268. background-color: {color:Background};
  269. background-image:url({image:Background});
  270. background-attachment: fixed;
  271. background-repeat: repeat;
  272. }
  273.  
  274. a:link, a:active, a:visited{
  275. color: {color:Link};
  276. text-decoration: none;
  277. -webkit-transition: color 0.4s ease-out;
  278. -moz-transition: color 0.4s ease-out;
  279. }
  280.  
  281. a:hover{
  282. color:{color:Hover};
  283. text-shadow:1px 2px 3px #000000;
  284. text-shadow:0px 0px 3px #000000;
  285. -webkit-transition: all 0.2s linear;
  286. -webkit-transition: all 0.2s linear;
  287. -moz-transition: all 0.2s linear;
  288. transition: all 0.2s linear;
  289. }
  290. @font-face { font-family: "cedarcursive"; src: url('http://themes.googleusercontent.com/static/fonts/cedarvillecursive/v1/cuCe6HrkcqrWTWTUE7dw-5zpMnghKP_wiJrQSyqob5U.woff'); }
  291.  
  292.  
  293. .entry {
  294. margin:2px;
  295. padding-right: 4px;
  296. padding-left:4px;
  297. padding-top: 4px;
  298. border:2px solid {color:post border};
  299. padding-bottom: 1px;
  300. float:left;
  301. background-color:{color:posts};
  302. {block:IndexPage}
  303. {block:ifWhiteglow}
  304.  
  305. -moz-box-shadow: 0 0 30px 5px #fff;
  306. -webkit-box-shadow: 0 0 30px 5px #fff;
  307. box-shadow: 0 0 30px 5px #fff; {/block:ifWhiteglow}
  308. width:450px;
  309. {block:ifTwoColumns}width:280px;{/block:ifTwoColumns}
  310. {block:ifThreeColumns}width:250px;{/block:ifThreeColumns}{/block:IndexPage}{/block:IndexPage}
  311. {block:PermalinkPage}
  312. width:400px;
  313. margin-left: 30px;
  314. z-index:1;
  315. {/block:PermalinkPage}
  316. }
  317.  
  318.  
  319. .entry .perma{
  320. margin-left: 0px;
  321. margin-bottom:0px;
  322. width:450px;
  323. {block:ifTwoColumns}width:280px;{/block:ifTwoColumns}
  324. {block:ifThreeColumns}width:250px;{/block:ifThreeColumns};
  325. height: auto;
  326. position: absolute;
  327. overflow:hidden;
  328. opacity: 0.0;
  329. background-color:{color:posts};
  330. }
  331.  
  332. .entry:hover .perma{
  333. width:450px;
  334. {block:ifTwoColumns}width:280px;{/block:ifTwoColumns}
  335. {block:ifThreeColumns}width:250px;{/block:ifThreeColumns}; overflow:visible;
  336. opacity:0.9;
  337. color: #000000;
  338. overflow:visible;
  339. -webkit-transition: 0.3s linear;
  340. -webkit-transition: all 0.3s linear;
  341. -moz-transition: all 0.3s linear;
  342. transition: all 0.3s linear;
  343. }
  344.  
  345. .perms {
  346. padding: 3px;
  347. font-family: {block:ifKewlfont}'silkscreen'; font-size: 8px;line-height:11px;{/block:ifKewlfont}{block:ifnotKewlfont}short stack; font-size: 11px;line-height:13px; {/block:ifnotKewlfont};
  348. text-transform: uppercase;
  349. line-height: 20px;
  350. text-align: center;
  351. -webkit-transition: all 0.6s ease;
  352. -moz-transition: all 0.6s ease;
  353. -o-transition: all 0.6s ease;
  354. }
  355.  
  356. .perms a:hover{
  357. color: #000;
  358. -webkit-transition: all 0.6s ease;
  359. -moz-transition: all 0.6s ease;
  360. -o-transition: all 0.6s ease;
  361. }
  362. #descp{ -webkit-transition: all 0.3s ease;
  363. -moz-transition: all 0.3s ease;
  364. transition: all 0.3s ease;
  365. -o-transition: all 0.3s ease;
  366.  
  367. position:fixed !important;
  368. width: 250px;
  369. height:auto;
  370. opacity:0;
  371. {block:ifWhiteglow}
  372. -moz-box-shadow: 0 0 30px 5px #fff;
  373. -webkit-box-shadow: 0 0 30px 5px #fff;
  374. box-shadow: 0 0 30px 5px #fff; {/block:ifWhiteglow}
  375. margin-left: -230px;
  376. padding: 6px;
  377. text-align: center;
  378. background-color:{color:posts};
  379. border: solid 2px {color:post border};}
  380. #sidebar:hover #descp{-webkit-transition: all 0.3s ease;
  381. -moz-transition: all 0.3s ease;
  382. transition: all 0.3s ease;
  383. -o-transition: all 0.3s ease;
  384.  
  385. left:275px;position:fixed !important; -webkit-transition: all 0.6s ease;opacity:1;
  386. -moz-transition: all 0.6s ease;
  387. -o-transition: all 0.6s ease;
  388. }
  389.  
  390. #sidebar{ -webkit-transition: all 0.3s ease;
  391. -moz-transition: all 0.3s ease;
  392. transition: all 0.3s ease;
  393. -o-transition: all 0.3s ease;
  394.  
  395. position:fixed !important;
  396. width: 250px;
  397. height:auto;
  398. margin-top: 200px;;
  399. {block:ifWhiteglow}
  400. -moz-box-shadow: 0 0 30px 5px #fff;
  401. -webkit-box-shadow: 0 0 30px 5px #fff;
  402. box-shadow: 0 0 30px 5px #fff; {/block:ifWhiteglow}
  403. margin-left: -230px;
  404. padding: 6px;
  405. text-align: center;
  406. background-color:#fff;
  407. }
  408.  
  409. #border1{
  410. position:fixed !important;
  411. width: 100px;
  412. height:150%;
  413. opacity:0.8;
  414. margin-top: 0px;;
  415. margin-left: 55px;
  416. background:{color:Border colour};
  417. background-image:url({image:BorderBackground});
  418. background-attachment:fixed;
  419. {block:ifWhiteglow}
  420.  
  421. -moz-box-shadow: 0 0 10px 5px #fff;
  422. -webkit-box-shadow: 0 0 10px 5px #fff;
  423. box-shadow: 0 0 10px 5px #fff; {/block:ifWhiteglow}
  424. }
  425. #border2{
  426.  
  427. position:fixed;
  428. width: 103%; opacity:0.8;
  429.  
  430. height:80px;
  431. margin-top: 100px;
  432. margin-left:-275px;
  433. background:{color:Border colour};
  434. background-image:url({image:BorderBackground});
  435. background-attachment:fixed;
  436. {block:ifWhiteglow}
  437.  
  438. -moz-box-shadow: 0 0 5px 5px #fff;
  439. -webkit-box-shadow: 0 0 5px 5px #fff;
  440. box-shadow: 0 0 5px 5px #fff; {/block:ifWhiteglow}
  441. }
  442.  
  443.  
  444.  
  445.  
  446. #blogtitle {-webkit-transition: all 0.3s ease;
  447. -moz-transition: all 0.3s ease;
  448. transition: all 0.3s ease;
  449. -o-transition: all 0.3s ease;
  450.  
  451. top:120px;
  452.  
  453. width:260px;
  454. left:200px;
  455. font-family:'tall films';
  456. font-size: 70px;
  457. line-height: 100%;
  458. opacity:0;
  459. {block:ifWhiteglow}
  460.  
  461. -moz-box-shadow: 0 0 30px 5px #fff;
  462. -webkit-box-shadow: 0 0 30px 5px #fff;
  463. box-shadow: 0 0 30px 5px #fff; {/block:ifWhiteglow}
  464. position:fixed;
  465. padding-left:5px;padding-right:5px;
  466.  
  467. text-align: center;
  468. background-color:{color:posts};
  469. border: solid 2px {color:post border};
  470. text-transform:uppercase;
  471. text-shadow:1px 2px 3px #fff;
  472. }
  473.  
  474. #sidebar:hover #blogtitle{
  475. top:120px;
  476. -webkit-transition: all 0.6s ease;
  477. -moz-transition: all 0.6s ease;
  478. -o-transition: all 0.6s ease;
  479. width:260px;
  480. left:40px;
  481. font-family:'tall films';
  482. font-size: 70px;
  483. line-height: 100%;
  484. opacity:1;-webkit-transition: all 0.3s ease;
  485. -moz-transition: all 0.3s ease;
  486. transition: all 0.3s ease;
  487. -o-transition: all 0.3s ease;
  488.  
  489. {block:ifWhiteglow}
  490.  
  491. -moz-box-shadow: 0 0 30px 5px #fff;
  492. -webkit-box-shadow: 0 0 30px 5px #fff;
  493. box-shadow: 0 0 30px 5px #fff; {/block:ifWhiteglow}
  494. position:fixed;
  495. padding-left:5px;padding-right:5px;
  496.  
  497. text-align: center;
  498. background-color:{color:posts};
  499. border: solid 2px {color:post border};
  500. text-transform:uppercase;
  501. text-shadow:1px 2px 3px #fff;
  502. }
  503. #posts {
  504. width:800px;
  505. margin-left:180px;
  506. margin-top:0px;
  507. float:left;
  508.  
  509. }
  510.  
  511. #infscr-loading{
  512. bottom: -70px;
  513. position: absolute;
  514. left: 50%;
  515. margin-left:-8px;
  516. width:16px;
  517. height:11px;
  518. overflow:hidden;
  519. margin-bottom: 50px;
  520. }
  521.  
  522. .title{
  523. font-family: 'quicksandlight';
  524. font-size: 20px;
  525. line-height:17px;
  526. color: #000;
  527. text-transform:uppercase;
  528. font-weight: normal;text-shadow:1px 2px 3px #000000;
  529. text-shadow:0px 0px 3px #000000;
  530. }
  531.  
  532.  
  533.  
  534. @font-face {
  535. font-family: "tinytots";
  536. src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');
  537. }
  538.  
  539. {CustomCSS}
  540.  
  541. .linkss {
  542. width: 50px;
  543. height: 15px;
  544. font-size:9px;
  545. letter-spacing:0px;
  546. font-family: {block:ifKewlfont}'silkscreen'; font-size: 8px;line-height:11px;{/block:ifKewlfont}{block:ifnotKewlfont}short stack; font-size: 11px;line-height:13px; {/block:ifnotKewlfont};
  547.  
  548. margin-top:5px;
  549. margin-left:3px;
  550. line-height:15px;
  551. border: solid 2px {color:post border};background: {color:Links background};
  552. text-align:center;
  553. -webkit-transition-duration: .6s;
  554. border-top-right-radius:0px;
  555. border-bottom-right-radius:0px;
  556. border-top-left-radius:0px;
  557. border-bottom-left-radius:0px;
  558. display: inline-block;
  559. }
  560.  
  561. .linkss:hover {
  562. color: #000;
  563. border: solid 2px {color:post border};background:{color:Hover};
  564. box-shadow: 0px 0px 20px #888;
  565. -moz-transition: all .2s ease-in-out;
  566. -o-transition: all .2s ease-in-out;
  567. transition: all .2s ease-in-out;
  568. -webkit-transition: all .2s ease-in-out;
  569. -webkit-transition-duration: .4s;
  570. }
  571.  
  572. #img3{
  573. position:fixed !important;
  574. opacity: 1;
  575. width: 160px;
  576. padding:2px;
  577. height: 130px;
  578. margin-top: 170px;
  579. margin-left:-260px;
  580. -webkit-border-radius: 220px;
  581. -moz-border-radius: 220px;
  582. border-radius: 220px;
  583. -webkit-transform: rotate(0deg);
  584. -moz-transform: rotate(0deg);
  585. font-size: 8px;
  586. letter-spacing: 0px;
  587. transition: all 0.7s ease;
  588. -o-transition-transition: all 0.7s ease;
  589. -webkit-transition: all 0.7s ease;
  590. -moz-transition: all 0.7s ease;
  591. z-index:1;
  592. }
  593.  
  594.  
  595. #img3:hover #descp #blogtitle{}
  596. </style>
  597.  
  598. {block:IndexPage}
  599. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  600. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  601.  
  602. <script type="text/javascript">
  603. $(window).load(function () {
  604. var $content = $('#posts');
  605. $content.masonry({itemSelector: '.entry'}),
  606. $content.infinitescroll({
  607. navSelector : 'div#pagination',
  608. nextSelector : 'div#pagination a#nextPage',
  609. itemSelector : '.entry',
  610. loading: {
  611. finishedMsg: '',
  612. img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
  613. },
  614. bufferPx : 600,
  615. debug : false,
  616. },
  617. // call masonry as a callback.
  618. function( newElements ) {
  619. var $newElems = $( newElements );
  620. $newElems.hide();
  621. // ensure that images load before adding to masonry layout
  622. $newElems.imagesLoaded(function(){
  623. $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );
  624.  
  625.  
  626. });
  627. });
  628. });
  629. </script>
  630.  
  631. {/block:IndexPage}
  632.  
  633. <title>{title}</title>
  634.  
  635. <link rel="icon" href="{Favicon}">
  636. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  637. <meta name="viewport" content="width=820" />
  638.  
  639. </head>
  640. <body>
  641.  
  642. <div class="wrapper">
  643.  
  644. <div class="header">
  645. </div>
  646.  
  647.  
  648. <div id="border1"></div>{block:ifShowhorizontalborder}
  649. <div id="border2"></div>{/block:ifShowhorizontalborder}
  650. {block:ifSnowflake}
  651. <div id="img3"><img src="http://i48.tinypic.com/2cx9vn7.png" border="0" width="80"></a></div>{/block:ifSnowflake}
  652.  
  653.  
  654. <div id="sidebar"><div id="blogtitle"><span id="bubble">{Title}</span></div>
  655.  
  656. {block:ifshowphoto}<center><a title="" href="/"><img src="{image:sidebar}" width=250px height=auto></a></center>{/block:ifshowphoto}
  657. <div id="descp">{Description} <br>{block:AskEnabled}<span class="linkss"><a href="/ask">Ask</a></span>{/block:AskEnabled}
  658.  
  659. {block:HasPages}{block:Pages}<span class="linkss"><a href="{URL}">{Label}</a></span>{/block:Pages}{/block:HasPages}
  660.  
  661. {BLOCK:IfLink1Title}<span class="linkss">
  662. <a href= "{text:Link 1}">{text:Link 1 Title}</a></span>{/BLOCK:IfLink1Title}
  663. {BLOCK:IfLink2Title}<span class="linkss">
  664. <a href= "{text:Link 2}">{text:Link 2 Title}</a></span>{/BLOCK:IfLink2Title}
  665. {BLOCK:IfLink3Title} <span class="linkss">
  666. <a href= "{text:Link 3}">{text:Link 3 Title}</a></span>{/BLOCK:IfLink3Title}
  667. {BLOCK:IfLink4Title} <span class="linkss">
  668. <a href= "{text:Link 4}">{text:Link 4 Title}</a></span>{/BLOCK:IfLink4Title}
  669. {BLOCK:IfLink5Title} <span class="linkss">
  670. <a href= "{text:Link 5}">{text:Link 5 Title}</a></span>{/BLOCK:IfLink5Title}
  671. {BLOCK:IfLink6Title} <span class="linkss">
  672. <a href= "{text:Link 6}">{text:Link 6 Title}</a></span> {/BLOCK:IfLink6Title} <span class="linkss">
  673. <a href="http://wildthemes.tumblr.com/">theme</a></span>
  674. </div>
  675.  
  676.  
  677.  
  678. </div>
  679.  
  680.  
  681. <div class="left">
  682.  
  683. <div id="posts">
  684.  
  685. {block:Posts}
  686. <div class="entry">
  687.  
  688. {block:IndexPage}
  689.  
  690. {/block:IndexPage}
  691.  
  692. {block:Text}
  693. {block:Title}<span class="title">{Title}</span>{/block:Title}<span class="entrytext">{Body}</span>
  694. <div style="border-top:1px #ccc dotted; "></div>
  695. <a href="{permalink}">{NoteCountWithLabel}</small></a>
  696. &middot<a href="{permalink}"><a href="{ReblogURL}" target="_blank">reblog</a>
  697. {/block:Text}
  698.  
  699. {block:Link}
  700. <a href="{URL}" class="title">{Name}</a>
  701. {block:Description}{Description}{/block:Description}
  702. <div style="border-top:1px #ccc dotted; "></div>
  703. <a href="{permalink}">{NoteCountWithLabel}</small></a>
  704. &middot<a href="{permalink}"><a href="{ReblogURL}" target="_blank">reblog</a> {block:Link}
  705.  
  706. {block:Photo}
  707. <div class="img">
  708. <div class="perma">
  709. <div class="perms">
  710. <a href="{ReblogURL}" target="_blank">reblog</a> - <a href="{permalink}"> {NoteCountwithLabel}</a> - <a href="{Permalink}">{timeago}</a> </div></div>
  711. {/block:IndexPage}
  712. {Block:IndexPage}<center>{LinkOpenTag}<a href="{permalink}"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"width=100%/></a>{LinkCloseTag}</center>{/block:indexpage}
  713. {Block:PermalinkPage}<center><img src="{PhotoURL-250}" alt="{PhotoAlt}"width=400px/></center>{/Block:PermalinkPage}
  714. </div>
  715. {/block:Photo}
  716.  
  717. {block:Photoset}
  718. <section class="top media photoset">
  719. {Photoset-250}
  720. </section>
  721. {block:IndexPage}
  722. <div class="perma">
  723. <div class="perms">
  724. <a href="{ReblogURL}" target="_blank">reblog</a>
  725. </div>
  726. </div>
  727. <div style="border-top:1px #ccc dotted; "></div>
  728. <a href="{permalink}">{NoteCountWithLabel}</small></a>
  729. &middot<a href="{permalink}"><a href="{ReblogURL}" target="_blank">reblog</a>
  730. {/block:IndexPage}
  731. {/block:Photoset}
  732.  
  733. {block:Quote}
  734. {Quote}</span>
  735. {block:Source}<strong>{Source}</strong>{/block:Source}<br>
  736. <div style="border-top:1px #ccc dotted; "></div>
  737. <a href="{permalink}">{NoteCountWithLabel}</small></a>
  738. &middot<a href="{permalink}"><a href="{ReblogURL}" target="_blank">reblog</a>
  739. {/block:Quote}
  740.  
  741. {block:Chat}
  742. {block:Title}<span class="title">{Title}</span>{/block:Title}
  743. <ul class="chat">
  744. {block:Lines}
  745. <li class="user_{UserNumber}">
  746. {block:Label}
  747. <span class="label">{Label}</span>
  748. {/block:Label}
  749.  
  750. {Line}
  751. </li>
  752. {/block:Lines}
  753. </ul>
  754. <div style="border-top:1px #ccc dotted; "></div>
  755. <a href="{permalink}">{NoteCountWithLabel}</small></a>
  756. &middot<a href="{permalink}"><a href="{ReblogURL}" target="_blank">reblog</a>
  757. {/block:Chat}
  758.  
  759. {block:Audio}
  760. <center><div style="width:340px; height:28px;"><div style="float:left">{AudioPlayerBlack}</div><div style="margin-top:10px; float:right;">
  761. {block:ExternalAudio}{/block:ExternalAudio}</div></div></center>
  762. <br>
  763. <div style="border-top:1px #ccc dotted; "></div>
  764. <a href="{permalink}">{NoteCountWithLabel}</small></a>
  765. &middot<a href="{permalink}"><a href="{ReblogURL}" target="_blank">reblog</a>
  766. {/block:Audio}
  767.  
  768. {block:Video}
  769. {block:IndexPage}
  770. <center>
  771. {Video-340}</center>
  772. {/block:IndexPage}
  773. {block:PermalinkPage}
  774. <center>
  775. {Video-550}</center>
  776. {/block:PermalinkPage}
  777. {block:Video}
  778.  
  779. {block:PermalinkPage}
  780. <center>
  781. <br>{block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</center>
  782.  
  783.  
  784. {/block:PermalinkPage}
  785.  
  786.  
  787. {block:PostNotes}{PostNotes}
  788. {/block:PostNotes}
  789. </div>
  790.  
  791.  
  792. {/block:Posts}
  793. </div>
  794. </div>
  795. {block:IndexPage}
  796. {block:Pagination}
  797. <div id="pagination">
  798. {block:NextPage}
  799. <a id="nextPage" href="{NextPage}">&nbsp;&rarr;</a>
  800. {/block:NextPage}
  801. {block:PreviousPage}
  802. <a href="{PreviousPage}">&larr;&nbsp;</a>
  803. {/block:PreviousPage}
  804. </div>
  805. {/block:Pagination}
  806. {/block:IndexPage}
  807. </div>
  808.  
  809. </body>
  810.  
  811. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement