Advertisement
foundcas

Theme 14: Lovely Night

Oct 6th, 2014
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.31 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4.  
  5. <!-- Don't steal and all that jazz. Any problems just tell me and I'll try to fix it. I honestly don't care if you move the credit or change the styling to suit your tastes, just don't put it on a separate page // capecoding.tumblr.com/ask -->
  6.  
  7.  
  8. <title>{Title}</title>
  9.  
  10. <link rel="shortcut icon" href="{Favicon}">
  11. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  12. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  13.  
  14. <!--Default Variables-->
  15.  
  16. <meta name="color:Background" content="#000">
  17. <meta name="color:Text" content="#aaaaaa">
  18. <meta name="color:Title Hover" content="#ee7777">
  19. <meta name="color:Link" content="#fff">
  20. <meta name="color:Link Hover" content="#eeccbb">
  21. <meta name="color:Updates Link" content="#fff">
  22.  
  23. <meta name="image:Post Background" content="http://31.media.tumblr.com/8fb80a2a6111ffbf05defc3a758a2f8a/tumblr_n10n4rpjvZ1st5lhmo1_1280.jpg">
  24.  
  25. <meta name="if:ShowStopBullyingLogo" content="1">
  26. <meta name="if:Updates" content="1">
  27. <meta name="if:Blogroll" content="1">
  28.  
  29. <meta name="text:URL" content="your url here">
  30. <meta name="text:subtitle" content="subtitle">
  31. <meta name="text:Link 1 URL" content="">
  32. <meta name="text:Link 1" content="link 1">
  33. <meta name="text:Link 2 URL" content="">
  34. <meta name="text:Link 2" content="link 2">
  35. <meta name="text:Link 3 URL" content="">
  36. <meta name="text:Link 3" content="link 3">
  37. <meta name="text:Link 4 URL" content="">
  38. <meta name="text:Link 4" content="link 4">
  39. <meta name="text:Link 5 URL" content="">
  40. <meta name="text:Link 5" content="link 5">
  41.  
  42.  
  43. <!-- jquery for tooltips-->
  44.  
  45.  
  46. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  47.  
  48. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  49.  
  50. <script>
  51.  
  52. (function($){
  53.  
  54. $(document).ready(function(){
  55.  
  56. $("a[title]").style_my_tooltips({
  57.  
  58. tip_follows_cursor:true,
  59.  
  60. tip_delay_time:30,
  61.  
  62. tip_fade_speed:300,
  63.  
  64. attribute:"title"
  65.  
  66. });
  67.  
  68. });
  69.  
  70. })(jQuery);
  71.  
  72. </script>
  73.  
  74.  
  75. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  76. <script>
  77. $(document).ready(function(){
  78. $(".clickme").click(function(){
  79. $(".revealed").slideToggle(500);
  80. });
  81. });
  82. </script>
  83.  
  84.  
  85. <script>
  86. $(document).ready(function(){
  87. $(".clickme2").click(function(){
  88. $(".revealed2").slideToggle(500);
  89. });
  90. });
  91. </script>
  92.  
  93.  
  94. <script>
  95. $(document).ready(function(){
  96. $(".clickme3").click(function(){
  97. $(".revealed3").slideToggle(500);
  98. });
  99. });
  100. </script>
  101.  
  102.  
  103. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  104. <script>
  105. $(document).ready(function(){
  106. $(".clicky").click(function(){
  107. $(".closed").toggleClass("open");
  108. });
  109. });
  110. </script>
  111.  
  112.  
  113. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
  114.  
  115. <script language="javascript">
  116. $(document).ready(function() {
  117. $('a#clickbutton').click(function() {
  118. $('.t',this).toggle();
  119. });
  120.  
  121. $("#about").css({"top": "-100%"})
  122. $("#clickbutton").toggle(
  123. function () {
  124. $("#about").animate({"top": "17%"}, "slow");
  125. },
  126. function () {
  127. $("#about").animate({"top": "-100%"}, "slow");
  128. });
  129. });
  130. </script>
  131.  
  132.  
  133.  
  134. <!--CSS customization here. -->
  135.  
  136. <style type="text/css">
  137.  
  138. #s-m-t-tooltip{
  139. position:absolute;
  140. margin-top: 15px;
  141. padding:3px;
  142. z-index:9999;
  143. background:rgba(0,0,0,.7);
  144. border-top-left-radius:15px;
  145. border-top-right-radius:15px;
  146. border-bottom-right-radius:15px;
  147. border-bottom-left-radius:15px;
  148. box-shadow:2px 2px 2px #000;
  149. }
  150.  
  151.  
  152. ::-webkit-scrollbar-thumb{
  153. width:4px;
  154. height:6px;
  155. background:#444;
  156. }
  157.  
  158. ::-webkit-scrollbar{
  159. width:3px;
  160. background: #bb5566;
  161. }
  162.  
  163. ::selection{
  164. background:#332255;
  165. color:#eeccbb;
  166. }
  167.  
  168. /*basics*/
  169. blockquote {padding:5px 0 5px 30px;
  170. border-left:1px solid {color:Text};
  171. margin-left:30px;
  172. }
  173.  
  174. pre, code {
  175. padding:10px;
  176. box-sizing:border-box;
  177. -moz-box-sizing:border-box;
  178. webkit-box-sizing:border-box;
  179. display:block;
  180. white-space: pre-wrap;
  181. white-space: -moz-pre-wrap;
  182. white-space: -pre-wrap;
  183. white-space: -o-pre-wrap;
  184. word-wrap: break-word;
  185. width:100%; overflow-x:auto;
  186. border-bottom:{color:Borders};
  187. }
  188.  
  189. body {
  190. color:{color:text};
  191. font-family:arial;
  192. font-size:11px;
  193. text-align:justify;
  194. margin:0;
  195. line-height:16px;
  196. cursor:crosshair;
  197. word-wrap:break-word;
  198. }
  199.  
  200. /* this is the coding for the background gradient*/
  201. html {
  202. height: 100%;
  203. -webkit-background-size: cover;
  204. -moz-background-size: cover;
  205. -o-background-size: cover;
  206. background-size: cover;
  207. background-repeat:no-repeat;
  208. background: #eecbba;
  209. background: -moz-linear-gradient(top, #eecbba 0%, #bb7788 49%, #322154 100%);
  210. background: -webkit-gradient(left top, left bottom, color-stop(0%, #eecbba), color-stop(49%, #bb7788), color-stop(100%, #322154));
  211. background: -webkit-linear-gradient(top, #eecbba 0%, #bb7788 49%, #322154 100%);
  212. background: -o-linear-gradient(top, #eecbba 0%, #bb7788 49%, #322154 100%);
  213. background: -ms-linear-gradient(top, #eecbba 0%, #bb7788 49%, #322154 100%);
  214. background: linear-gradient(to bottom, #eecbba 0%, #bb7788 49%, #322154 100%);
  215. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eecbba', endColorstr='#322154', GradientType=0 );
  216. }
  217.  
  218.  
  219. a {
  220. color:{color:Link};
  221. text-decoration:none;
  222. -moz-transition:all .8s ease;
  223. -webkit-transition:all .8s ease;
  224. -o-transition:all .8s ease;
  225. }
  226.  
  227. a:hover {
  228. border-bottom:1px solid {color:Link};
  229. cursor:url('http://media.tumblr.com/tumblr_m2umdrzuQ71qfamg6.gif'),auto;
  230. -moz-transition:all .8s ease;
  231. -webkit-transition:all .8s ease;
  232. -o-transition:all .8s ease;
  233. box-shadow:inset 0px 30px 0px {color:Link Hover};
  234. border-top-left-radius:15px;
  235. border-top-right-radius:15px;
  236. border-bottom-right-radius:15px;
  237. border-bottom-left-radius:15px;
  238. }
  239.  
  240. img{opacity:1;
  241. border:none;
  242. text-decoration:none}
  243.  
  244.  
  245. small {
  246. font-size:9px;}
  247.  
  248. big {
  249. font-size:12px;}
  250.  
  251.  
  252. /*pagination*/
  253. #pagination {
  254. width:500px;
  255. text-align:center;
  256. text-transform:lowercase;
  257. font-weight:bold;
  258. }
  259.  
  260.  
  261. #header{
  262. font-family: 'Raleway', sans-serif;
  263. margin-top:100px;
  264. margin-left:250px;
  265. width:500px;
  266. }
  267.  
  268. .title{
  269. font-size:15px;
  270. letter-spacing:2px;
  271. -moz-transition:all .8s ease;
  272. -webkit-transition:all .8s ease;
  273. -o-transition:all .8s ease;
  274. }
  275.  
  276. .title:hover{
  277. color:{color:Title Hover};
  278. letter-spacing:7px;
  279. cursor:help;
  280. -moz-transition:all .8s ease;
  281. -webkit-transition:all .8s ease;
  282. -o-transition:all .8s ease;
  283. }
  284.  
  285.  
  286. .stitle{
  287. font-size:15px;
  288. letter-spacing:2px;
  289. -moz-transition:all .8s ease;
  290. -webkit-transition:all .8s ease;
  291. -o-transition:all .8s ease;
  292. }
  293.  
  294. .stitle:hover{
  295. color:{color:Title Hover};
  296. letter-spacing:10px;
  297. cursor:help;
  298. -moz-transition:all .8s ease;
  299. -webkit-transition:all .8s ease;
  300. -o-transition:all .8s ease;
  301. }
  302.  
  303. #desc{
  304. font-size:12px;
  305. }
  306.  
  307. .nav{
  308. float:right;
  309. }
  310.  
  311. .nav a{
  312. padding:3px;
  313. }
  314.  
  315. .nav a:hover{
  316. box-shadow:inset 50px 0px 0px {color:Link Hover};
  317. border-top-left-radius:15px;
  318. border-top-right-radius:15px;
  319. border-bottom-right-radius:15px;
  320. border-bottom-left-radius:15px;
  321. }
  322.  
  323. /*posts*/
  324.  
  325. #entries {
  326. margin-top:10px;
  327. margin-left:250px;
  328. width:500px;
  329. height:400px;
  330. overflow-y:auto;
  331. overflow-x:hidden;
  332. border:1px solid {color:Link Hover};
  333. background:url('{image:Post Background}') no-repeat center center fixed;
  334. -webkit-background-size: cover;
  335. -moz-background-size: cover;
  336. -o-background-size: cover;
  337. background-size: cover;
  338. }
  339.  
  340.  
  341.  
  342. #posts {
  343. width:400px;
  344. margin-top:30px;
  345. margin-bottom:30px;
  346. padding:15px;
  347. background:rgba(0,0,0,.6);
  348. margin-left:35px;
  349. border-top-left-radius:15px;
  350. border-top-right-radius:15px;
  351. border-bottom-right-radius:15px;
  352. border-bottom-left-radius:15px;
  353. }
  354. #posts img {
  355. max-width:500px;
  356. }
  357.  
  358. #posts img, #posts li, #posts blockquote {max-width: 100%;}
  359. .caption {width:100%;
  360. margin-top:10px;
  361. }
  362.  
  363. /*quote*/
  364.  
  365. #titlequote{text-align:left;
  366. font-size:14px;
  367. line-height:18px;
  368. font-weight:bold;
  369. }
  370. #source {
  371. margin-top:15px;
  372. margin-left:15px;}
  373.  
  374. /*audio*/
  375.  
  376. .player {
  377. width:25px;
  378. height:25px;
  379. overflow:hidden;
  380. position:absolute;
  381. background:white;}
  382.  
  383. .audioinfo {
  384. margin-left:50px;
  385. }
  386.  
  387.  
  388. /*asks*/
  389. .q {
  390. background:rgba(0,0,0,.8);
  391. padding:10px;
  392. border-top-left-radius:15px;
  393. border-top-right-radius:15px;
  394. border-bottom-right-radius:15px;
  395. border-bottom-left-radius:15px;
  396. }
  397. .as {
  398. padding-bottom:5px;
  399. text-align:center;
  400. text-transform:lowercase;
  401. font-size:15px;
  402. font-weight:bold;
  403. font-style:italic;
  404. }
  405.  
  406. .a {
  407. margin-top:10px;
  408. }
  409.  
  410.  
  411. /*chat*/
  412.  
  413. .chat ol {
  414. padding:0;
  415. list-style:none;
  416. }
  417. .line {padding:5px 0;}
  418.  
  419. .label {font-weight:bold;
  420. }
  421.  
  422.  
  423.  
  424.  
  425.  
  426. /*permalink and notes*/
  427.  
  428. #permalink {
  429. margin-top:15px;
  430. font-size:9px;
  431. text-transform:uppercase;
  432. }
  433. #permalink a {margin-right:10px;
  434. }
  435.  
  436.  
  437. .tags {
  438. text-transform:lowercase;
  439. word-break:break-all;
  440. font-size:9px;
  441. }
  442.  
  443. .noted {
  444. {block:IndexPage}
  445. display: none!important;
  446. {/block:IndexPage}
  447. width:400px;
  448. text-align:left;
  449. }
  450. .noted img {
  451. display:none!important;
  452. }
  453.  
  454. .noted li {
  455. list-style-type:lower-roman;
  456. padding:5px 0px;
  457. text-align:left;
  458. }
  459.  
  460.  
  461. #about {
  462. min-height:401px;
  463. max-height:401px;
  464. overflow-y:auto;
  465. position: absolute;
  466. margin-top:10px;
  467. width:463px;
  468. margin-left:250px;
  469. padding: 20px;
  470. color:#fff;
  471. background:url('{image:Post Background}') no-repeat center center fixed;
  472. -webkit-background-size: cover;
  473. -moz-background-size: cover;
  474. -o-background-size: cover;
  475. background-size: cover;
  476. }
  477.  
  478.  
  479.  
  480. {block:ifUpdates}
  481. .closed {
  482. opacity:0;
  483. width:0;
  484. -webkit-transition:all 0.6s;
  485. -moz-transition:all 0.3s;
  486. -ms-transition:all 0.6s;
  487. -o-transition:all 0.6s;
  488. transition:all 0.6s;
  489. }
  490.  
  491. .open {
  492. opacity:1;
  493. width:150px;
  494. padding-left:10px;
  495. padding-right:10px;
  496. -webkit-transition:all 0.6s;
  497. -moz-transition:all 0.3s;
  498. -ms-transition:all 0.6s;
  499. -o-transition:all 0.6s;
  500. transition:all 0.6s;
  501. }
  502.  
  503. #popup {
  504. height:35%;
  505. margin-left:50px;
  506. top:196px;
  507. position:fixed;
  508. color:#fff;
  509. line-height:120%;
  510. overflow-y:auto;
  511. padding-top:10px;
  512. }
  513.  
  514. #menulink{
  515. color:{color:Updates Link};
  516. font-family: 'Raleway', sans-serif;
  517. position:fixed;
  518. font-weight:bold;
  519. font-size:30px;
  520. margin-top:-350px;
  521. margin-left:10px;
  522. -webkit-transition:all 0.6s;
  523. -moz-transition:all 0.3s;
  524. -ms-transition:all 0.6s;
  525. -o-transition:all 0.6s;
  526. transition:all 0.6s;
  527. }
  528. {/block:ifUpdates}
  529.  
  530.  
  531. {block:ifBlogroll}
  532. #blogs img{
  533. border-radius:100%;
  534. margin:4px;
  535. width:30px;
  536. height:30px;
  537. -moz-transition:all .8s ease;
  538. -webkit-transition:all .8s ease;
  539. -o-transition:all .8s ease;
  540. }
  541.  
  542. #blogs img:hover{
  543. -webkit-filter:grayscale(.5);
  544. -webkit-transform: scale(.5,.5);
  545. -moz-transition:all .8s ease;
  546. -webkit-transition:all .8s ease;
  547. -o-transition:all .8s ease;
  548. }
  549.  
  550. #blogs a:hover{
  551. border:none;
  552. box-shadow:none;
  553. }
  554. {/block:ifBlogroll}
  555.  
  556. .revealed,.revealed2,.revealed3 {
  557. display:none;
  558. }
  559.  
  560. #cred{
  561. position:fixed;
  562. bottom:15px;
  563. left:15px;
  564. text-transform:uppercase;
  565. font-size:15px;
  566. }
  567.  
  568. {CustomCSS}
  569.  
  570.  
  571. </style>
  572.  
  573.  
  574.  
  575. </head>
  576.  
  577. <body>
  578.  
  579.  
  580. <div id="header">
  581. <a id="clickbutton" class="t" title="description, message, and blogroll"><span class="t"><span class="title">{Title}</span></span>
  582. <span class="t" style="display:none"><span class="stitle">{text:Subtitle}</span></span></a>
  583. <span class="nav">
  584. <a href="/">index</a> /
  585. <a href="{text:Link 1 URL}">{text:Link 1}</a> /
  586. <a href="{text:Link 2 URL}">{text:Link 2}</a> /
  587. <a href="{text:Link 3 URL}">{text:Link 3}</a> /
  588. <a href="{text:Link 4 URL}">{text:Link 4}</a>
  589. <a href="{text:Link 5 URL}">{text:Link 5}</a>
  590. </span>
  591. </div>
  592.  
  593.  
  594. <div id="about">
  595.  
  596. <div class="clickme" title="click" style="font-weight:bold;font-size:25px;text-align:center;text-transform:lowercase;font-family: 'Raleway', sans-serif;">Description</div>
  597.  
  598. <br>
  599. <div id="desc" class="revealed">{Description}</div>
  600.  
  601. <br><br>
  602.  
  603. <div class="clickme2" title="click" style="font-weight:bold;font-size:25px;text-align:center;text-transform:lowercase;font-family: 'Raleway', sans-serif;">Message</div>
  604. <br>
  605. <div class="revealed2">
  606. <p><iframe frameborder="0" scrolling="no" width="100%" height="200" src="http://www.tumblr.com/ask_form/{text:URL}.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('ask_form').allowTransparency=true;</script><![endif]--></p>
  607. <p><iframe frameborder="0" scrolling="yes" width="100%" height="350" src="http://www.tumblr.com/submit_form/{text:URL}.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('submit_form').allowTransparency=true;</script><![endif]--></p>
  608. </div>
  609.  
  610. <br><br>
  611.  
  612.  
  613. {block:ifBlogroll}
  614. <div class="clickme3" title="click" style="font-weight:bold;font-size:25px;text-align:center;text-transform:lowercase;font-family: 'Raleway', sans-serif;">Blogroll</div>
  615. <br>
  616. <div id="blogs" class="revealed3">
  617. <center>
  618. {block:Following}{block:Followed}<a title="{FollowedName}" target='_blank' href='{FollowedURL}'><img border='1' src='{FollowedPortraitURL-96}' />{/block:Followed}{/block:Following}
  619. </center>
  620. </div>
  621. </div>
  622. {/block:ifBlogroll}
  623.  
  624. <div id="entries">
  625.  
  626. {block:Posts}
  627. <div id="posts">
  628.  
  629.  
  630. {block:Quote}
  631.  
  632.  
  633. <div id="titlequote">“{Quote}”</div>
  634. {block:Source}<div id="source">&mdash; {Source}</div>{/block:Source}
  635. {/block:Quote}
  636.  
  637.  
  638.  
  639. {block:Text}
  640.  
  641. {block:Title}
  642. <div id="title">{Title}</div>{/block:Title}
  643. {Body}
  644. {/block:Text}
  645.  
  646. {block:Link}
  647. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  648. {/block:Link}
  649.  
  650. {block:Chat}
  651. {block:Title}
  652. <h1>{Title}</h1>
  653. {/block:Title}
  654. <div class="chat">
  655. <ol>{block:Lines}
  656. <li class="line {Alt}">
  657. {block:Label}
  658. <span class="label">
  659. {Label}</span>
  660. {/block:Label}{Line}</li>
  661. {/block:Lines}
  662. </ol></div>
  663. {/block:Chat}
  664.  
  665. {block:Photo}
  666. {LinkOpenTag}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{LinkCloseTag}
  667. {/block:Photo}
  668.  
  669. {block:Photoset}
  670. {Photoset-400}
  671. {/block:Photoset}
  672.  
  673. {block:Video}
  674. {Video-400}
  675. {/block:Video}
  676.  
  677. {block:Audio}
  678. <div class="player">{AudioPlayerWhite}</div>
  679. <div class="audioinfo">
  680. {block:TrackName}{TrackName}{/block:TrackName}{block:Artist}<br>{Artist}{/block:Artist}
  681. </div>
  682. {/block:Audio}
  683.  
  684. {block:Answer}
  685. <div class="as">{Asker} inquired:</div>
  686. <div class="q">{Question}</div>
  687. <div class="a">{Answer}</div>
  688. {/block:Answer}
  689.  
  690. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  691.  
  692. {block:Date}
  693. <div id="permalink">
  694. <a href="{Permalink}" >{12Hour}:{Minutes} {AmPm}</a>{block:NoteCount}<a href="{Permalink}">+ {NoteCount}</a>{/block:NoteCount}{block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{block:ContentSource}<a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:ContentSource}{/block:RebloggedFrom}
  695. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">#{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  696. </div>
  697. {/block:Date}
  698.  
  699.  
  700. {block:PostNotes}<div class="noted">{PostNotes}</div>{/block:PostNotes}
  701. </div>
  702.  
  703.  
  704.  
  705. {/block:Posts}
  706.  
  707. <div id="pagination">
  708. {block:Pagination}
  709. {block:PreviousPage}
  710. <a href="{PreviousPage}">&larr; previous </a>
  711. {/block:PreviousPage}
  712.  
  713.  
  714. {block:NextPage}
  715. <a href="{NextPage}">next &rarr;</a>
  716. {/block:NextPage}
  717. {/block:Pagination}
  718. </div>
  719.  
  720.  
  721.  
  722. </div>
  723.  
  724. {block:ContentSource}
  725. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  726. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  727. {/block:SourceLogo}
  728. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  729. {/block:ContentSource}
  730.  
  731. {block:ifUpdates}
  732. <div id="menulink">
  733. <div class="clicky" style="cursor:help;">
  734. u<br><br><br>
  735. p<br><br><br>
  736. d<br><br><br>
  737. a<br><br><br>
  738. t<br><br><br>
  739. e<br><br><br>
  740. s<br><br>
  741. </div>
  742. </div>
  743.  
  744.  
  745. <div id="popup" class="closed">
  746. <div style="border:1px solid #fff;font-size:13px;text-transform:uppercase;padding:3px;text-align:center;font-family: 'Raleway', sans-serif;">subtitle</div>
  747.  
  748. put your updates here <br>
  749. put your updates here <br>
  750. put your updates here <br>
  751.  
  752.  
  753. </div>
  754. {/block:ifUpdates}
  755.  
  756.  
  757. <div id="cred"><a title="theme credit" href="http://foundcas.tumblr.com">dr</a></div>
  758.  
  759. {block:IfShowStopBullyingLogo}
  760. <div style="bottom:30px; right:30px; width:auto; height:auto; position:fixed; display:block; z-index:9999999; background-color:transparent"><a href="http://stop-bullies.tumblr.com"><img src=" http://i43.tinypic.com/2w585e1.png" width="90"></a></div>
  761. {/block:IfShowStopBullyingLogo}
  762.  
  763. </body>
  764. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement