Advertisement
manon15

stcr coding

Dec 16th, 2015
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.00 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <!--code by manon/immortalbloodvirus. don't take as your own!-->
  5.  
  6.  
  7. <meta name="color:background" content="#ffffff"/>
  8. <meta name="color:text" content="#000000"/>
  9. <meta name="color:link" content="#000000"/>
  10. <meta name="color:link hover" content="#ddd"/>
  11. <meta name="color:border" content="#000000"/>
  12. <meta name="color:hoverlink text" content="#000000"/>
  13. <meta name="color:scrollbar bg" content="#6b6d6d"/>
  14. <meta name="color:tooltip color" content="#6b6d6d"/>
  15. <meta name="color:title color" content="#000000"/>
  16. <meta name="color:blockquote color" content="#000000"/>
  17.  
  18.  
  19.  
  20. <meta name="text:bg image url" content=""/>
  21. <meta name="color:bold" content=""/>
  22. <meta name="color:bold shadow" content=""/>
  23. <meta name="color:italics" content=""/>
  24. <meta name="color:italics shadow" content=""/>
  25. <meta name="text:title text" content="title">
  26. <meta name="text:Link 1 URL" content="" />
  27. <meta name="text:Link 1" content="link 1" />
  28. <meta name="text:Link 2 URL" content="" />
  29. <meta name="text:Link 2" content="link 2" />
  30. <meta name="text:Link 3 URL" content="" />
  31. <meta name="text:Link 3" content="link 3" />
  32. <meta name="text:Link 4 URL" content="" />
  33. <meta name="text:Link 4" content="link 4" />
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41. <head><title>{Title}</title>
  42. <link rel="shortcut icon" href="{Favicon}">
  43. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  44. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  45.  
  46.  
  47. <link href='http://fonts.googleapis.com/css?family=IM+Fell+Double+Pica+SC' rel='stylesheet' type='text/css'>
  48. <link href='http://fonts.googleapis.com/css?family=VT323' rel='stylesheet' type='text/css'>
  49. <link href='http://fonts.googleapis.com/css?family=Playfair+Display' rel='stylesheet' type='text/css'>
  50. <link href='http://fonts.googleapis.com/css?family=Prata' rel='stylesheet' type='text/css'>
  51. <link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>
  52. <link href='http://fonts.googleapis.com/css?family=Tillana' rel='stylesheet' type='text/css'>
  53. <link href='http://fonts.googleapis.com/css?family=Aguafina+Script' rel='stylesheet' type='text/css'>
  54. <link href='http://fonts.googleapis.com/css?family=Petit+Formal+Script' rel='stylesheet' type='text/css'>
  55. <link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>
  56. <link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
  57. <link href='http://fonts.googleapis.com/css?family=Calligraffitti' rel='stylesheet' type='text/css'>
  58. <link href='http://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
  59. <link href='http://fonts.googleapis.com/css?family=Six+Caps' rel='stylesheet' type='text/css'>
  60. <link href='http://fonts.googleapis.com/css?family=Permanent+Marker' rel='stylesheet' type='text/css'>
  61. <link href='http://fonts.googleapis.com/css?family=Fondamento' rel='stylesheet' type='text/css'>
  62. <link href='http://fonts.googleapis.com/css?family=Bangers' rel='stylesheet' type='text/css'>
  63. <link href='http://fonts.googleapis.com/css?family=Satisfy' rel='stylesheet' type='text/css'>
  64. <link href='http://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
  65. <link href='https://fonts.googleapis.com/css?family=Homemade+Apple' rel='stylesheet' type='text/css'>
  66. <link href='https://fonts.googleapis.com/css?family=Great+Vibes' rel='stylesheet' type='text/css'>
  67. <link href='https://fonts.googleapis.com/css?family=Bad+Script' rel='stylesheet' type='text/css'>
  68. <link href='https://fonts.googleapis.com/css?family=Roboto:700' rel='stylesheet' type='text/css'>
  69. <link href='https://fonts.googleapis.com/css?family=Ubuntu:700' rel='stylesheet' type='text/css'>
  70.  
  71.  
  72. <script type="text/javascript"
  73. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  74. <script>
  75. $(document).ready(function() {
  76. //
  77. $('a.poplight[href^=#]').click(function() {
  78. var popID = $(this).attr('rel'); //Get Popup Name
  79. var popURL = $(this).attr('href'); //Get Popup href to define size
  80. var query= popURL.split('?');
  81. var dim= query[1].split('&');
  82. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  83. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  84. var popMargTop = ($('#' + popID).height() + 80) / 2;
  85. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  86. //Apply Margin to Popup
  87. $('#' + popID).css({
  88. 'margin-top' : -popMargTop,
  89. 'margin-left' : -popMargLeft
  90. });
  91. $('body').append('<div id="fade"></div>');
  92. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  93. return false;
  94. });
  95. $('a.close, #fade').live('click', function() {
  96. $('#fade , .popup_block').fadeOut(function() {
  97. $('#fade, a.close').remove(); //fade them both out
  98. });
  99. return false;
  100. });
  101. });
  102. </script>
  103.  
  104.  
  105.  
  106.  
  107. <style type="text/css">
  108.  
  109. .popup_block{
  110. display:none;
  111. font-size:12px;
  112. background:#000;
  113. font-family:'calibri';
  114. padding:20px;
  115. border:1px solid #848584; /* if you want a solid white pop-up, delete this */
  116. float:left;
  117. position:fixed;
  118. top:50%;left:50%;
  119. z-index: 99999;
  120. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  121. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  122. box-shadow: 0px 0px 20px #848584; /* delete for solid white */
  123. }
  124.  
  125. *html #fade {position: absolute;}
  126. *html .popup_block {position: absolute;}
  127. #fade {
  128. display:none;
  129. position:fixed;
  130. left:0px;
  131. top:0px;
  132. width:100%;
  133. height:100%;
  134. z-index:9999;
  135. background:#000; /* change to #fff for solid white */
  136. opacity:0.5; /* change to opacity:1; */
  137. }
  138.  
  139.  
  140. /* --- UPDATES ---*/
  141.  
  142. #updates {
  143. font-size:10px;
  144. font-family: 'calibri';
  145. color:#848584;
  146. text-align:left;
  147. background-color:#000;
  148. height:45px;
  149. width:250px;
  150. padding:4px;
  151. top:20px;
  152. left:10px;
  153. z-index:10;
  154. position:fixed;
  155. overflow:hidden;
  156. -webkit-transition: all 0.5s ease-in-out;
  157. -moz-transition: all 0.5s ease-in-out;
  158. -o-transition: all 0.5s ease-in-out;
  159. }
  160.  
  161. #updates:hover {
  162. height:200px;
  163. -webkit-transition: all 0.5s ease-in-out;
  164. -moz-transition: all 0.5s ease-in-out;
  165. -o-transition: all 0.5s ease-in-out;
  166. }
  167.  
  168. #updatestitle {
  169. text-transform:uppercase;
  170. font-family:arial;
  171. font-weight:bold;
  172. text-align:center;
  173. color:#848584;
  174. font-family:'Six caps';
  175. font-size:40px;
  176. letter-spacing:1.5px;
  177. }
  178.  
  179.  
  180.  
  181.  
  182. /*edit scrollbar*/
  183.  
  184. ::-webkit-scrollbar-thumb {
  185. height:auto;
  186. }
  187.  
  188. ::-webkit-scrollbar {
  189. height:4px;
  190. width:3px;
  191. padding-right:2px;
  192. }
  193. /*edit the body this is what post text looks like, background color, etc.*/
  194.  
  195. body {
  196. background-image:url("http://i.imgur.com/Ch4ZOcL.png");
  197. background-position:absolute;
  198. background-attachment:fixed;
  199. background-repeat:no-repeat;
  200. background-color:#000;
  201. margin:0px;
  202. color:#848584;
  203. font-family:arial;
  204. font-size:10px;
  205. line-height:100%;
  206. }
  207.  
  208. /*edit links*/
  209.  
  210. a {
  211. text-decoration:none;
  212. outline:none;
  213. -moz-outline-style:none;
  214. color:#848584;
  215. -moz-transition-duration:0.8s;
  216. -webkit-transition-duration:0.8s;
  217. -o-transition-duration:0.8s;
  218. }
  219.  
  220. /*edit link hover*/
  221.  
  222. a:hover {
  223. color:#fff;
  224. outline:none;
  225. -moz-outline-style:none;
  226. text-decoration:none;
  227. }
  228.  
  229. img {
  230. opacity:.8;
  231. -webkit-filter: Grayscale(50%);
  232. -webkit-transition-duration: 0.8s;
  233. -moz-transition-duration:0.8s;
  234. transition-duration:0.8s;
  235. -o-transition-duration:0.8s;
  236. -webkit-filter: blur(1px);
  237. }
  238.  
  239. img:hover {
  240. opacity:1;
  241. -webkit-filter: Grayscale(0%);
  242. -webkit-transition: all 0.8s ease-out;
  243. -moz-transition: all 0.8s ease-out;
  244. transition: all 0.8s ease-out;
  245. -webkit-filter: blur(0px);
  246.  
  247. }
  248.  
  249. blockquote {
  250. padding-left:5px;
  251. border-left:2px solid #838483;
  252.  
  253. }
  254.  
  255. blockquote blockquote {
  256. padding-left:5px;
  257. border-left:2px solid;
  258. }
  259.  
  260. h1 {
  261. font-size:22px;
  262. text-align:left;
  263. font-family:"six caps";
  264. text-align:center;
  265. line-height:105%;
  266. letter-spacing:1px;
  267. color:#838483;
  268. }
  269.  
  270.  
  271.  
  272. #title {
  273. color:#848584;
  274. font-family:arial;
  275. font-size:16px;
  276. text-transform:lowercase;
  277. font-weight:bold;
  278. letter-spacing:0px;
  279. padding:4px;
  280. margin-top:-20px;
  281. margin-left:-14px;
  282. position:fixed;
  283. text-align:left;
  284. }
  285.  
  286.  
  287.  
  288. /*sidebar links*/
  289.  
  290. #links {
  291. width:200px;
  292. margin-top:535px;
  293. margin-left:325px;
  294. padding:5px;
  295. font-family:arial;
  296. text-align:left;
  297. word-spacing:1px;
  298. font-size:9px;
  299. font-weight:bold;
  300. display:block;
  301. color:#838483;
  302. opacity:.8;
  303. -webkit-transition-duration: 0.8s;
  304. -moz-transition-duration:0.8s;
  305. transition-duration:0.8s;
  306. -o-transition-duration:0.8s;
  307. -webkit-filter: blur(0px);
  308. transform: rotate(0)deg);
  309. -ms-transform: rotate(0deg);
  310. -webkit-transform: rotate(0deg);
  311. -o-transform: rotate(0deg);
  312. -moz-transform: rotate(0deg);
  313.  
  314. }
  315.  
  316. #links a {
  317. letter-spacing: 1px;
  318. padding:3px;
  319.  
  320. }
  321.  
  322. #links a:hover {
  323. color:#fff;
  324. opacity:1;
  325. -webkit-transition: all 0.8s ease-out;
  326. -moz-transition: all 0.8s ease-out;
  327. transition: all 0.8s ease-out;
  328. -webkit-filter: blur(0px);
  329. }
  330.  
  331. #description {
  332. width:208px;
  333. font-size:11px;
  334. padding:5px;
  335. text-align:justify;
  336. letter-spacing:0px;
  337. line-height:90%;
  338. margin-left:-16px;
  339. margin-top:-2px;
  340. }
  341.  
  342. /* this is the box that comes up when you hover over something with a title*/
  343.  
  344. #s-m-t-tooltip {
  345. max-width:300px;
  346. padding:5px 5px 5px 6px;
  347. margin:20px 0px 0px 20px;
  348. background-color:{color:tooltip color};
  349. font-family:arial;
  350. font-size:9px;
  351. letter-spacing:2px;
  352. text-transform:lowercase;
  353. font-weight:bold;
  354. color:#fff;
  355. z-index:999999999999999999999999999999999999;
  356. }
  357.  
  358. /*next page and previous page*/
  359.  
  360. #pagination {
  361. margin-left:360px;
  362. margin-top: -70px;
  363. position: relative;
  364. text-align: left;
  365. letter-spacing:1px;
  366. text-transform: lowercase;
  367. font-weight:bold;
  368. font-family: arial;
  369. font-size: 30px;
  370. opacity:.8;
  371. -webkit-transition-duration: 0.8s;
  372. -moz-transition-duration:0.8s;
  373. transition-duration:0.8s;
  374. -o-transition-duration:0.8s;
  375. -webkit-filter: blur(1px);
  376. transform: rotate(0)deg);
  377. -ms-transform: rotate(0deg);
  378. -webkit-transform: rotate(0deg);
  379. -o-transform: rotate(0deg);
  380. -moz-transform: rotate(0deg);
  381.  
  382.  
  383. }
  384.  
  385. #pagination a {
  386. padding:0 3px;
  387. opacity:1;
  388. -webkit-filter: Grayscale(0%);
  389. -webkit-transition: all 0.8s ease-out;
  390. -moz-transition: all 0.8s ease-out;
  391. transition: all 0.8s ease-out;
  392. -webkit-filter: blur(0px);
  393.  
  394. }
  395.  
  396.  
  397. #container {
  398. position: fixed;
  399. width:405px;
  400. height:320px;
  401. margin-left:597px;
  402. margin-top:-320px;
  403. overflow: auto;
  404. -ms-transform: rotate(0deg);
  405. -webkit-transform: rotate(0deg);
  406. transform: rotate(0deg);
  407. }
  408.  
  409.  
  410. #post {
  411. width:400px;
  412. margin-top:5px;
  413. margin-left:300px;
  414. text-align:left;
  415. font-size:11px;
  416. line-height:110%;
  417. color:#555;
  418. margin-left:auto;
  419. margin-right:auto;
  420. }
  421.  
  422.  
  423. /*italics and bold stuffs. here is where you can put new fonts, many i have already supplied you with!*/
  424.  
  425. b, strong{
  426. color: #6d5556;
  427. font-size:15px;
  428. font-family:"Bad script";
  429. letter-spacing:2px;
  430. line-height:115%;
  431. text-shadow: 0px 1px 4px #848584;
  432. font-weight: bold;
  433. text-transform:uppercase;
  434. }
  435.  
  436. i, em, strong {
  437. color: #6d555;
  438. font-size:15px;
  439. line-height:115%;
  440. font-family:"satisfy";
  441. letter-spacing:2px;
  442. text-shadow:0px 1px 4px #848584;
  443. font-weight: italic;
  444.  
  445. }
  446.  
  447. /*time posted, note count, via and source*/
  448.  
  449. .postinfo {
  450. font-family:'Six caps';
  451. width:385px;
  452. margin-top:1px;
  453. padding:6px;
  454. font-size:15px;
  455. color:#fff;
  456. text-shadow:2px 2px 3px rgba(14,8,8, 1);
  457. background-image:url(http://i.imgur.com/AOUL1Pm.png);
  458. opacity:.66;
  459. border-radius: 10px 10px 10px 10px;
  460. letter-spacing:1px;
  461. border-bottom:1px #000;
  462. text-transform:uppercase;
  463. font-style:normal;
  464. text-align:center;
  465. }
  466.  
  467. .postinfo a {
  468. color:#fff;
  469. font-style:normal;
  470. }
  471.  
  472. .postinfo a:hover {
  473. color:#bebebe;
  474. }
  475.  
  476.  
  477. /*tags*/
  478.  
  479. .tags {
  480. width:390px;
  481. margin-top:4px;
  482. margin-left:-1px;
  483. padding:2px;
  484. font-family:arial;
  485. letter-spacing:0px;
  486. font-size:10px;
  487. text-align:left;
  488.  
  489. }
  490.  
  491. .tags a {
  492. color:#838483;
  493. }
  494.  
  495. .tags a:hover {
  496. color:#fff;
  497. }
  498.  
  499. .postnote {
  500. width:390px;
  501. margin-top:40px;
  502. font-family:arial;
  503. text-transform:lowercase;
  504. font-style:normal;
  505. letter-spacing:0px;
  506. font-size:10px;
  507. text-align:left;
  508. }
  509.  
  510. /*here go asks*/
  511.  
  512. #ask {
  513. float:left;
  514. line-height:130%;
  515. border: 1px #838483;
  516. font-family:"calibri";
  517. font-size:12px;
  518.  
  519. }
  520.  
  521.  
  522.  
  523. /*audio player container*/
  524.  
  525. .playercontainer {
  526. text-align:left;
  527. padding:10px;
  528. padding-left:0px;
  529. background-color:#fff;
  530. width:480px;
  531. }
  532.  
  533. /*artist, song, etc.*/
  534.  
  535. .musicinfo {
  536. padding-top:7px;
  537. padding-left:50px;
  538. color:#000;
  539. text-align:justify;
  540. }
  541.  
  542. /*credit. only change this if you actually make the code your own*/
  543.  
  544. #credit {
  545. position:fixed;
  546. font-size:3px;
  547. color:#848584;
  548. font-weight:none;
  549. line-height:50%;
  550. letter-spacing:2px;
  551. right:10px;
  552. bottom:05px;
  553. text-transform:none;
  554. text-align:left;
  555. }
  556.  
  557. #credit a {
  558. letter-spacing: 0px;
  559. padding:3px;
  560. color:#848585;
  561. }
  562.  
  563. #credit a:hover {
  564. background:#000;
  565. color:#848584;
  566. }
  567.  
  568.  
  569.  
  570. {CustomCSS}</style></head><body>
  571.  
  572.  
  573. <!-- begin updates tab -->
  574.  
  575. <div id="updates">
  576. <div id="updatestitle"><br>UPDATES</div>
  577.  
  578. <div style="padding-top:10px;">
  579. <br><br>
  580. <big><center><FONT COLOR="#848584">selective & multi-muse rp</FONT></center></big>
  581. <center>THIS IS WHERE YOU PUT ANY EXTRA INFO. IF YOU WANT A SMALL LINE BREAK DO <BR> AND IF YOU WANT A LARGE LINE BREAK IT'S <P>. FOR A HORIZONTAL LINE, DO <HR WIDTH=100%><P>
  582. AND IF YOU WANT WORDS TO MOVE ACROSS THE UPDATES TAB, DO
  583. <marquee>LOOKY HERE THIS IS MOVING</marquee><br>
  584. AND IF YOU WANT TO MAKE A WORD BOLD DO <B>HEYA</B> AND ITALICS <I>HOLA</I>. hope this helps!
  585. </center>
  586.  
  587.  
  588.  
  589. </div></div>
  590.  
  591. <!-- end updates tab -->
  592.  
  593.  
  594. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  595. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  596. <script>
  597.  
  598. (function($){
  599.  
  600. $(document).ready(function(){
  601.  
  602. $("a[title]").style_my_tooltips({
  603.  
  604. tip_follows_cursor:true,
  605.  
  606. tip_delay_time:50,
  607.  
  608. tip_fade_speed:600,
  609.  
  610. attribute:"title"
  611.  
  612. });
  613.  
  614. });
  615.  
  616. })(jQuery);
  617.  
  618. </script>
  619.  
  620.  
  621.  
  622.  
  623. <div id="links">
  624. <a href="/" title="home">○</a>
  625.  
  626.  
  627. <a href="#?w=500" title="inquire" rel="box1" class="poplight">○</a>
  628.  
  629. <a title="about" href="/about"><span>○</span></a>
  630.  
  631. <a title="vanity" href="/tagged/star"><span>○</span></a>
  632.  
  633. <a title="records" href="/tagged/music"><span>○</span></a>
  634.  
  635. <a title="likes" href="/tagged/desires"><span>○</span></a>
  636.  
  637. <a title="wardrobe" href="/tagged/closet"><span>○</span></a>
  638.  
  639.  
  640.  
  641. </div>
  642.  
  643. <div id="description">{Description}</div>
  644.  
  645.  
  646. <div id="pagination">
  647. {block:Pagination}
  648. {block:PreviousPage}
  649. <a href="{PreviousPage}">&larr;</a>
  650. {/block:PreviousPage}
  651.  
  652.  
  653. {block:NextPage}
  654. <a href="{NextPage}">&rarr;</a>
  655. {/block:NextPage}
  656. {/block:Pagination}
  657. </div>
  658.  
  659.  
  660.  
  661. </div>
  662.  
  663.  
  664. <div id="container">{block:Posts}<div id="post">
  665.  
  666. {block:Text}<h1>{block:Title}<big><big>{Title}</big></big>{/block:Title}</h1>{Body}{/block:Text}
  667.  
  668. {block:Quote}<big><b>"{Quote}"</b></big>{block:Source}<p></p>— {Source}{/block:Source}{/block:Quote}
  669.  
  670. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  671.  
  672. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  673.  
  674. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  675.  
  676. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  677.  
  678. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  679.  
  680.  
  681. {block:AudioPlayer}
  682. <div class="playercontainer"> <div style="padding: 5px 0px 5px 5px;width:inherit;background:#fff; border:2px solid #fff; width:30px;overflow:hidden; position:absolute;font-weight:bold;"> {AudioPlayer}</div><div class="musicinfo">{block:TrackName}<span style="#fff">{TrackName}</span>{/block:TrackName}{block:Artist}<br/>{Artist} {/block:Artist}<br>{block:PlayCount}{PlayCountWithLabel}{/block:PlayCount}</div></div>{block:Caption}{Caption}{/block:Caption}{/block:AudioPlayer}
  683.  
  684. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-40}" style="margin-right:12px;border:1px solid #e3e3e3;padding:3px;"></div> "{Question}"<br>
  685. — {ASKER}<br><br>
  686. {Answer}<br>{/block:Answer}
  687.  
  688. {block:Date}<div class="postinfo"> <a href="{Permalink}">{TimeAgo}</a>   {block:NoteCount}+ {NoteCount}{/block:NoteCount}   {block:RebloggedFrom}<a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}   {block:ContentSource}<a href="{SourceURL}">source</a>{/block:ContentSource}{/block:RebloggedFrom}</div>{/block:Date}
  689.  
  690. {block:HasTags}
  691. <div class="tags">
  692. {block:Tags}<a href="{TagURL}"> ○ {Tag}</a>  {/block:Tags}</div>
  693. {/block:HasTags}
  694.  
  695. <div class="postnote">
  696. {block:PostNotes}{PostNotes}{/block:PostNotes}
  697. </div>
  698. </div>
  699. {/block:Posts}
  700.  
  701.  
  702.  
  703.  
  704. </div></div></div></div>
  705. </div>
  706.  
  707. <div id="credit"><a href="#?w=400" title="credit" rel="box5" class="poplight"><font size="4">
  708. <i>Manon</i></a></font><div>
  709.  
  710. </body>
  711.  
  712. </div></div></div></div></div></div></div></div></div></div>
  713. <div id="box1" class="popup_block">
  714. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  715. </div>
  716. </div></div></div></div></div></div></div></div></div></div>
  717.  
  718. <div id="box2" class="popup_block">
  719. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  720. CONTENT
  721. CONTENT
  722. CONTENT
  723. </div>
  724. </div>
  725.  
  726. </div></div></div></div></div></div></div></div></div></div>
  727.  
  728. <div id="box3" class="popup_block">
  729. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  730. CONTENT
  731. CONTENT
  732. CONTENT
  733. </div>
  734. </div>
  735.  
  736. </div></div></div></div></div></div></div></div></div></div>
  737.  
  738. <div id="box4" class="popup_block">
  739. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  740. <center><a href="/LINK HERE">TITLE HERE</a>
  741. &nbsp;&nbsp;&nbsp;&nbsp;<a href="/LINK HERE">TITLE HERE</a>
  742. <p>
  743. <a href="/LINK HERE">TITLE HERE</a>
  744. &nbsp;&nbsp;&nbsp;&nbsp;<a href="/LINK HERE">TITLE HERE</a>
  745. <p><a href="/LINK HERE">TITLE HERE</a>
  746. &nbsp;&nbsp;&nbsp;&nbsp;<a href="/LINK HERE">TITLE HERE</a>
  747. <p><a href="/LINK HERE">TITLE HERE</a>
  748. &nbsp;&nbsp;&nbsp;&nbsp;<a href="/LINK HERE">TITLE HERE</a>
  749. <p><a href="/LINK HERE">TITLE HERE</a>
  750. &nbsp;&nbsp;&nbsp;&nbsp;<a href="/LINK HERE">TITLE HERE</a>
  751. <p><a href="/LINK HERE">TITLE HERE</a>
  752. &nbsp;&nbsp;&nbsp;&nbsp;<a href="/LINK HERE">TITLE HERE</a>
  753. <p>
  754.  
  755.  
  756. </center><p>
  757.  
  758.  
  759. </div>
  760. </div>
  761.  
  762. </div></div></div></div></div></div></div></div></div></div>
  763.  
  764. <div id="box5" class="popup_block">
  765. <center>theme coding belongs to <i><a href="http://immortalbloodvirus.tumblr.com">Manon</a></i>.<br> do not remove the credit nor claim as your own. if you <b>HAVE</b> to take this credit out, make sure you credit me on a <b>VISIBLE</b> and often visited page.</center>
  766. </div>
  767.  
  768. </div></div></div></div></div></div></div></div></div></div>
  769.  
  770.  
  771.  
  772.  
  773.  
  774.  
  775.  
  776.  
  777.  
  778.  
  779.  
  780.  
  781. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement