Advertisement
rasperries

counting stars lp

Mar 31st, 2014
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.61 KB | None | 0 0
  1. <!--
  2.  
  3. theme by septim
  4.  
  5. ╔╔ ══ ══ Rules:
  6. ║║ -do not use as base
  7. ╚╚ ══ ╗╗ -do not steal bits of code
  8. ║║ -do not remove credits
  9. ══ ══ ╝╝
  10.  
  11.  
  12. -->
  13.  
  14.  
  15. <!DOCTYPE html>
  16. <head>
  17.  
  18. <title>{Title}</title>
  19.  
  20. <link rel="shortcut icon" href="{Favicon}">
  21. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  22. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  23.  
  24. <!--Default Variables-->
  25.  
  26. <meta name="color:Background" content="#ffffff"/>
  27. <meta name="color:Text" content="#cccccc"/>
  28. <meta name="color:link" content="#a7a7a7"/>
  29. <meta name="color:title"content="#070707"/>
  30. <meta name="color:blog title"content="#aaaaaa"/>
  31. <meta name="color:scrollbar" content="#d5d5d5" />
  32. <meta name="color:accents" content="#f4f4f4"/>
  33. <meta name="color:link hover" content="#aaaaaa"/>
  34.  
  35. <meta name="image:header image" content=""/>
  36.  
  37. <meta name="if:Show Sidebar Image" content="1"/>
  38. <meta name="if:Hide Captions" content="0"/>
  39. <meta name="if:Show Tags" content="0">
  40.  
  41.  
  42.  
  43. <meta name="text:Link One" content="" />
  44. <meta name="text:Link One Height" content="100"/>
  45. <meta name="text:Link Two" content="" />
  46. <meta name="text:Link Two Height" content="100"/>
  47. <meta name="text:Link Three" content="" />
  48. <meta name="text:Link Three Height" content="100"/>
  49.  
  50.  
  51. <!-- jquery -->
  52.  
  53.  
  54. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  55.  
  56. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  57.  
  58. <script>
  59.  
  60. (function($){
  61.  
  62. $(document).ready(function(){
  63.  
  64. $("a[title]").style_my_tooltips({
  65.  
  66. tip_follows_cursor:true,
  67.  
  68. tip_delay_time:30,
  69.  
  70. tip_fade_speed:300,
  71.  
  72. attribute:"title"
  73.  
  74. });
  75.  
  76. });
  77.  
  78. })(jQuery);
  79.  
  80. </script>
  81.  
  82.  
  83.  
  84.  
  85.  
  86. <!--CSS customization here. -->
  87.  
  88. <style type="text/css">
  89.  
  90. #s-m-t-tooltip{
  91. font-size:9px;
  92. position:absolute;
  93. margin-top: 15px;
  94. letter-spacing:1px;
  95. z-index:9999;
  96. background:white;
  97. color:{color:text};
  98. text-transform:uppercase;
  99. padding:2px 3px 2px 3px;
  100. -webkit-transition:all 0.3s;
  101. -moz-transition:all 0.3s;
  102. -ms-transition:all 0.3s;
  103. -o-transition:all 0.3s;
  104. transition:all 0.3s;
  105. }
  106.  
  107.  
  108.  
  109.  
  110.  
  111. /*scrollbar*/
  112. ::-webkit-scrollbar{height: 5px;
  113. width: 3px;
  114. -webkit-border-radius: 0px;
  115. background-color:{color:background}}
  116. ::-webkit-scrollbar-thumb{background-color:{color:scrollbar};}
  117. ::-webkit-scrollbar-track{background-color:{color:background};}
  118.  
  119.  
  120.  
  121.  
  122. #text {position:fixed;
  123. bottom:5px;
  124. right:10px;
  125. text-transform:uppercase;
  126. font-family:helvetica;
  127. font-weight:;
  128. padding:5px 5px;
  129. font-size:14px;
  130. transform:rotate(90deg);
  131. -ms-transform:rotate(90deg); /* IE 9 */
  132. -webkit-transform:rotate(90deg); /* Safari and Chrome */}
  133. #text a {text-decoration:none;}
  134.  
  135. /*main structure*/
  136. blockquote {padding:5px 0 5px 10px;
  137. border-left:1px solid {color:accents};
  138. margin-left:10px;
  139. }
  140. .caption blockquote {text-align:justify;
  141. border-left:1px solid {color:accents};}
  142.  
  143.  
  144. body {
  145. background:{color:background};
  146. color:{color:text};
  147. font-family:times new roman;
  148. font-size:10px;
  149. text-align:justify;
  150. margin:0;
  151. line-height:17px;}
  152.  
  153.  
  154. a {
  155. color:{color:link};
  156. text-decoration:none;
  157. border-bottom:1px solid transparent;
  158. -webkit-transition:all 0.6s;
  159. -moz-transition:all 0.6s;
  160. -ms-transition:all 0.6s;
  161. -o-transition:all 0.6s;
  162. transition:all 0.6s;
  163. }
  164.  
  165. a:hover {border-bottom:1px solid {color:link hover};
  166. -webkit-transition:all 0.6s;
  167. -moz-transition:all 0.6s;
  168. -ms-transition:all 0.6s;
  169. -o-transition:all 0.6s;
  170. transition:all 0.6s; }
  171.  
  172. img{
  173. opacity:1;
  174. border:none;
  175. text-decoration:none}
  176.  
  177.  
  178. b, strong {
  179. color:{color:title}}
  180. i, em {
  181. font-weight:200;
  182. color:{color:text}}
  183. p {
  184. margin-top:5px;
  185. margin-bottom:5px}
  186. ol {
  187. list-style:normal;}
  188. ul {
  189. list-style:square;}
  190.  
  191. small {
  192. font-size:8px;}
  193.  
  194. big {
  195. font-size:12px;}
  196.  
  197.  
  198.  
  199.  
  200. #title {font-size:16px;
  201. line-height:18px;
  202. font-weight:lighter;
  203. text-transform:lowercase;
  204. margin-left:0px;
  205. margin-top:20px;
  206. margin-bottom:15px;
  207. text-align:left;
  208. color:{color:title};}
  209. #title a {color:{color:title};}
  210.  
  211.  
  212.  
  213.  
  214. /*header*/
  215.  
  216. #headers {
  217. position:fixed;
  218. font-weight:100;
  219. text-align:left;
  220. z-index:1;
  221. width:140px;
  222. margin-left:455px;
  223. margin-top:100px;
  224.  
  225. }
  226. #bat img {width:60px;
  227. height:60px;
  228. border:1px solid {color:accents};
  229. padding:5px;
  230. margin-bottom:25px;
  231. border-radius:100%;}
  232. #bat a {border:none;}
  233.  
  234.  
  235. #blogt {font-size:12px;
  236. font-family:georgia;
  237. font-style:;
  238. letter-spacing:4px;
  239. text-transform:uppercase;}
  240.  
  241. #blogt a {color:{color:title};
  242. text-decoration:none;border:none;}
  243.  
  244.  
  245.  
  246. .standardlinks {
  247. font-size:8px;
  248. letter-spacing:2px;
  249. margin-top:15px;
  250. text-transform:uppercase;
  251. }
  252.  
  253.  
  254. .standardlinks a {
  255. margin-bottom:5px;
  256. display:block;
  257. padding:2px 0px;
  258. text-align:left;
  259. text-decoration:none;
  260. margin-left:10px;
  261. line-height:16px;
  262. border-bottom:2px solid transparent;
  263. -webkit-transition:all 0.6s;
  264. -moz-transition:all 0.6s;
  265. -ms-transition:all 0.6s;
  266. -o-transition:all 0.6s;
  267. transition:all 0.6s;
  268. }
  269. .standardlinks a:before,
  270. .standardlinks label:before {
  271. width:3px;
  272. position : absolute;
  273. content:'';
  274. height:16px;
  275. margin-left:-10px;
  276. z-index:-1;
  277. background:{color:accents};
  278. transition-duration: 0.8s;
  279. -moz-transition-duration: 0.8s;
  280. -webkit-transition-duration: 0.8s;
  281. -o-transition-duration: 0.8s;
  282. }
  283.  
  284. .standardlinks a:hover::before,
  285. .standardlinks label:hover::before{
  286. width:140px;
  287. background:{color:link hover};
  288. transition-duration: 0.8s;
  289. -moz-transition-duration: 0.8s;
  290. -webkit-transition-duration: 0.8s;
  291. -o-transition-duration: 0.8s;
  292. }
  293. .standardlinks label:hover , .standardlinks a:hover {color:{color:background};}
  294. .standardlinks label{
  295. padding:5px;
  296. position: relative;
  297. margin-bottom:5px;
  298. cursor:pointer;
  299. display:block;
  300. padding:2px 0px;
  301. text-align:left;
  302. text-decoration:none;
  303. margin-left:10px;
  304. line-height:16px;
  305. border-bottom:2px solid transparent;
  306. -webkit-transition:all 0.6s;
  307. -moz-transition:all 0.6s;
  308. -ms-transition:all 0.6s;
  309. -o-transition:all 0.6s;
  310. transition:all 0.6s;
  311. }
  312.  
  313. .standardlinks input:checked + label::before,
  314. .standardlinks input:checked + label::before{
  315. background:{color:link hover};
  316. width:140px;}
  317.  
  318. .standardlinks input:checked + label {color:{color:background}}
  319.  
  320.  
  321. .standardlinks input{
  322. display: none;
  323. }
  324. .standardlinks article{
  325. overflow:hidden;
  326. margin:0;
  327. font-size:10px;
  328. text-transform:none;
  329. letter-spacing:0;
  330. height: 0px;
  331. position: relative;
  332. z-index: 10;
  333. -webkit-transition:all 0.6s;
  334. -moz-transition:all 0.6s;
  335. -ms-transition:all 0.6s;
  336. -o-transition:all 0.6s;
  337. transition:all 0.6s;
  338. }
  339. .standardlinks input:checked ~ article{
  340. -webkit-transition:all 0.6s;
  341. -moz-transition:all 0.6s;
  342. -ms-transition:all 0.6s;
  343. -o-transition:all 0.6s;
  344. transition:all 0.6s;
  345. }
  346.  
  347. .standardlinks input:checked ~ article.ac-1{
  348. height:{text:link one height}px;
  349. }
  350. .standardlinks input:checked ~ article.ac-2{
  351. height:{text:link two height}px;
  352. }
  353. .standardlinks input:checked ~ article.ac-3{
  354. height:{text:link three height}px;
  355. }
  356.  
  357. #description {margin-top:10px;
  358. line-height:15px; text-align:justify;
  359. color:{color:Description};}
  360.  
  361.  
  362. /*pagination*/
  363. #pagination {
  364. margin-top:15px;
  365. text-align:center;
  366. text-transform:uppercase;
  367. border-top:3px solid {color:accents};
  368. letter-spacing:1px;
  369. font-size:8px;
  370. font-family:arial;
  371. padding-top:5px;
  372. line-height:16px;
  373. }
  374. #pagination a {
  375. margin:0 6px;
  376. display:inline-block;
  377. border:none;
  378. }
  379.  
  380. .current_page {margin:0 6px;
  381. text-decoration:none;
  382. font-weight:bold;
  383. display:inline-block;}
  384.  
  385.  
  386. /*container*/
  387. #con {
  388. left:50%;
  389. margin-left:-200px;
  390. position:absolute;
  391. }
  392.  
  393.  
  394.  
  395. /*posts*/
  396.  
  397. #entries {
  398. margin-top:100px;
  399. width:500px;
  400. }
  401.  
  402.  
  403.  
  404. #posts {
  405. width:410px;
  406. {block:IndexPage}
  407. margin-bottom:80px;
  408. {/block:IndexPage}
  409. {block:PermalinkPage}
  410. margin-bottom:50px;
  411. {/block:PermalinkPage}
  412.  
  413. }
  414. #posts img {
  415. max-width:400px;
  416. display:block;
  417. padding:5px;
  418. background:{color:accents};
  419. }
  420. .photoset {background:{color:accents};
  421. padding:5px;}
  422.  
  423.  
  424.  
  425. /*quote*/
  426. #titlequote{
  427. font-size:10px;
  428. line-height:18px;
  429. font-weight:;
  430. color:{color:body};
  431. }
  432.  
  433. #source {
  434. font-size:10px;
  435. text-align:right;
  436. text-transform:;
  437. letter-spacing:px;
  438. margin-top:5px;
  439. padding-top:9px;}
  440.  
  441. #posts img, #posts li, #posts blockquote {max-width: 100%;}
  442. .caption img{max-width:300px;}
  443. .caption {width:400px;
  444. padding:5px;
  445. margin-top:5px;
  446. background:{color:background};
  447. text-transform:none;
  448. {block:IfHideCaptions}
  449. {block:IndexPage}
  450. display:none;
  451. {/block:IndexPage}
  452. {/block:IfHideCaptions}
  453. }
  454.  
  455.  
  456.  
  457.  
  458. /*audio*/
  459.  
  460. .player {
  461. width:25px;
  462. height:25px;
  463. overflow:hidden;
  464. margin-left:5px;
  465. padding:5px;
  466. position:absolute;
  467. margin-top:5px;
  468. border:7px solid white;
  469. background:white;
  470. z-index:2;}
  471.  
  472. .audioinfo {
  473. text-align:right;
  474. z-index:2;
  475. position:absolute;
  476. padding-top:12px;
  477. text-transform:;
  478. width:350px;
  479. font-size:10px;
  480. letter-spacing:1px;
  481. margin-left:50px;
  482. }
  483. .audioinfo b {font-size:12px;
  484. letter-spacing:0;
  485. }
  486.  
  487. .playerback {height:59px;
  488. background-color:{color:Accents};
  489. }
  490.  
  491.  
  492.  
  493.  
  494.  
  495.  
  496.  
  497. /*asks*/
  498. .q {
  499. padding:5px;
  500. border:5px solid {color:accents};
  501. }
  502. .as {
  503. font-weight:bold;
  504. margin-right:5px;
  505. text-transform:lowercase;}
  506.  
  507. .a {
  508. margin:15px 10px;}
  509.  
  510.  
  511.  
  512.  
  513.  
  514. .chat ol {
  515. padding:0;
  516. line-height:180%;
  517. list-style:none;
  518. }
  519.  
  520. .line.odd {
  521. background:{color:accents};
  522. padding:5px;
  523. }
  524.  
  525. .line.even {
  526. padding:5px;
  527. }
  528.  
  529. .label {font-weight:bold;
  530. padding-right:1px;
  531. letter-spacing:1px;
  532. text-transform:uppercase;
  533. color:{color:title};
  534. }
  535.  
  536.  
  537.  
  538.  
  539.  
  540. /*permalink and notes*/
  541.  
  542.  
  543. #permalink {
  544. text-align:left;
  545. width:400px;
  546. padding:5px;
  547. background:{color:background};
  548. margin-top:5px;
  549. font-size:8px;
  550. text-transform:uppercase;
  551. }
  552. #permalink a {margin:0 5px;
  553. }
  554.  
  555. .tags {{block:ifNotShowTags}
  556. {block:IndexPage}
  557. display:none;
  558. {/block:IndexPage}
  559. {/block:ifNotShowTags}
  560. word-break:break-all;
  561. font-size:8px;
  562. text-align:right;
  563. float:right;
  564. letter-spacing:px;
  565.  
  566.  
  567. }
  568. .tags a{
  569. text-transform:none;
  570. text-decoration:none;
  571. border-bottom: 1px solid {color:accents};
  572. }
  573.  
  574.  
  575. .pagenotes {
  576. {block:IndexPage}
  577. display: none!important;
  578. {/block:IndexPage}
  579. {block:PermalinkPage}
  580. width:400px;
  581. {/block:PermalinkPage}
  582. text-align:left;
  583.  
  584. }
  585. .pagenotes img {
  586. display:none!important;}
  587. .pagenotes li {
  588. list-style-type:none;
  589. padding:5px 0px;
  590. text-align:left;
  591. margin:0 0 0 -40px;
  592. font-size:9px;
  593. text-transform:uppercase;
  594. }
  595. .t {
  596. font-size:12px;
  597. font-weight:bold;
  598. letter-spacing:1px;
  599. color:{color:title};
  600. text-transform:uppercase;}
  601.  
  602.  
  603.  
  604.  
  605.  
  606. #theme{
  607. position:fixed;
  608. top:12px;
  609. left:12px;
  610. -webkit-border-radius:100px;
  611. padding:3px 5px 2px;
  612. text-transform:lowercase;
  613. -webkit-transition:0.6s ease-in;
  614. cursor:default;
  615. font-size:8px;
  616. color:white;
  617. }
  618.  
  619. #theme:hover{
  620. background-color:{color:white};
  621. color:white;
  622. }
  623.  
  624.  
  625.  
  626.  
  627.  
  628. {CustomCSS}
  629.  
  630.  
  631. </style>
  632.  
  633.  
  634.  
  635.  
  636.  
  637.  
  638.  
  639.  
  640. </head>
  641.  
  642. <body>
  643.  
  644.  
  645.  
  646. <div id="con">
  647.  
  648.  
  649. <div id="headers">
  650. {block:IfShowSidebarImage}
  651. <div id="bat">
  652. <a href="/"><img src="{image:Header image}"></a>
  653. </div>
  654. {/block:IfShowSidebarImage}
  655. <div id="blogt"><a href="/">{Title}</a></div>
  656.  
  657. <section class="standardlinks">
  658.  
  659. <!--first link-->
  660. {block:ifLinkOne}<div>
  661. <input id="ac-1" name="accordion-1" type="checkbox" />
  662. <label for="ac-1">{text:Link One}</label>
  663. <article class="ac-1">
  664.  
  665. <!--put info here-->
  666. trish. new york. english major. i love harry styles, reading, and iced caramel macchiatos.
  667. <!--putting {Description} instead of the above text will automatically include your description-->
  668. <!--end info-->
  669.  
  670. </article></div>{/block:ifLinkOne}
  671. <a href="/ask">message</a>
  672.  
  673. <a href="/tagss">navigation</a>
  674.  
  675. <!--second link-->
  676. {block:ifLinkTwo}<div>
  677. <input id="ac-2" name="accordion-1" type="checkbox" />
  678. <label for="ac-2">{text:Link Two}</label>
  679. <article class="ac-2">
  680.  
  681. <!--put info here-->
  682. fics:
  683. <ul>
  684. <li><b>sugar on the asphalt</b> by aboutfalling</li>
  685. <li><b>elephant gun</b> by green and yellow</li>
  686. <li><b>boys don't cry</b> by oxygenstyles</li>
  687. </ul>
  688. books:
  689. <ul>
  690. <li><b>unravel me</b> by tahereh mafi</li>
  691.  
  692. </ul>
  693.  
  694. <!--end info-->
  695.  
  696. </article></div>{/block:ifLinkTwo}
  697.  
  698.  
  699. <!--third link-->
  700. {block:ifLinkThree}<div>
  701. <input id="ac-3" name="accordion-1" type="checkbox" />
  702. <label for="ac-3">{text:Link Three}</label>
  703. <article class="ac-3">
  704.  
  705. <!--put info here-->
  706. This is <b>bold text</b> and this is <em>italic text</em>
  707. and wow even <u>underlined text</u>!
  708. <!--end info-->
  709.  
  710. </article></div>{/block:ifLinkThree}
  711. </section>
  712.  
  713. <div id="description">{Description}</div>
  714. {block:IndexPage}
  715. <div id="pagination">
  716. {block:Pagination}
  717. {block:JumpPagination length="5"}
  718. {block:CurrentPage}
  719. <span class="current_page">{PageNumber}</span>
  720. {/block:CurrentPage}
  721. {block:JumpPage}
  722. <a class="jump_page" href="{URL}">{PageNumber}</a>
  723. {/block:JumpPage}
  724. {/block:JumpPagination}
  725. {/block:Pagination}
  726. </div>
  727. {/block:IndexPage}
  728. </div>
  729.  
  730.  
  731.  
  732.  
  733.  
  734.  
  735.  
  736. <div id="entries">
  737.  
  738. {block:Posts}
  739. <div id="posts">
  740.  
  741.  
  742. {block:Quote}
  743.  
  744.  
  745. <div id="titlequote">{Quote}</div>
  746. {block:Source}<div id="source">{Source}</div>{/block:Source}
  747. {/block:Quote}
  748.  
  749.  
  750.  
  751. {block:Text}
  752.  
  753. {block:Title}
  754. <div id="title">{Title}</div>{/block:Title}
  755. {Body}
  756.  
  757.  
  758. {/block:Text}
  759.  
  760. {block:Link}
  761.  
  762. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  763.  
  764. {/block:Link}
  765.  
  766. {block:Chat}
  767. {block:Title}
  768. <h1>{Title}</h1>
  769. {/block:Title}
  770. <div class="chat">
  771. <ol>{block:Lines}
  772. <li class="line {Alt}">
  773. {block:Label}
  774. <span class="label">
  775. {Label}</span>
  776. {/block:Label}{Line}</li>
  777. {/block:Lines}
  778. </ol></div>
  779. {/block:Chat}
  780.  
  781. {block:Photo}
  782. <center>{LinkOpenTag}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{LinkCloseTag}</center>
  783. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  784.  
  785.  
  786. {/block:Photo}
  787.  
  788. {block:Photoset}
  789. <div class="photoset">
  790. <div style="margin-left:-5px;margin-top:-5px;margin-bottom:-10px">{Photoset-400}</div>
  791. </div>
  792. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  793.  
  794.  
  795. {/block:Photoset}
  796.  
  797. {block:Video}
  798. <div class="photoset">
  799. {Video-400}
  800. </div>
  801. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  802. {/block:Video}
  803.  
  804.  
  805.  
  806. {block:Audio}
  807.  
  808. <div class="audioinfo">
  809. {block:TrackName}<b>{TrackName}</b>{/block:TrackName}{block:Artist}<br>{Artist}{/block:Artist}
  810. </div>
  811. <div class="playerback">
  812. <div class="player">{AudioPlayerWhite}</div>
  813. </div>
  814. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  815. {/block:Audio}
  816.  
  817. {block:Answer}
  818. <div class="q">
  819. <span class="as">{Asker} said:</span>
  820. {Question}</div>
  821.  
  822. <div class="a">{Answer}</div>
  823.  
  824. {/block:Answer}
  825.  
  826. {block:Date}
  827. <div id="permalink">
  828. <a href="{Permalink}">{DayofMonth}.{MonthNumber}</a>{block:NoteCount}<a href="{Permalink}">+ {NoteCount}</a>{/block:NoteCount}
  829. {block:PermalinkPage}
  830. {block:ContentSource}
  831. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  832. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  833. {/block:SourceLogo}
  834. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  835. {/block:ContentSource}
  836. {block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{block:ContentSource} & <a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:ContentSource}{/block:RebloggedFrom}
  837. {/block:PermalinkPage}
  838. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  839. </div>
  840. {/block:Date}
  841.  
  842.  
  843.  
  844.  
  845.  
  846.  
  847. </div>
  848.  
  849.  
  850.  
  851. {block:PermalinkPage}
  852. {/block:PermalinkPage}
  853. <div class="pagenotes">
  854. {block:NoteCount}<div class="t">Notes</div>{/block:NoteCount}
  855. {PostNotes}
  856. </ol>
  857.  
  858.  
  859.  
  860. </div>
  861. {/block:PostNotes}
  862. {/block:Posts}
  863.  
  864.  
  865.  
  866.  
  867.  
  868. </div>
  869.  
  870.  
  871. <div id="text">
  872. <a href="http://farahmir.tumblr.com" target="_blank" title="septim">S</a></div>
  873. <div id="theme"><script language="JavaScript">
  874. var ref = (''+document.referrer+'');
  875. var w_h = window.screen.width + " x " + window.screen.height;
  876. document.write('<script src="http://freehostedscripts.net/ocounter.php?site=ID3539933&e1=&e2=&r=' + ref + '&wh=' + w_h + '"><\/script>');</script></div></a>
  877. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement