Advertisement
birth-c0ntrol

theme 27

Jun 25th, 2012
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.84 KB | None | 0 0
  1. <!--
  2. theme 27 by birth-c0ntrol.
  3. and then god said "thou shalt not remove my credit"..
  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. <script language=JavaScript>
  175. <!--
  176. var message="lol i don't think so";
  177. ///////////////////////////////////
  178. function clickIE4(){
  179. if (event.button==2){
  180. alert(message);
  181. return false;}}
  182. function clickNS4(e){
  183. if (document.layers||document.getElementById&&!document.all){
  184. if (e.which==2||e.which==3){
  185. alert(message);
  186. return false;}}}
  187. if (document.layers){
  188. document.captureEvents(Event.MOUSEDOWN);
  189. document.onmousedown=clickNS4;}
  190. else if (document.all&&!document.getElementById){
  191. document.onmousedown=clickIE4;}
  192. document.oncontextmenu=new Function("alert(message);return false")
  193. // -->
  194. </script>
  195.  
  196.  
  197. <!-- DEFAULT VARIABLES -->
  198. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  199. <link href='http://fonts.googleapis.com/css?family=Amatic+SC' rel='stylesheet' type='text/css'>
  200. <link href='http://fonts.googleapis.com/css?family=Waiting+for+the+Sunrise' rel='stylesheet' type='text/css'>
  201. <link href='http://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
  202. <meta name="color:background" content="#fff"/>
  203. <meta name="color:text" content="#000"/>
  204. <meta name="color:title" content="#000"/>
  205. <meta name="color:link" content="#000"/>
  206. <meta name="color:bubbles" content="#FFFFFF"/>
  207. <meta name="color:hover" content="#fff"/>
  208. <meta name="color:scrollbar" content="#FF7293"/>
  209. <meta name="image:sidebar" content="1"/>
  210. <meta name="image:side decoration" content="1"/>
  211. <meta name="image:background" content=""/>
  212. <meta name="if:show side decoration photo" content="0"/>
  213. <meta name="if:link shadow" content="1"/>
  214. <meta name="if:bubble cursor" content="1"/>
  215. <meta name="if:tiny cursor" content="1"/>
  216. <meta name="if:tiny cursor" content="1"/>
  217. <meta name="if:description solid border" content="0/">
  218. <meta name="if:description dashed border" content="0/">
  219. <meta name="text:sidebar title" content=""/>
  220. <meta name="text:music box content" content=""/>
  221. <meta name="text:Link One" content="" />
  222. <meta name="text:Link Two" content="" />
  223. <meta name="text:quote" content="poop"/>
  224. <meta name="text:quote credit" content="ok"/>
  225.  
  226. <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>{block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  227.  
  228. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  229.  
  230. <style type="text/css">
  231. ::-webkit-scrollbar {
  232. height:5px;
  233. width:5px;
  234. background-color:#ECECEC;
  235. border-left: 1px solid #C5C5C5;
  236. }
  237.  
  238.  
  239. ::-webkit-scrollbar-thumb {
  240. border-top: 1px solid #303030;
  241. border-bottom: 1px solid #303030;
  242. border-left: 1px solid #4B4B4B;
  243. background-color:#474747;
  244. height:auto;
  245. }
  246.  
  247.  
  248.  
  249.  
  250. iframe#tumblr_controls {
  251. right:3px !important;
  252. position: fixed !important;
  253. -webkit-transition: opacity 0.7s
  254. linear;opacity: 0.2;
  255. -webkit-transition: all 0.8s ease-out;
  256. -moz-transition: all 0.8s ease-out;
  257. transition: all 0.8s ease-out;
  258. }
  259.  
  260.  
  261. iframe#tumblr_controls:hover{
  262. -webkit-transition: opacity 0.7s linear;
  263. opacity: 1;
  264. -webkit-transition: all 0.4s ease-out;
  265. -moz-transition: all 0.4s ease-out;
  266. transition: all 0.4s ease-out;
  267. }
  268.  
  269.  
  270.  
  271.  
  272.  
  273. {block:iftinycursor}
  274. body, a, a:hover {cursor: url(http://img69.imageshack.us/img69/7673/cursorw.png), progress;}
  275. }
  276. body, a, a:hover {http://img69.imageshack.us/img69/7673/cursorw.png), progress;}
  277. {/block:iftinycursor}
  278.  
  279.  
  280.  
  281.  
  282.  
  283. body, a, a:hover {http://img69.imageshack.us/img69/7673/cursorw.png), progress;}
  284.  
  285. body {
  286. margin:0px;
  287. background-color: {color:Background};
  288. background-image:url({image:Background});
  289. background-attachment: fixed;
  290. background-repeat: repeat;}
  291. body, div, p, textarea, submit, input{
  292. font-family: handy00;
  293. font-size: 8px;
  294. line-height:10px;
  295. letter-spacing:0px;
  296. color:{color:Text};
  297. }
  298. ::-webkit-scrollbar {width: 5px; height: 4px; background: #FFFFFF; border: 1px solid #ddd; }
  299.  
  300.  
  301.  
  302. ::-webkit-scrollbar-thumb { background-color: {color:scrollbar}; border: 1px solid #ddd;}
  303.  
  304.  
  305. p {
  306. margin:0px;
  307. margin-top:0px;
  308. }
  309.  
  310.  
  311. a:link, a:active, a:visited{
  312. color: {color:Link};
  313. text-decoration: none;
  314. }
  315.  
  316. a:hover {
  317. color:{color:Hover};
  318. text-decoration: underline;
  319. -webkit-transition: color 0.3s ease-out;
  320. -moz-transition: color 0.3s ease-out;
  321. {block:iflinkshadow}text-shadow:1px 1px 5px #000;{/block:iflinkshadow}
  322. }
  323.  
  324.  
  325. div#center{
  326. margin:auto;
  327. position:relative;
  328. width:840px;
  329. background-color:;
  330. overflow:auto;
  331. overflow-y:hidden;
  332. }
  333. div#ryanmerriman{
  334. position:fixed;
  335. width:140px;
  336. height:37px;
  337. background-color:white;
  338. padding:2px;
  339. margin-top: 190px;
  340. margin-left:120px;
  341. {block:ifdescriptionsolidborder}
  342. border: 1px solid #aaa !important;
  343. {/block:ifdescriptionsolidborder}
  344. {block:ifdescriptiondashedborder}
  345. border: 1px dashed #aaa !important;
  346. {/block:ifdescriptiondashedborder}
  347.  
  348. }
  349.  
  350.  
  351. #yanigellman img {
  352. position:fixed;
  353. width: 120px;
  354. height: 160px;
  355. margin-top:140px;
  356. margin-left:-3px;
  357. background: transparent;
  358. -webkit-transition: all 1.0s ease-in-out;
  359. -moz-transition: all 1.0s ease-in-out;
  360. -o-transition: all 1.0s ease-in-out;
  361. -ms-transition: all 1.0s ease-in-out;
  362. transition: all 1.0s ease-in-out;
  363. border-radius: 4px 4px 4px 4px;
  364. border: 1px solid #aaa !important;
  365. }
  366.  
  367. div#zachroerig{
  368. position: fixed !important;
  369. margin-top: -26px;
  370. margin-left: -;
  371. width: auto;
  372. font-family: bebas neue;
  373. font-size: 20px;
  374. line-height:10px;
  375. letter-spacing:0px;
  376. background-color: transparent;
  377. text-transform: normal;
  378. }
  379. div#zachroerig:first-letter {
  380. color:{color:scrollbar};
  381. font-size:30px;
  382. text-transform: uppercase;
  383.  
  384. }
  385. .elizabethbanks{
  386. position: fixed !important;
  387. font-size: 40pt;
  388. font-family: learningcurve;
  389. text-shadow: 1px 1px 4px #ffffff;
  390. background-color: transparent;
  391. letter-spacing: px;
  392. text-shadow:2px 2px 12px #000;
  393. line-height: 22pt;
  394. padding: 2px;
  395. color: #000000;
  396. text-align:center;
  397. margin-top: -60;
  398. margin-left:500px;
  399. width:485px;
  400. }
  401. .sofiavergara{
  402. font-family: bebas neue;
  403. font-size: 20px;
  404. margin-top: 4px;
  405. margin-left:50px;
  406. font-weight: normal;
  407. letter-spacing: 0px;
  408. text-transform: uppercase;
  409. color:#000000;
  410. }
  411.  
  412. div#content{
  413. float:right;
  414. width:300px;
  415. margin-right: 260px;
  416. margin-top: 0px;
  417. padding:2px;
  418. padding-top: 2px;
  419. background: #fff;
  420.  
  421. }
  422.  
  423.  
  424.  
  425.  
  426. #entry .melissaponzio a{
  427. float: bottom;
  428. color: #000;
  429. }
  430.  
  431. #entry .melissaponzio{
  432. width:290px;
  433. height: 0px;
  434. text-transform: uppercase;
  435. font-family: pixel;
  436. position: absolute;
  437. font-size: 8px;
  438. line-height: 11px;
  439. text-align: left;
  440. overflow:hidden;
  441. opacity: 0.0;
  442. background-color:#fff;
  443. margin-top:0px;
  444. margin-left: 0px;
  445. border-radius: 0px;
  446. -webkit-transition: opacity 0.2s linear; opacity: 0.9;
  447. -webkit-transition: all 0.2s linear;
  448. -moz-transition: all 0.2s linear;
  449. transition: all 0.2s linear;
  450. }
  451.  
  452. #entry:hover .melissaponzio{
  453. margin-top: 0px;
  454. margin-left: 0px;
  455. width: 300px;
  456. height: 35px;
  457. text-transform:uppercase;
  458. overflow:visible;
  459. -webkit-transition: all 0.2s linear; opacity: 0.9;
  460. -webkit-transition: all 0.2s linear;
  461. -moz-transition: all 0.2s linear;
  462. transition: all 0.2s linear;
  463. }
  464. div#katgraham{
  465. position:fixed !important;
  466. opacity: 0.5;
  467. margin-top: 26px;
  468. padding-top: 1px;
  469. height: 13;
  470. width: 135px;
  471. margin-right: 5px;
  472. margin-left: -50px;
  473. color: #000;
  474. font-family: bebas neue;
  475. line-height: 15px;
  476. font-size: 15px;
  477. }
  478. div#iwantlogansdick{
  479. position:fixed !important;
  480. opacity: 0.5;
  481. margin-top: -8px;
  482. padding-top: 1px;
  483. height: 13;
  484. width: 135px;
  485. margin-right: 5px;
  486. margin-left: -50px;
  487. color: #000;
  488. font-family: bebas neue;
  489. line-height: 15px;
  490. font-size: 15px;
  491. }
  492.  
  493.  
  494.  
  495. .textpoop {
  496. display: block;
  497. border-top: 1px solid #aaa;
  498. padding: 2px;
  499. margin: 2px 8px 0px 5px;
  500. text-transform: uppercase;
  501. font-family: pixel;
  502. font-size: 8px;
  503. color: #424242;
  504. line-height: 15px;
  505. text-align: right;
  506. text-decoration: none;
  507. -webkit-transition: color 0.5s ease-out;
  508. -moz-transition: color 0.5s ease-out;
  509.  
  510. }
  511.  
  512.  
  513. div#shanecoffey{
  514. position: fixed;
  515. padding: 0px;
  516. height:14px;
  517. width:140px;
  518. background-color:#fff;
  519. opacity: .7;
  520. float:left;
  521. position:fixed;
  522. margin-left: -1px;
  523. top: 281px;
  524. -webkit-transition: all 1.0s ease-in-out;
  525. -moz-transition: all 1.0s ease-in-out;
  526. -o-transition: all 1.0s ease-in-out;
  527. -ms-transition: all 1.0s ease-in-out;
  528. transition: all 1.0s ease-in-out;
  529. border-bottom-right-radius:10px;
  530. border-top: 1px solid #aaa ;
  531.  
  532.  
  533. }
  534. div#iansomerhalder{
  535. position: fixed;
  536. margin-left: 10px;
  537. top: 285px;
  538. }
  539. div#ninadobrev{
  540. position: fixed;
  541. margin-left: 42px;
  542. top: 285px;
  543. }
  544. div#paulwesley{
  545. position: fixed;
  546. margin-left:80px;
  547. top: 284px;
  548. }
  549. div#josephmorgan{
  550. position: fixed;
  551. margin-left: 115px;
  552. top: 285px;
  553. }
  554.  
  555. div#candiceaccola{
  556. position:fixed !important;
  557. opacity: 0.9;
  558. margin-top: 7px;
  559. padding-top: 1px;
  560. height: 19px;
  561. width: 144px;
  562. margin-right: 5px;
  563. margin-left: -3px;
  564. color: #000;
  565. font-family: handy00;
  566. line-height: 10px;
  567. border-top: 1px solid #aaa !important;
  568.  
  569. }
  570. .aubreydrake {
  571. color: #FFFFFF;
  572. letter-spacing:1px;
  573. font-family: pixel;
  574. font-size: 8px;
  575. line-height:14px;
  576. margin: 2px;
  577. background-image:url(http://static.tumblr.com/8jq17g7/CH8lofvyp/dark-transparent.png);
  578. background-repeat:repeat;
  579. border:1px solid rgba(0,0,0,0.1);
  580. padding:3px 5px;
  581. -webkit-border-radius:2px;
  582. moz-border-radius:2px;
  583. -o-border-radius:2px;
  584. border-radius:2px;
  585. -webkit-transition: opacity 0.7s
  586. linear;opacity: 0.2;
  587. -webkit-transition: all 0.8s ease-out;
  588. -moz-transition: all 0.8s ease-out;
  589. transition: all 0.8s ease-out;
  590. }
  591.  
  592.  
  593. .aubreydrake:hover{
  594. -webkit-transition: opacity 0.7s linear;
  595. opacity: 1;
  596. -webkit-transition: all 0.4s ease-out;
  597. -moz-transition: all 0.4s ease-out;
  598. transition: all 0.4s ease-out;
  599. }
  600.  
  601. .aubreydrake a { color: #FFF; }
  602.  
  603. h3{
  604. font-family: dawning;
  605. font-size: 20px;
  606. line-height: 12px;
  607. font-weight: normal;
  608. line-height:12px;
  609. letter-spacing: 1px;
  610. font-style: normal;
  611. text-transform: lowercase;
  612. text-align: right;
  613. padding: 0px;
  614. margin:0px;
  615.  
  616. }
  617.  
  618.  
  619.  
  620.  
  621. #postnotes{
  622. text-align: justify;}
  623.  
  624. #postnotes blockquote{
  625. border: 0px;}
  626.  
  627.  
  628. .title{
  629. font-family: indie flower;
  630. font-size: 20px;
  631. text-shadow: 2px 2px 2px #888;
  632. line-height: 20px;
  633. color: {color:Title};
  634. font-weight: ;
  635. padding:0px 0px 0px 0px;
  636. }
  637.  
  638.  
  639.  
  640.  
  641. .video embed, .post div.video object {width:250px !important; height:187px !important;}
  642.  
  643. blockquote{
  644. padding:0px 0px 2px 5px;
  645. margin:0px 0px 2px 1px;
  646. border-left: 1px dotted #555555;
  647. }
  648.  
  649. blockquote p, ul{
  650. margin:0px;
  651. padding:0px;
  652. }
  653.  
  654.  
  655. a img{border: 0px;}
  656.  
  657. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  658.  
  659. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  660. .user_7 .label, .user_8 .label, .user_9 .label {color:#555555;}
  661.  
  662. .notes img{width:10px; position:relative; top:3px;}
  663.  
  664.  
  665.  
  666. @font-face{
  667. font-family: 'pixel';
  668. font-style: normal;
  669. font-weight: normal;
  670. src: local('04b24'), url('http://static.tumblr.com/zm7jcjw/dtClscghb/04b_24__.ttf') format('woff');}
  671.  
  672.  
  673. @font-face { font-family: "ronda"; src: url('http://static.tumblr.com/rmj06l2/kcLlo1q2y/pf_ronda_seven.ttf'); }
  674.  
  675. @font-face {font-family:"handy00";src:url('http://static.tumblr.com/vtqel59/gijlrtxyw/handy00.ttf');}
  676.  
  677. @font-face {font-family: "dawning";src: url('http://static.tumblr.com/viiafci/Hyzlxws2r/dawningofanewday.ttf');}
  678.  
  679. @font-face { font-family: "bebas neue"; src: url('http://static.tumblr.com/cvlbtjz/cnsln9tpp/bebasneue.otf'); }
  680.  
  681.  
  682. @font-face { font-family: "learningcurve"; src: url('http://static.tumblr.com/rmj06l2/paAlm4ymo/learningcurve.ttf'); }
  683.  
  684.  
  685.  
  686.  
  687.  
  688. </style>
  689.  
  690.  
  691.  
  692. <link rel="shortcut icon" href="{Favicon}">
  693. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  694. <meta name="viewport" content="width=820" />
  695. </head>
  696. <body onkeydown="return false">
  697.  
  698. <div id="cage">
  699. <div id="center">
  700. <div id="yanigellman"><a href="/"><img src="{image:sidebar}"width=100px></a></div>
  701. <div id="ryanmerriman">
  702. <div id="zachroerig">
  703. <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>
  704. <center>
  705. <div style="overflow:auto; width: 140px; height: 37px; border: 0px solid #000000; background-color: #ffffff; font-family: {text:font}; font-size: 8px; text-align: center;">{Description}</div>
  706. <br>
  707. <div id="katgraham"><center>
  708. <font color="#FE2E64">l</font> <font color="#FF0040">i</font> <font color="#DF013A">n</font> <font color="#B40431">k</font> <font color="#8A0829">s</font>
  709. </div>
  710. <div id="iwantlogansdick"><center>
  711. <font color="#FE2E64">m</font> <font color="#FF0040">u</font> <font color="#DF013A">s</font> <font color="#B40431">i</font> <font color="#8A0829">c</font>
  712. </div>
  713. <div id="shanecoffey"></div>
  714. <center>
  715. <div id="iansomerhalder"><center><a href="/fawq"><img src="http://i1155.photobucket.com/albums/p546/birth-c0ntrol/search.gif" align="center"></a></div>
  716. <div id="ninadobrev"><a href="/ask"><img src="http://i1155.photobucket.com/albums/p546/birth-c0ntrol/mail.gif" align="center"></a></div> <div id="paulwesley"><a href="{text:Link One}"><img src="http://i1155.photobucket.com/albums/p546/birth-c0ntrol/document_text.gif" align="center"></a></div>
  717. <div id="josephmorgan"><a href="{text:Link Two}"><img src="http://i1155.photobucket.com/albums/p546/birth-c0ntrol/heart.gif" align="center"></a></div>
  718. <div id="candiceaccola"><center>
  719. <div style="overflow:auto; width: 144px; height: 18px; border: 0px solid #000000; background-color: #ffffff; font-family: {text:font}; font-size: 8px; text-align: center;">{text:music box content}
  720. </div>
  721. <div class="elizabethbanks">
  722. {text:quote}
  723. <div style="font-family:'cedarville cursive', sans-serif; color:#ffffff; text-transform: normal; text-align: right; font-size: 8px; line-height:9px; letter-spacing:0px; text-shadow: 1px 1px 5px #000000;">
  724. </div>
  725. <div class="sofiavergara">
  726. <sofiavergara style=”font-size: 20pt; letter-spacing: 1px; color:#000; ”>
  727. {text:quote credit}</sofiavergara>
  728. </div>
  729. </div></div></div>
  730.  
  731.  
  732. <div id="content">
  733. {block:Posts}
  734.  
  735. <div id="entry">
  736.  
  737. {block:Text}
  738. {block:Title}<span class="title">{Title}</span>{/block:Title}
  739. <span class="entrytext">{Body}</span></a>
  740. <div class="textpoop">
  741. <a href="{perma}">
  742. <a href="{permalink}">
  743. {notecountwithlabel} † <a href="{ReblogURL}" target="_blank"> reblog </a> </span></div>
  744. {/block:Text}
  745.  
  746. {block:Answer}
  747. <br>
  748. <div style="border: 1px solid #aaa !important; border-top-right-radius:3px; border-bottom-right-radius:3px; border-top-left-radius:3px; border-bottom-left-radius:3px; min-height:30px; padding: 3px; background-color: #eee; box-shadow: 0px 0px 5px 2px {color:scrollbar}; font-family: ronda; font-size: 8px;">
  749. <img src="{AskerPortraitURL-30}" width="30" align="left" style="margin-right:3px; box-shadow: 0px 0px 0px 2px #aaa; border-top-right-radius:20px; border-bottom-right-radius:20px; border-top-left-radius:20px; border-bottom-left-radius:20px;"/>
  750. {Asker} was like: {Question}<br></div>
  751. <Br>
  752. <div style="font-family: pixel; font-size: 8px; letter-spacing: 1px; color: #7e7a7b;">
  753. and i was like:
  754. <br>
  755. {Answer}
  756. </div>
  757. <br>
  758. <center><span class="textpoop"><a href="{Permalink}"><a href="{ReblogURL}">reblog</a> † {NoteCountWithLabel}</span>
  759. {/block:Answer}
  760.  
  761. {block:Link}
  762. <a href="{URL}" class="title">{Name}</a>
  763. {block:Description}{Description}{/block:Description}
  764. <div class="textpoop">
  765. <a href="{perma}">
  766. {notecountwithlabel} † <a href="{ReblogURL}" target="_blank"> reblog </a> </a></a></span></div>
  767. {/block:Link}
  768.  
  769. {block:Photo}
  770. <div class="melissaponzio">
  771. <a href="{permalink}">Posted {TimeAgo} on {block:Date}{Month} {DayofMonth}{DayofMonthSuffix} {Year}{/block:Date} <br> this post has {notecountwithlabel} <br> <a href="{ReblogURL}" target="_blank"> reblog this post </a> </span></div>
  772. {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"width=300px/>{LinkCloseTag}
  773. {/block:Photo}
  774.  
  775. {block:Photoset}<center>{Photoset-250}</center></span>{block:ifshowcaption}{block:Caption}{Caption}{/block:Caption}{/block:ifshowcaption}{block:IndexPage}<div class="textpoop">
  776. <a href="{perma}">
  777. <span class="textpoop">
  778. {NoteCountWithLabel}</a> + <a href="{ReblogURL}" target="_blank"> reblog </a> </span></div>{/block:IndexPage}{/block:Photoset}
  779.  
  780. {block:Quote}
  781. <span class="title">{Quote}</span>
  782. {block:Source}{Source}{/block:Source}
  783. <div class="textpoop">
  784. <a href="{perma}">
  785. {notecountwithlabel} † <a href="{ReblogURL}" target="_blank"> reblog </a> </a></a></span></div>
  786. {/block:Quote}
  787.  
  788. {block:Chat}
  789. {block:Title}<span class="title">{Title}</span>{/block:Title}
  790. <ul class="chat">
  791. {block:Lines}
  792. <li class="user_{UserNumber}">
  793. {block:Label}
  794. <span class="label">{Label}</span>
  795. {/block:Label}
  796.  
  797. {Line}
  798. </li>
  799. {/block:Lines}
  800. </ul>
  801. <div class="textpoop">
  802. <a href="{perma}">
  803. {notecountwithlabel} † <a href="{ReblogURL}" target="_blank"> reblog </a></a></a></span></div>
  804. {/block:Chat}
  805.  
  806. {block:Audio}
  807. <center><div style="width:220px; height:20px;"><div style="float:left">{AudioPlayerWhite}</div><div style="margin-top:8px; float:right;"><small>
  808. {FormattedPlayCount} plays {block:ExternalAudio} // <a href="{ExternalAudioURL}">Download?</a>{/block:ExternalAudio}</small></div></div></centeR><BR>
  809. {block:Caption}{Caption}{/block:Caption}
  810. <div class="textpoop">
  811. <a href="{perma}">
  812. {notecountwithlabel} † <a href="{ReblogURL}" target="_blank"> reblog </a> </a></a></span></div>
  813. {/block:Audio}
  814.  
  815. {block:Video}
  816. {block:IndexPage}
  817. <center>
  818. {Video-250}</center>
  819. {/block:IndexPage}
  820. {block:PermalinkPage}
  821. <center>
  822. {Video-500}</center>
  823. {/block:PermalinkPage}
  824. <div class="textpoop">
  825. <span class="textpoop"><a href="{permalink}">Posted at {12Hour}:{Minutes} {AMPM} / {notecountwithlabel}
  826. </a></a></span></div>
  827. {block:Video}
  828.  
  829. {block:PostNotes}
  830. {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}
  831. <div id="postnotes">{PostNotes}</div>
  832.  
  833. {/block:PostNotes}
  834. </div>
  835. {/block:Posts}
  836. </div>
  837. </div>
  838. <br>
  839. </div>
  840. </div>
  841. </body>
  842. <div style="position:fixed;right:0px;top:28px;font-family: tinytots;">
  843. <span class="aubreydrake"><a href="http://birth-c0ntrol.tumblr.com/" target="_blank">THEME.</a></span>
  844.  
  845.  
  846. {block:ifshowsidedecorationphoto}<div style="position:fixed; bottom:2px; right:10px;">
  847. <img src="{image:side decoration}" border="0" alt=""></a></div>{/block:ifshowsidedecorationphoto}
  848. </html></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement