Advertisement
birth-c0ntrol

theme 19- (2 columns)

May 26th, 2012
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.00 KB | None | 0 0
  1. <!--
  2. theme 19-(2 columns) by birth-c0ntrol.
  3. put the credit in your faq, even though i don't see why you would remove the credit cause it's really small.
  4. -->
  5.  
  6. <html lang="en">
  7. <head>
  8. {block:ifbubblecursor}
  9. <script type="text/javascript">
  10. // <![CDATA[
  11. var colours=new Array("{color:bubbles}", "{color:bubbles}", "{color:bubbles}", "{color:bubbles}", "{color:bubbles}");
  12. var bubbles=20;
  13.  
  14. /****************************
  15. * JavaScript Bubble Cursor *
  16. * (c) 2010 mf2fm web-design *
  17. * http://www.mf2fm.com/rv *
  18. * DON'T EDIT BELOW THIS BOX *
  19. ****************************/
  20.  
  21. var x=ox=400;
  22. var y=oy=300;
  23. var swide=800;
  24. var shigh=600;
  25. var sleft=sdown=0;
  26. var bubb=new Array();
  27. var bubbx=new Array();
  28. var bubby=new Array();
  29. var bubbs=new Array();
  30.  
  31. window.onload=function() { if (document.getElementById) {
  32. var rats, div;
  33. for (var i=0; i<bubbles; i++) {
  34. rats=createDiv("3px", "3px");
  35. rats.style.visibility="hidden";
  36.  
  37. div=createDiv("auto", "auto");
  38. rats.appendChild(div);
  39. div=div.style;
  40. div.top="1px";
  41. div.left="0px";
  42. div.bottom="1px";
  43. div.right="0px";
  44. div.borderLeft="1px solid "+colours[3];
  45. div.borderRight="1px solid "+colours[1];
  46.  
  47. div=createDiv("auto", "auto");
  48. rats.appendChild(div);
  49. div=div.style;
  50. div.top="0px";
  51. div.left="1px";
  52. div.right="1px";
  53. div.bottom="0px"
  54. div.borderTop="1px solid "+colours[0];
  55. div.borderBottom="1px solid "+colours[2];
  56. div=createDiv("auto", "auto");
  57. rats.appendChild(div);
  58. div=div.style;
  59. div.left="1px";
  60. div.right="1px";
  61. div.bottom="1px";
  62. div.top="1px";
  63. div.backgroundColor=colours[4];
  64. div.opacity=0.5;
  65. if (document.all) div.filter="alpha(opacity=50)";
  66.  
  67. document.body.appendChild(rats);
  68. bubb[i]=rats.style;
  69. }
  70. set_scroll();
  71. set_width();
  72. bubble();
  73. }}
  74.  
  75.  
  76.  
  77. function bubble() {
  78. var c;
  79. if (x!=ox || y!=oy) {
  80. ox=x;
  81. oy=y;
  82. for (c=0; c<bubbles; c++) if (!bubby[c]) {
  83. bubb[c].left=(bubbx[c]=x)+"px";
  84. bubb[c].top=(bubby[c]=y)+"px";
  85. bubb[c].width="3px";
  86. bubb[c].height="3px"
  87. bubb[c].visibility="visible";
  88. bubbs[c]=3;
  89. break;
  90. }
  91. }
  92. for (c=0; c<bubbles; c++) if (bubby[c]) update_bubb(c);
  93. setTimeout("bubble()", 40);
  94. }
  95.  
  96. function update_bubb(i) {
  97. if (bubby[i]) {
  98. bubby[i]-=bubbs[i]/2+i%2;
  99. bubbx[i]+=(i%5-2)/5;
  100. if (bubby[i]>sdown && bubbx[i]>0) {
  101. if (Math.random()<bubbs[i]/shigh*2 && bubbs[i]++<8) {
  102. bubb[i].width=bubbs[i]+"px";
  103. bubb[i].height=bubbs[i]+"px";
  104. }
  105. bubb[i].top=bubby[i]+"px";
  106. bubb[i].left=bubbx[i]+"px";
  107. }
  108. else {
  109. bubb[i].visibility="hidden";
  110. bubby[i]=0;
  111. return;
  112. }
  113. }
  114. }
  115.  
  116. document.onmousemove=mouse;
  117. function mouse(e) {
  118. set_scroll();
  119. y=(e)?e.pageY:event.y+sleft;
  120. x=(e)?e.pageX:event.x+sdown; }
  121.  
  122. window.onresize=set_width;
  123. function set_width() {
  124. if (document.documentElement && document.documentElement.clientWidth) {
  125. swide=document.documentElement.clientWidth;
  126. shigh=document.documentElement.clientHeight;
  127. }
  128. else if (typeof(self.innerHeight)=="number") {
  129. swide=self.innerWidth;
  130. shigh=self.innerHeight;
  131. }
  132. else if (document.body.clientWidth) {
  133. swide=document.body.clientWidth;
  134. shigh=document.body.clientHeight;
  135. }
  136. else {
  137. swide=800;
  138. shigh=600;
  139. }
  140. }
  141.  
  142. window.onscroll=set_scroll;
  143. function set_scroll() {
  144. if (typeof(self.pageYOffset)=="number") {
  145. sdown=self.pageYOffset;
  146. sleft=self.pageXOffset;
  147. }
  148. else if (document.body.scrollTop || document.body.scrollLeft) {
  149. sdown=document.body.scrollTop;
  150. sleft=document.body.scrollLeft;
  151. }
  152. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  153. sleft=document.documentElement.scrollLeft;
  154. sdown=document.documentElement.scrollTop;
  155. }
  156. else {
  157. sdown=0;
  158. sleft=0;
  159. }
  160. }
  161.  
  162. function createDiv(height, width) {
  163. var div=document.createElement("div");
  164. div.style.position="absolute";
  165. div.style.height=height;
  166. div.style.width=width;
  167. div.style.overflow="hidden";
  168. return (div);
  169. }
  170. // ]]>
  171. </script>
  172. {/block:ifbubblecursor}
  173.  
  174.  
  175. <!-- DEFAULT VARIABLES -->
  176. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  177. <link href='http://fonts.googleapis.com/css?family=Amatic+SC' rel='stylesheet' type='text/css'>
  178. <link href='http://fonts.googleapis.com/css?family=Waiting+for+the+Sunrise' rel='stylesheet' type='text/css'>
  179. <link href='http://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
  180. <meta name="color:background" content="#fff"/>
  181. <meta name="color:text" content="#000"/>
  182. <meta name="color:title" content="#000"/>
  183. <meta name="color:link" content="#000"/>
  184. <meta name="color:bubbles" content="#FFFFFF"/>
  185. <meta name="color:hover" content="#fff"/>
  186. <meta name="color:Link One" content="#aaa"/>
  187. <meta name="color:Link Two" content="#7e3745"/>
  188. <meta name="color:Link Three" content="#aaa"/>
  189. <meta name="color:Link Four" content="#7e3745"/>
  190. <meta name="image:sidebar" content="1"/>
  191. <meta name="image:background" content=""/>
  192. <meta name="if:show photo" content="0"/>
  193. <meta name="if:link shadow" content="1"/>
  194. <meta name="if:bubble cursor" content="1"/>
  195. <meta name="if:infinite scrolling" content="1"/>
  196. <meta name="if:show arrows" content="0"/>
  197. <meta name="if:tiny cursor" content="1"/>
  198. <meta name="if:tiny cursor" content="1"/>
  199. <meta name="if:handy00 font" content="0/">
  200. <meta name="text:Custom Link One" content="" />
  201. <meta name="text:Custom Link One Title" content="" />
  202. <meta name="text:Custom Link Two" content="" />
  203. <meta name="text:Custom Link Two Title" content="" />
  204. <meta name="text:Custom Link Three" content="" />
  205. <meta name="text:Custom Link Three Title" content="" />
  206. <meta name="text:Custom Link Four" content="" />
  207. <meta name="text:Custom Link Four Title" content="" />
  208. <meta name="text:sidebar title" content=""/>
  209.  
  210. <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>{block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  211.  
  212. {block:ifinfinitescrolling}<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:ifinfinitescrolling}
  213.  
  214. <style type="text/css">
  215. ::-webkit-scrollbar {
  216. height:5px;
  217. width:5px;
  218. background-color:#ECECEC;
  219. border-left: 1px solid #C5C5C5;
  220. }
  221.  
  222.  
  223. ::-webkit-scrollbar-thumb {
  224. border-top: 1px solid #303030;
  225. border-bottom: 1px solid #303030;
  226. border-left: 1px solid #4B4B4B;
  227. background-color:#474747;
  228. height:auto;
  229. }
  230.  
  231.  
  232.  
  233.  
  234. iframe#tumblr_controls {
  235. right:3px !important;
  236. position: fixed !important;
  237. -webkit-transition: opacity 0.7s
  238. linear;opacity: 0.2;
  239. -webkit-transition: all 0.8s ease-out;
  240. -moz-transition: all 0.8s ease-out;
  241. transition: all 0.8s ease-out;
  242. }
  243.  
  244.  
  245. iframe#tumblr_controls:hover{
  246. -webkit-transition: opacity 0.7s linear;
  247. opacity: 1;
  248. -webkit-transition: all 0.4s ease-out;
  249. -moz-transition: all 0.4s ease-out;
  250. transition: all 0.4s ease-out;
  251. }
  252.  
  253.  
  254.  
  255.  
  256.  
  257. {block:iftinycursor}
  258. body, a, a:hover {cursor: url(http://img69.imageshack.us/img69/7673/cursorw.png), progress;}
  259. }
  260. body, a, a:hover {http://img69.imageshack.us/img69/7673/cursorw.png), progress;}
  261. {/block:iftinycursor}
  262.  
  263.  
  264.  
  265.  
  266.  
  267. body, a, a:hover {http://img69.imageshack.us/img69/7673/cursorw.png), progress;}
  268.  
  269. body {
  270. margin:0px;
  271. background-color: {color:Background};
  272. background-image:url({image:Background});
  273. background-attachment: fixed;
  274. background-repeat: repeat;}
  275. body, div, p, textarea, submit, input{
  276. font-family: ronda;
  277. font-size: 8px;
  278. {block:ifhandy00font}
  279. font-family: handy00;
  280. font-size: 8px;
  281. {/block:ifhandy00font}
  282. line-height:10px;
  283. letter-spacing:0px;
  284. color:{color:Text};
  285. }
  286.  
  287. ::-webkit-scrollbar {width: 8px; height: 4px; background: #FFFFFF; }
  288.  
  289. ::-webkit-scrollbar-thumb { background-color: #eeeeee; -webkit-border-radius: 1ex; border: 1px solid black;}
  290.  
  291. p {
  292. margin:0px;
  293. margin-top:0px;
  294. }
  295.  
  296.  
  297. a:link, a:active, a:visited{
  298. color: {color:Link};
  299. text-decoration: none;
  300. }
  301.  
  302. a:hover {
  303. color:{color:Hover};
  304. text-decoration: underline;
  305. -webkit-transition: color 0.3s ease-out;
  306. -moz-transition: color 0.3s ease-out;
  307. {block:iflinkshadow}text-shadow:1px 1px 5px #000;{/block:iflinkshadow}
  308. }
  309.  
  310.  
  311. div#center{
  312. margin:auto;
  313. position:relative;
  314. width:840px;
  315. background-color:;
  316. overflow:auto;
  317. overflow-y:hidden;
  318. }
  319. div#weeeeeee{
  320. position:fixed;
  321. width:155px;
  322. height:auto;
  323. background-color:white;
  324. padding:2px;
  325. margin-top: 230px;
  326. margin-left:480px;
  327. border: 1px dashed #aaa !important;
  328. border-top-left-radius:10px;
  329. border-bottom-left-radius:10px;
  330. }
  331.  
  332.  
  333. div#penis{
  334. position:fixed !important;
  335. margin-top: 229px;
  336. padding: 0px;
  337. height: autopx;
  338. width: 100px;
  339. margin-left:641px;
  340. background: #ffff;
  341. border: 1px solid #fff;
  342. }
  343. div#mirandakerr{
  344. position: fixed;
  345. padding: 1px;
  346. height:10px;
  347. background: #trans;
  348. float:left;
  349. position:fixed;
  350. margin-left:495px;
  351. top: 285px;
  352. width: 150px;
  353.  
  354. }
  355.  
  356.  
  357. #lucyhale a{
  358. opacity: 0.6;
  359. position: fixed;
  360. color: #000;
  361. background: {color:link one};
  362. display: inline-block;
  363. font-family: tinytots;
  364. font-size: 8px;
  365. text-transform: uppercase;
  366. text-align: center;
  367. line-height: 15px;
  368. height: 15px;
  369. width: 32px;
  370. transition: all 0.5s ease-out;
  371. -o-transition-transition: all 0.5s ease-out;
  372. -webkit-transition: all 0.5s ease-out;
  373. -moz-transition: all 0.5s ease-out;
  374. margin: 0px 0px 0px 0px;
  375. border-bottom-left-radius:10px;
  376.  
  377. }
  378.  
  379.  
  380. #lucyhale a:hover {
  381. padding-top: 20px;
  382. opacity: 0.9;
  383. color:;
  384. transition: all 0.5s ease-out;
  385. -o-transition-transition: all 0.5s ease-out;
  386. -webkit-transition: all 0.5s ease-out;
  387. -moz-transition: all 0.5s ease-out;
  388. border-bottom-left-radius:10px;
  389.  
  390. }
  391.  
  392.  
  393. #meganfox a{
  394. opacity: 0.6;
  395. position: fixed;
  396. color: #000;
  397. background: {color:link two};
  398. display: inline-block;
  399. font-family: tinytots;
  400. font-size: 8px;
  401. text-transform: uppercase;
  402. text-align: center;
  403. line-height: 15px;
  404. height: 15px;
  405. width: 32px;
  406. transition: all 0.5s ease-out;
  407. -o-transition-transition: all 0.5s ease-out;
  408. -webkit-transition: all 0.5s ease-out;
  409. -moz-transition: all 0.5s ease-out;
  410. margin: 0px 0px 0px 33px;
  411.  
  412.  
  413. }
  414.  
  415. #meganfox a:hover {
  416. padding-top: 20px;
  417. opacity: 0.9;
  418. color:;
  419. transition: all 0.5s ease-out;
  420. -o-transition-transition: all 0.5s ease-out;
  421. -webkit-transition: all 0.5s ease-out;
  422. -moz-transition: all 0.5s ease-out;
  423.  
  424. }
  425.  
  426. #ryangosling a{
  427. opacity: 0.6;
  428. position: fixed;
  429. color: #000;
  430. background: {color:link three};
  431. display: inline-block;
  432. font-family: tinytots;
  433. font-size: 8px;
  434. text-transform: uppercase;
  435. text-align: center;
  436. line-height: 15px;
  437. height: 15px;
  438. width: 32px;
  439. transition: all 0.5s ease-out;
  440. -o-transition-transition: all 0.5s ease-out;
  441. -webkit-transition: all 0.5s ease-out;
  442. -moz-transition: all 0.5s ease-out;
  443. margin: 0px 0px 0px 66px;
  444.  
  445.  
  446. }
  447.  
  448.  
  449.  
  450. #ryangosling a:hover {
  451. padding-top: 20px;
  452. opacity: 0.9;
  453. color:;
  454. transition: all 0.5s ease-out;
  455. -o-transition-transition: all 0.5s ease-out;
  456. -webkit-transition: all 0.5s ease-out;
  457. -moz-transition: all 0.5s ease-out;
  458.  
  459. }
  460.  
  461.  
  462.  
  463.  
  464.  
  465. #vanessahudgens a{
  466. opacity: 0.6;
  467. position: fixed;
  468. color: #000;
  469. background: {color:link four};
  470. display: inline-block;
  471. font-family: tinytots;
  472. font-size: 8px;
  473. text-transform: uppercase;
  474. text-align: center;
  475. line-height: 15px;
  476. height: 15px;
  477. width: 33px;
  478. transition: all 0.5s ease-out;
  479. -o-transition-transition: all 0.5s ease-out;
  480. -webkit-transition: all 0.5s ease-out;
  481. -moz-transition: all 0.5s ease-out;
  482. margin: 0px 0px 0px 99px;
  483. border-bottom-right-radius:10px;
  484. }
  485.  
  486. #vanessahudgens a:hover {
  487. padding-top: 20px;
  488. opacity: 0.9;
  489. color:;
  490. transition: all 0.5s ease-out;
  491. -o-transition-transition: all 0.5s ease-out;
  492. -webkit-transition: all 0.5s ease-out;
  493. -moz-transition: all 0.5s ease-out;
  494. border-bottom-right-radius:10px;
  495.  
  496. }
  497.  
  498. div#adrianalima{
  499. position: fixed !important;
  500. margin-top: -27px;
  501. margin-left: 8px;
  502. width: auto;
  503. font-family: dawning;
  504. font-size: 20px;
  505. line-height:10px;
  506. letter-spacing:0px;
  507. background-color: transparent;
  508. text-transform: normal;
  509.  
  510. }
  511. div#adrianalima:first-letter {
  512. color:#750e2e;
  513. font-size:30px;
  514. text-transform: uppercase;
  515.  
  516. }
  517.  
  518.  
  519. div#content{
  520. float:left;
  521. width:403px;
  522. margin-left:70px;
  523. padding-bottom: 1px;
  524. padding-top: 1px;
  525. background: #fff;
  526. }
  527.  
  528. div#entry{
  529. float:left;
  530. margin-top: 1px;
  531. margin-bottom: 1px;
  532. margin-right: 0px;
  533. margin-left:1px;
  534. background-color:;
  535. margin-top:0px;
  536. {block:IndexPage}
  537. width: 200px;
  538. height: 133px;
  539. {/block:IndexPage}
  540.  
  541. }
  542.  
  543. #entry .heiswe{
  544. position:absolute;
  545. margin-top:-5px;
  546. width:200px;
  547. height:7px;
  548. padding-bottom:4px;
  549. background-color:#ffffff;
  550. overflow:hidden;
  551. color: {color:Link};
  552. font-size:8px;
  553. font-family: pixel;
  554. text-transform:uppercase;
  555. letter-spacing:1px;
  556. line-height:11px;
  557. text-align:center;
  558. opacity:0.0;
  559. -webkit-transition: all 0.2s linear;
  560. -webkit-transition: all 0.2s linear;
  561. -moz-transition: all 0.2s linear;
  562. transition: all 0.2s linear;
  563. }
  564.  
  565. #entry:hover .heiswe{
  566. margin-top:0px;
  567. overflow:visible;
  568. -webkit-transition: all 0.2s linear; opacity: 0.8;
  569. -webkit-transition: all 0.2s linear;
  570. -moz-transition: all 0.2s linear;
  571. transition: all 0.2s linear;
  572.  
  573. }
  574.  
  575. .textpoop {
  576. display: block;
  577. border-top: 1px solid #aaa;
  578. padding: 2px;
  579. margin: 2px 8px 0px 5px;
  580. text-transform: uppercase;
  581. font-family: tinytots;
  582. font-size: 8px;
  583. color: #424242;
  584. line-height: 15px;
  585. text-align: center;
  586. text-decoration: none;
  587. -webkit-transition: color 0.5s ease-out;
  588. -moz-transition: color 0.5s ease-out;
  589. }
  590. h3{
  591. font-family: dawning;
  592. font-size: 20px;
  593. line-height: 12px;
  594. font-weight: normal;
  595. line-height:15px;
  596. letter-spacing: 1px;
  597. font-style: normal;
  598. text-transform: lowercase;
  599. text-align: right;
  600. padding: 0px;
  601. margin:0px;
  602.  
  603. }
  604.  
  605.  
  606.  
  607. #postnotes{
  608. text-align: justify;}
  609.  
  610. #postnotes blockquote{
  611. border: 0px;}
  612.  
  613.  
  614. .title{
  615. font-family: indie flower;
  616. font-size: 20px;
  617. text-shadow: 2px 2px 2px #888;
  618. line-height: 20px;
  619. color: {color:Title};
  620. font-weight: ;
  621. padding:0px 0px 0px 0px;
  622. }
  623.  
  624.  
  625.  
  626.  
  627. .video embed, .post div.video object {width:250px !important; height:187px !important;}
  628.  
  629. blockquote{
  630. padding:0px 0px 2px 5px;
  631. margin:0px 0px 2px 1px;
  632. border-left: 1px dotted #555555;
  633. }
  634.  
  635. blockquote p, ul{
  636. margin:0px;
  637. padding:0px;
  638. }
  639.  
  640.  
  641. a img{border: 0px;}
  642.  
  643. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  644.  
  645. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  646. .user_7 .label, .user_8 .label, .user_9 .label {color:#555555;}
  647.  
  648. .notes img{width:10px; position:relative; top:3px;}
  649.  
  650.  
  651. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  652.  
  653. @font-face{
  654. font-family: 'pixel';
  655. font-style: normal;
  656. font-weight: normal;
  657. src: local('04b24'), url('http://static.tumblr.com/zm7jcjw/dtClscghb/04b_24__.ttf') format('woff');}
  658.  
  659.  
  660. @font-face { font-family: "ronda"; src: url('http://static.tumblr.com/rmj06l2/kcLlo1q2y/pf_ronda_seven.ttf'); }
  661.  
  662. @font-face {font-family:"handy00";src:url('http://static.tumblr.com/vtqel59/gijlrtxyw/handy00.ttf');}
  663.  
  664. @font-face {font-family: "dawning";src: url('http://static.tumblr.com/viiafci/Hyzlxws2r/dawningofanewday.ttf');}
  665.  
  666. </style>
  667.  
  668.  
  669.  
  670. <link rel="shortcut icon" href="{Favicon}">
  671. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  672. <meta name="viewport" content="width=820" />
  673. </head>
  674. <body>
  675.  
  676. <div id="cage">
  677. <div id="center">
  678. <div id="penis">{block:ifshowphoto}<img src="{image:sidebar}" width=100px;></a>{/block:ifshowphoto}</div>
  679. <div id="mirandakerr">
  680.  
  681. <div id="lucyhale">
  682.  
  683. {block:ifCustomLinkOneTitle}<a href="{text:Custom Link One}">{text:Custom Link One Title}</a>{/block:ifCustomLinkOneTitle}</div>
  684.  
  685. <div id="meganfox">
  686.  
  687. {block:ifCustomLinkTwoTitle}<a href="{text:Custom Link Two}">{text:Custom Link Two Title}</a>{/block:ifCustomLinkTwoTitle}</div>
  688.  
  689.  
  690. <div id="ryangosling">
  691.  
  692. {block:ifCustomLinkThreeTitle}<a href="{text:Custom Link Three}">{text:Custom Link Three Title}</a>{/block:ifCustomLinkThreeTitle}</div>
  693.  
  694.  
  695. <div id="vanessahudgens">
  696.  
  697. {block:ifCustomLinkFourTitle}<a href="{text:Custom Link Four}">{text:Custom Link Four Title}</a>{/block:ifCustomLinkFourTitle}
  698. </div></div>
  699. <div id="weeeeeee">
  700. <div id="adrianalima">
  701. <h3 style="font-size: 18pt; line-height: 25px; letter-spacing: -1px; z-index: 1; text-align: right; margin-top: -1px;text-shadow: 0px 0px 5px #888; ">{text:sidebar title} </h3></div>
  702. <center>
  703. <div style="overflow:auto; width: 155px; height: 40px; border: 0px solid #000000; background-color: #ffffff; font-family: {text:font}; font-size: 8px; text-align: center;">{Description}</div>
  704. <br>
  705. <center>
  706. {block:ifshowarrows}
  707. {block:PreviousPage}<a href="{PreviousPage}"><font size="3"><b>&larr;</b></font></a>{/block:PreviousPage}
  708. {block:NextPage}<a href="{NextPage}"><font size="3"><b>&rarr;</b></font></a>{/block:NextPage}
  709. {/block:ifshowarrows}
  710. </div>
  711.  
  712.  
  713.  
  714. <div id="content">
  715. {block:Posts}
  716.  
  717. <div id="entry">
  718.  
  719. {block:Text}
  720. {block:Title}<span class="title">{Title}</span>{/block:Title}
  721. <span class="entrytext">{Body}</span></a>
  722. <div class="textpoop">
  723. <a href="{perma}">
  724. Posted {TimeAgo} with {notecountwithlabel} </span></div>
  725. {/block:Text}
  726.  
  727. {block:Answer}
  728. <br>
  729. <div style="border-radius:1px; border: 1px dashed #aaa; margin: 3px; min-height:30px; padding: 3px; background-color: #eee; box-shadow: 0px 0px 5px 3px #000; font-family: ronda; font-size: 8px;">
  730. <img src="{AskerPortraitURL-30}" width="30" align="left" style="margin-right:3px; box-shadow: 0px 0px 0px 2px #E6DFDF; border-top-right-radius:3px; border-bottom-right-radius:3px; border-top-left-radius:3px; border-bottom-left-radius:3px;"/>
  731. {Asker} was like: {Question}<br></div>
  732. <Br>
  733. <div style="font-family: tinytots; font-size: 8px;">
  734. AND I WAS LIKE:
  735. <br>
  736. {Answer}
  737. </div>
  738. <br>
  739. <center><span class="textpoop"><a href="{Permalink}"><a href="{ReblogURL}">reblog</a> / {NoteCountWithLabel} / posted {TimeAgo}</span>
  740. {/block:Answer}
  741.  
  742. {block:Link}
  743. <a href="{URL}" class="title">{Name}</a>
  744. {block:Description}{Description}{/block:Description}
  745. <div class="textpoop">
  746. <a href="{perma}">
  747. Posted {TimeAgo} with {notecountwithlabel} </a></a></span></div>
  748. {/block:Link}
  749.  
  750. {block:Photo}
  751. <div class="heiswe">
  752. <a href="{permalink}">{NoteCountWithLabel}</a> / Posted {timeAgo} / <a href="{ReblogURL}" target="_blank"> reblog </a> </span></div>
  753. {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"width=200px/>{LinkCloseTag}
  754. {/block:Photo}
  755.  
  756. {block:Photoset}<center>{Photoset-250}</center></span>{block:ifshowcaption}{block:Caption}{Caption}{/block:Caption}{/block:ifshowcaption}{block:IndexPage}<div class="permatext">
  757. <a href="{perma}">
  758. <span class="textpoop">
  759. Posted {TimeAgo} with {notecountwithlabel} </a></a></span></div>{/block:IndexPage}{/block:Photoset}
  760.  
  761. {block:Quote}
  762. <span class="title">{Quote}</span>
  763. {block:Source}{Source}{/block:Source}
  764. <div class="textpoop">
  765. <a href="{perma}">
  766. Posted {TimeAgo} with {notecountwithlabel} </a></a></span></div>
  767. {/block:Quote}
  768.  
  769. {block:Chat}
  770. {block:Title}<span class="title">{Title}</span>{/block:Title}
  771. <ul class="chat">
  772. {block:Lines}
  773. <li class="user_{UserNumber}">
  774. {block:Label}
  775. <span class="label">{Label}</span>
  776. {/block:Label}
  777.  
  778. {Line}
  779. </li>
  780. {/block:Lines}
  781. </ul>
  782. <div class="textpoop">
  783. <a href="{perma}">
  784. Posted {TimeAgo} with {notecountwithlabel} </a></a></span></div>
  785. {/block:Chat}
  786.  
  787. {block:Audio}
  788. <center><div style="width:200px; height:20px;"><div style="float:left">{AudioPlayerWhite}</div><div style="margin-top:8px; float:right;"><small>
  789. {FormattedPlayCount} plays {block:ExternalAudio} // <a href="{ExternalAudioURL}">Download?</a>{/block:ExternalAudio}</small></div></div></centeR><BR>
  790. {block:Caption}{Caption}{/block:Caption}
  791. <div class="textpoop">
  792. <a href="{perma}">
  793. Posted {TimeAgo} with {notecountwithlabel} </a></a></span></div>
  794. {/block:Audio}
  795.  
  796. {block:Video}
  797. <center>
  798. <div class="video2">{Video-400}</div><BR>
  799. {block:Caption}{Caption}</a>{/block:Caption}</center>
  800. <div class="textpoop">
  801. <a href="{perma}">
  802. Posted {TimeAgo} with {notecountwithlabel} </a></a></span></div>
  803. {/block:Video}
  804.  
  805. {block:PostNotes}
  806. {block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} &middot; {block:Tags}<a href="{TagURL}"> #{Tag}</a> {/block:Tags}{/block:hasTags}{/block:PermalinkPage}
  807. <div id="postnotes">{PostNotes}</div>
  808.  
  809. {/block:PostNotes}
  810. </div>
  811. {/block:Posts}
  812. </div>
  813. </div>
  814. <br>
  815. </div>
  816. </div>
  817. </body>
  818. </a><div style="position:fixed; bottom:10px; right:10px; font-family:tinytots; font-size: 8px;">
  819. <a href="http://birth-c0ntrol.tumblr.com">THEME.</a>
  820. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement