Guest User

wild theme

a guest
Jan 25th, 2016
792
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.85 KB | None | 0 0
  1.  
  2. <!--
  3.  
  4. theme by ellie @ iinsanes
  5. pls don't remove credit thank u !
  6.  
  7. -->
  8.  
  9. <!DOCTYPE html>
  10. <head>
  11. <script type="text/javascript"
  12. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  13. <script>
  14. $(document).ready(function() {
  15. //
  16. $('a.poplight[href^=#]').click(function() {
  17. var popID = $(this).attr('rel'); //Get Popup Name
  18. var popURL = $(this).attr('href'); //Get Popup href to define size
  19. var query= popURL.split('?');
  20. var dim= query[1].split('&');
  21. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  22. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://upload.wikimedia.org/wikipedia/commons/f/f8/Tooltip-CloseButton.png" class="btn_close" title="escape" alt="escape" /></a>');
  23. var popMargTop = ($('#' + popID).height() + 50) / 2;
  24. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  25. //Apply Margin to Popup
  26. $('#' + popID).css({
  27. 'margin-top' : -popMargTop,
  28. 'margin-left' : -popMargLeft
  29. });
  30. $('body').append('<div id="fade"></div>');
  31. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  32. return false;
  33. });
  34. $('a.close, #fade').live('click', function() {
  35. $('#fade , .popup_block').fadeOut(function() {
  36. $('#fade, a.close').remove(); //fade them both out
  37. });
  38. return false;
  39. });
  40. });
  41. </script>
  42.  
  43. <title>{Title}</title>
  44.  
  45. <link rel="shortcut icon" href="{Favicon}">
  46. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  47. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  48.  
  49. <!--Default Variables-->
  50.  
  51. <meta name="color:background" content="#ffffff"/>
  52. <meta name="color:text" content="#898989"/>
  53. <meta name="color:link" content="#ffffff"/>
  54. <meta name="color:sidebarlinks" content="#ffffff"/>
  55. <meta name="color:linkbackground" content="#000000"/>
  56. <meta name="color:linkhover" content="#000000"/>
  57. <meta name="color:linkhover" content="#ffffff"/>
  58. <meta name="color:scrollbar" content="#d5d5d5" />
  59. <meta name="color:borders" content="#ebebeb"/>
  60. <meta name="color:textshadow" content="#000000"/>
  61. <meta name="color:postbackground" content="#ffffff"/>
  62. <meta name="if:black and white images" content="0">
  63. <meta name="if:fadingsidebar" content="1">
  64.  
  65. <meta name="image:sidebar" content="" />
  66. <meta name="image:sidebar2" content="" />
  67. <meta name="image:sidebar3" content="" />
  68. <meta name="image:background" content="" />
  69.  
  70. <meta name="text:link one" content="" />
  71. <meta name="text:link one title" content="" />
  72. <meta name="text:link two" content="" />
  73. <meta name="text:link two title" content="" />
  74. <meta name="text:link three" content="" />
  75. <meta name="text:link three title" content="" />
  76. <meta name="text:link four" content="" />
  77. <meta name="text:link four title" content="" />
  78.  
  79.  
  80.  
  81.  
  82. <meta name="text:title" content="">
  83.  
  84.  
  85.  
  86. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  87.  
  88. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  89.  
  90. <script>
  91. (function($){
  92. $(document).ready(function(){
  93. $("a[title]").style_my_tooltips({
  94. tip_follows_cursor:true,
  95. tip_delay_time:20,
  96. tip_fade_speed:300,
  97. attribute:"title"
  98. });
  99. });
  100. })(jQuery);
  101. </script>
  102.  
  103. <style type="text/css">
  104. iframe#tumblr_controls { white-space:nowrap; -webkit-filter: invert(100%); -moz-filter: invert(100%); -o-filter: invert(100%); -ms-filter: invert(100%); filter: invert(100%); opacity:1;}
  105.  
  106.  
  107. #fade { /*--Transparent background layer--*/
  108. display: none; /*--hidden by default--*/
  109. background: #000;
  110. background-image: url('');
  111. position: fixed; left: 0; top: 0;
  112. width: 100%; height: 100%;
  113. opacity: .80;
  114. z-index: 9999;
  115. }
  116. .popup_block{
  117. display: none; /*--hidden by default--*/
  118. background: #000;
  119. padding: 20px;
  120. border: 2px solid #ddd;
  121. float: left;
  122. font-size: 12px;
  123. position: fixed;
  124. top: 50%; left: 50%;
  125. z-index: 99999;
  126. width: 300px; height: 200px;
  127. /*--CSS3 Box Shadows--*/
  128. -webkit-box-shadow: 0px 0px 20px #000;
  129. -moz-box-shadow: 0px 0px 20px #000;
  130. box-shadow: 0px 0px 20px #000;
  131. /*--CSS3 Rounded Corners--*/
  132. -webkit-border-radius: 0px;
  133. -moz-border-radius: 0px;
  134. border-radius: 0px;
  135. height: 100%;
  136. width: 300px;
  137. overflow-y:scroll;
  138. overflow-x:hidden;
  139. }
  140. img.btn_close {
  141. float: right;
  142. margin: -5px -5px 0 0;
  143. }
  144. /*--Making IE6 Understand Fixed Positioning--*/
  145. *html #fade {
  146. position: absolute;
  147. }
  148. *html .popup_block {
  149. position: absolute;
  150. }
  151.  
  152.  
  153. #s-m-t-tooltip{
  154. font-size:9px;
  155. position:absolute;
  156. margin-top:15px;
  157. font-family: cursive, arial, 'times new roman', sans-serif;
  158. border:1px dotted #000;
  159. background:{color:backgrounds};
  160. z-index:9999;
  161. color:{color:text};
  162. background-color:{color:background};
  163. text-transform:lower;
  164. padding:3px 3px 3px 3px;
  165. -webkit-transition:all 0.2s;
  166. -moz-transition:all 0.2s;
  167. -ms-transition:all 0.2s;
  168. -o-transition:all 0.2s;
  169. transition:all 0.2s;
  170. }
  171.  
  172.  
  173. ::-webkit-scrollbar{height: 5px;
  174. width: 5px;
  175. border: 1px solid #000
  176. background-color:{color:borders}}
  177. ::-webkit-scrollbar-thumb{background-color:#000; border: 1px solid #fff;}
  178. ::-webkit-scrollbar-track{background-color:#000;}
  179.  
  180.  
  181. blockquote {
  182. padding-left:9px;
  183. margin:6px 10px 6px 5px;
  184. border-left:1px solid {color:borders};
  185. max-width:500px!important;
  186. }
  187.  
  188.  
  189. body {
  190. background:{color:background};
  191. color:{color:text};
  192. font-family: cursive, arial, 'times new roman', sans-serif;
  193. font-size:9px;
  194. text-align:justify;
  195. margin:0;
  196. line-height:15px;
  197. background-image:url({image:Background});
  198. background-attachment: fixed;
  199. background-repeat: repeat;
  200. text-shadow: .5px .5px .5px #000;
  201. }
  202.  
  203.  
  204. a {
  205. text-decoration:none;
  206. color:{color:link};
  207. -moz-transition-duration:0.5s;
  208. -webkit-transition-duration:0.5s;
  209. -o-transition-duration:0.5s;
  210. }
  211.  
  212. a:hover {
  213. text-decoration:none;
  214. color:{color:linkhover};
  215. -moz-transition-duration:0.5s;
  216. -webkit-transition-duration:0.5s;
  217. -o-transition-duration:0.5s;
  218. }
  219.  
  220.  
  221. b, strong {
  222. color:{color:text}}
  223. i, em {
  224. color:{color:text}}
  225. p {
  226. margin-top:5px;
  227. margin-bottom:5px}
  228. ol {
  229. list-style:normal;}
  230. ul {
  231. list-style:square;}
  232.  
  233. small {
  234. font-size:9px;}
  235.  
  236. sub {
  237. font-size:9px;}
  238.  
  239. big {
  240. font-size:12px;}
  241.  
  242.  
  243.  
  244.  
  245. #title {
  246. font-size:12px;
  247. line-height:18px;
  248. font-weight:bold;
  249. text-transform:uppercase;
  250. margin-bottom:9px;
  251. text-align:justify;
  252. color:{color:text};
  253. }
  254.  
  255. #title a {
  256. color:{color:text};
  257. }
  258.  
  259.  
  260.  
  261. #fun {
  262. position:fixed;
  263. background: transparent;
  264. left:220px;
  265. top:130px;
  266. width: 100px;
  267. height:220px;
  268. padding:0px 30px 0px 0px;
  269. {block:ifblackandwhiteimages}
  270. -webkit-filter: grayscale(100%); filter: grayscale(100%);
  271. {/block:ifblackandwhiteimages}
  272. }
  273.  
  274.  
  275. #links {
  276. font-size:8px;
  277. position: fixed;
  278. font-family:Franklin Gothic Medium ;
  279. color:{color:sidebarlinks};
  280. letter-spacing:2px;
  281. word-spacing:0px;
  282. text-align: justify;
  283. text-decoration: bold;
  284. text-shadow: 2px 2px 2px #999999;
  285. margin-top:280px;
  286. margin-bottom:0px;
  287. margin-left: 90px;
  288. width:90px;
  289. height: -310px;
  290. padding-top: 1px;
  291. padding-bottom: 1px;
  292. background: {color:linkbackground};
  293. -webkit-transition-duration:0.5s;
  294. -moz-transition-duration:0.5s;
  295. -o-transition-duration:0.5s;
  296. text-shadow: 2px 2px 2px {color:linktextshadow};
  297. }
  298.  
  299.  
  300. #links a {
  301. font-size: 8px;
  302. font-style: bold;
  303. color:{color:sidebarlinks};
  304. padding:0px;
  305. padding-right: 8px;
  306. margin-bottom: 1px;
  307. text-align: justify;
  308. -moz-transition-duration:0.6s;
  309. -webkit-transition-duration:0.6s;
  310. -o-transition-duration:0.6s;
  311. width:20px;
  312. display:inline-block;
  313. background:{color:linkbackground};
  314. }
  315.  
  316. #links a:hover {
  317. color:{color:linkhover};
  318. -moz-transition-duration:0.6s;
  319. -webkit-transition-duration:0.6s;
  320. -o-transition-duration:0.6s;
  321. text-shadow:6px 0px #ddd, -6px 0px #ccc;
  322. -webkit-transition: all 0.2s linear;
  323. -webkit-transition: all 0.2s linear;
  324. -moz-transition: all 0.2s linear;
  325. transition: all 0.2s linear;
  326. }
  327.  
  328. #description {
  329. width: 130px;
  330. position:fixed;
  331. font-size: 9px;
  332. margin-top:150px;
  333. margin-left: -59px;
  334. padding:0px 25px 10px 20px;
  335. background-color:transparent;
  336. color:{color:text};
  337. text-align:justify;
  338. text-shadow: 1px 1px 1px {color:textshadow};
  339. font-style: bold;
  340. font-family: cursive, arial, 'times new roman', sans-serif;
  341. }
  342.  
  343. #titleswag {
  344. font-size:12px;
  345. position: fixed;
  346. margin-top: -20px;
  347. width: 240px;
  348. margin-left: -130px;
  349. background-color:{color:linkbackground};
  350. font-family: cursive, arial, 'times new roman', sans-serif;
  351. font-weight:bold;
  352. text-transform:uppercase;
  353. text-align:right;
  354. letter-spacing:1px;
  355. padding:3px 8px 5px 5px;
  356. background: {color:linkbackground};
  357. color: {color:sidebarlinks};
  358. text-shadow: 2px 2px 2px {color:linktextshadow};
  359. }
  360.  
  361. #titleswag:hover {
  362. text-shadow:6px 0px #ddd, -6px 0px #ccc;
  363. -webkit-transition: all 0.2s linear;
  364. -webkit-transition: all 0.2s linear;
  365. -moz-transition: all 0.2s linear;
  366. transition: all 0.2s linear;
  367. }
  368.  
  369. #pagination {
  370. width:332px;
  371. text-align:center;
  372. margin:50px 0;
  373. text-transform:uppercase;
  374. letter-spacing:1px;
  375. font-size:15px;
  376. }
  377.  
  378. #pagination a {
  379. line-height:14px;
  380. padding:0 5px;
  381. }
  382.  
  383.  
  384. #entry {
  385. margin-top:30px;
  386. margin-left:15px;
  387. width:400px;
  388. padding-left: 10px;
  389. padding-right: 10px;
  390. }
  391.  
  392.  
  393.  
  394. #posts {
  395. width:400px;
  396. {block:IndexPage}
  397. margin-bottom:25px;
  398. {/block:IndexPage}
  399. {block:PermalinkPage}
  400. margin-bottom:50px;
  401. {/block:PermalinkPage}
  402. -webkit-filter: grayscale(100%); filter: grayscale(100%);
  403. {block:ifblackandwhiteimages}
  404. -webkit-filter: grayscale(100%); filter: grayscale(100%);
  405. {/block:ifblackandwhiteimages}
  406. }
  407.  
  408. #posts img {
  409. max-width:400px;
  410. -webkit-filter: grayscale(100%); filter: grayscale(100%);
  411. {block:ifblackandwhiteimages}
  412. -webkit-filter: grayscale(100%); filter: grayscale(100%);
  413. {/block:ifblackandwhiteimages}
  414. }
  415.  
  416. #musespage {
  417. background:{color:postbackground};
  418. width:360px;
  419. padding:30px 50px 0px 20px;
  420. top:81px;
  421. height:462px;
  422. overflow-y:auto;
  423. overflow-x:hidden;
  424. margin-left: .5px;
  425. display:none;
  426. position:fixed;
  427.  
  428. }
  429.  
  430. #musespage img {
  431. width:100px;
  432. height:100px;
  433. }
  434.  
  435. #musespage a {
  436. border:0px;
  437. }
  438.  
  439. #closebutton {
  440. font-size:11px;
  441. color:{color:text};
  442. margin-top:-28px;
  443. position:fixed;
  444. text-align:right;
  445. width:390px;
  446. }
  447.  
  448. #closebutton:hover {
  449. color:{color:link hover};
  450. }
  451.  
  452. popuplink:hover {
  453. cursor:help;
  454. color:{color:link hover};
  455. }
  456.  
  457.  
  458.  
  459.  
  460.  
  461.  
  462.  
  463.  
  464. #container {
  465. position:fixed;
  466. width:450px;
  467. height:380px;
  468. margin-top:100px;
  469. margin-left:420px;
  470. overflow-y:scroll;
  471. overflow-x:hidden;
  472. background-color:#000;
  473. background:{color:postbackground};
  474. -moz-box-shadow: 0px 1px 5px #fff;
  475. -webkit-box-shadow: 0px 1px 5px#fff;
  476. box-shadow: 0px 1px 5px #fff;}
  477. }
  478.  
  479.  
  480. #tquote {
  481. font-size:11px;
  482. line-height:16px;
  483. font-family:arial;
  484. text-align:justify;
  485. padding:12px 12px 12px 12px;
  486. color:{color:text};
  487. font-weight:bold;
  488. background-image: url("http://puu.sh/dKgp9/bbf2690826.png");
  489. min-height:20px;
  490. background-repeat:no-repeat;
  491. }
  492.  
  493.  
  494.  
  495.  
  496.  
  497. .playbutton {
  498. overflow:hidden;
  499. position:relative;
  500. z-index:1000;
  501. width:26px;
  502. height:26px;
  503. margin:11px 11px 11px 11px;
  504. }
  505.  
  506. .playbox {
  507. float:left;
  508. background-color:#000;
  509. position:absolute;
  510. z-index:1000;
  511. width:50px;
  512. height:50px;
  513. margin:10px;
  514. -webkit-border-radius:50px;
  515. -moz-border-radius:50px;
  516. opacity:0.2;
  517. -moz-transition-duration:0.6s;
  518. -webkit-transition-duration:0.6s;
  519. -o-transition-duration:0.6s;
  520. }
  521.  
  522. .playbox:hover {
  523. opacity:0.9;
  524. -moz-transition-duration:0.6s;
  525. -webkit-transition-duration:0.6s;
  526. -o-transition-duration:0.6s;
  527. }
  528.  
  529. .info {
  530. float:right;
  531. font-size:9px;
  532. text-align:left;
  533. width:400px;
  534. background-color:{color:postbackground};
  535. padding:12px;
  536. height:46px;
  537. line-height:150%;
  538. font-family:arial;
  539. letter-spacing:0px;
  540. font-family:arial;
  541. text-transform:lowercase;
  542. }
  543.  
  544. .info i {
  545. font-family:arial;
  546. font-style:normal;
  547. font-weight:bold;
  548. font-size:9px;
  549. text-transform:uppercase;
  550. }
  551.  
  552. .info b {
  553. font-family:arial;
  554. font-size:9px;
  555. text-transform:uppercase;
  556. }
  557.  
  558. .cover {
  559. position:relative;
  560. z-index:1;
  561. width:50px;
  562. height:50px;
  563. outline:10px solid {color:background};
  564. margin:10px;
  565. }
  566.  
  567.  
  568.  
  569. #question {
  570. padding:15px;
  571. text-transform:uppercase;
  572. font-weight:bold;
  573. background-color:{color:background};
  574. }
  575.  
  576. #answer {
  577. padding:5px 5px 2px 15px;
  578. }
  579.  
  580.  
  581.  
  582. .chat ol {
  583. padding:0;
  584. line-height:180%;
  585. list-style:none;
  586. }
  587.  
  588. .line.odd {
  589. background:{color:background};
  590. padding:5px;
  591. }
  592.  
  593. .line.even {
  594. padding:5px;
  595. }
  596.  
  597. .label {
  598. font-weight:bold;
  599. padding-right:1px;
  600. letter-spacing:1px;
  601. text-transform:uppercase;
  602. color:{color:text};
  603. }
  604.  
  605.  
  606.  
  607.  
  608. #permalink {
  609. margin-top:2px;
  610. background-color:{color:postbackground};
  611. border-bottom:1px solid {color:borders};
  612. font:8px arial;
  613. letter-spacing:1px;
  614. padding:5px 3px 5px 3px;
  615. text-align:right;
  616. text-transform:uppercase;
  617. }
  618.  
  619. #permalink a:hover {
  620. color:{color:link};
  621. }
  622.  
  623.  
  624. .tags {
  625. text-align:right;
  626. font-size:8px;
  627. font-family:arial;
  628. letter-spacing:1px;
  629. padding:3px 3px 0px 3px;
  630. text-transform:uppercase;
  631. }
  632.  
  633. .tags a {
  634. color:{color:link};
  635. margin:5px 5px 0px 0px;
  636. line-height:15px;
  637. }
  638.  
  639. .tags a:hover {
  640. color:{color:link};
  641. text-decoration:underline;
  642. }
  643.  
  644.  
  645.  
  646. .pagenotes {
  647. {block:IndexPage}
  648. display:none!important;
  649. {/block:IndexPage}
  650. {block:PermalinkPage}
  651. width:500px;
  652. {/block:PermalinkPage}
  653. text-align:left;
  654. }
  655.  
  656. .pagenotes img {
  657. display:none!important;
  658. }
  659.  
  660. .pagenotes li {
  661. list-style-type:none;
  662. padding:5px 0px;
  663. text-align:left;
  664. margin:0 0 0 -40px;
  665. font-size:10px;
  666. text-transform:lowercase;
  667. }
  668.  
  669. .t {
  670. font-size:12px;
  671. font-weight:bold;
  672. letter-spacing:1px;
  673. color:{color:text};
  674. text-transform:uppercase;}
  675.  
  676.  
  677. #credit {
  678. position:fixed;
  679. right:0px;
  680. bottom:0px;
  681. padding:4px;
  682. text-transform:uppercase;
  683. letter-spacing:2px;
  684. font-size:8px;
  685. font-family: arial;
  686. margin-bottom:3px;
  687. margin-right:3px;
  688. background: {color:background};
  689.  
  690. }
  691.  
  692.  
  693. .albumart {height:100px;
  694. width:20px;
  695. overflow:hidden;}
  696. .albumart img{
  697.  
  698. }
  699. .player {width:27px;
  700. height:27px;
  701. margin:12px 13px 13px 13px;
  702. overflow:hidden;
  703. position:relative;
  704. z-index:99;
  705. border-radius:100%;}
  706. .playerback:hover .player {opacity:1;}
  707.  
  708. .audioinfo {
  709. text-align:left;
  710. z-index:99;
  711. overflow:hidden;
  712. position:absolute;
  713. color:{color:link};
  714. margin-bottom:0;
  715. background-color:white;
  716. margin-top:25px;
  717. width:255px;
  718. padding:0 10px;
  719. margin-left:100px;
  720. border-radius:2px;
  721. opacity:.4;
  722. height:38px;
  723. line-height:15px;
  724. padding-top:12px;
  725. -webkit-transition:all 0.4s ease-in-out;
  726. -moz-transition:all 0.4s ease-in-out;
  727. -o-transition:all 0.4s ease-in-out;
  728. -ms-transition: all 0.4s ease-in-out;
  729. transition:all 0.5s ease-in-out}
  730. .albumart:hover .audioinfo {opacity:.9;
  731. -webkit-transition:all 0.4s ease-in-out;
  732. -moz-transition:all 0.4s ease-in-out;
  733. -o-transition:all 0.4s ease-in-out;
  734. -ms-transition: all 0.4s ease-in-out;
  735. transition:all 0.5s ease-in-out}
  736.  
  737. .audioinfo b {font-size:12px;}
  738.  
  739. .playerback {height:50px;
  740. opacity:.4;
  741. width:50px;
  742. z-index:99;
  743. margin-left:25px;
  744. margin-top:25px;
  745. position:absolute;
  746. background-color:white;
  747. border-radius:100%;
  748. -webkit-transition:all 0.4s ease-in-out;
  749. -moz-transition:all 0.4s ease-in-out;
  750. -o-transition:all 0.4s ease-in-out;
  751. -ms-transition: all 0.4s ease-in-out;
  752. transition:all 0.5s ease-in-out}
  753.  
  754. .albumart:hover .playerback {opacity:.9;
  755. -webkit-transition:all 0.4s ease-in-out;
  756. -moz-transition:all 0.4s ease-in-out;
  757. -o-transition:all 0.4s ease-in-out;
  758. -ms-transition: all 0.4s ease-in-out;
  759. transition:all 0.5s ease-in-out}
  760.  
  761.  
  762.  
  763.  
  764. {CustomCSS}
  765.  
  766.  
  767. </style>
  768.  
  769.  
  770.  
  771. </head>
  772.  
  773.  
  774. <body>
  775.  
  776.  
  777.  
  778. <div id="links">
  779. &nbsp; &nbsp;{block:IfLinkonetitle}<a href="{text:link one}">{text:link one title}</a> {/block:IfLinkonetitle}<div align="left" style="line-height:12px; margin-top:0px; margin-bottom:-10px; padding-bottom:3px;color:#000000; border-bottom:1px solid #8c8888;"></div><br/>
  780. &nbsp; &nbsp;{block:IfLinktwotitle}<a href="{text:link two}">{text:link two title}</a> {/block:IfLinktwotitle}<div align="left" style="line-height:10px; margin-top:0px; margin-bottom:-10px; padding-bottom:3px;color:#000000; border-bottom:1px solid #8c8888;"></div><br/>
  781. &nbsp; &nbsp;{block:IfLinkthreetitle}<a href="{text:link three}">{text:link three title}</a>{/block:IfLinkthreetitle}<div align="left" style="line-height:12px; margin-top:0px; margin-bottom:-10px; padding-bottom:3px;color:#000000; border-bottom:1px solid #8c8888;"></div><br/>
  782. &nbsp; &nbsp;{block:IfLinkfourtitle}<a href="{text:link four}">{text:link four title}</a>{/block:IfLinkfourtitle}</div><br/>
  783. </div>
  784. </div>
  785.  
  786. <div id="fun">
  787. <div id="description"><div style="overflow:auto; width: 150px; height:77px; border: 1px solid #000000; padding: 7px; background-color: {color:background}; text-align: center;">{description}</div>
  788. </div>
  789. <div id="titleswag">
  790. {text:title}</div><br /><br />
  791. <img src="{image:sidebar}" style="width:65px; {block:ifcirclesidebar}border-radius: 100%;{/block:ifcirclesidebar} position:fixed; {block:iffadingsidebar} opacity: .5;{/block:iffadingsidebar} border: 1px solid {color:borders}; margin-top: 20px; padding:5px; background-color: {color:background}; margin-left:-130px;" align="center"><img src="{image:sidebar2}" style="width:65px; {block:ifcirclesidebar}border-radius: 100%;{/block:ifcirclesidebar} position:fixed; {block:iffadingsidebar} opacity: .8;{/block:iffadingsidebar} border: 1px solid {color:borders}; margin-top:20px; padding:5px; background-color: {color:background}; margin-left:-40px;" align="center"><img src="{image:sidebar3}" style="width:65px; {block:ifcirclesidebar}border-radius: 100%;{/block:ifcirclesidebar} position:fixed; border: 1px solid {color:borders}; margin-top:20px; padding:5px; background-color: {color:background}; margin-left:50px;" align="center"><br /><br />
  792.  
  793.  
  794. </div></div>
  795.  
  796.  
  797.  
  798. </div>
  799.  
  800. <div id="container">
  801. <div id="entry">{block:Posts}<div id="posts">
  802. <!-- {block:NoRebloggedFrom}
  803. {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
  804. {/block:NoRebloggedFrom}
  805. {block:ContentSource}<!-- {SourceURL}
  806. {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
  807. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}
  808. {/block:ContentSource} -->
  809.  
  810. {block:Quote}
  811. <div id="tquote">{Quote}</div>
  812. {block:Source}<div id="source">– {Source}</div>{/block:Source}
  813. {/block:Quote}
  814.  
  815.  
  816.  
  817. {block:Text}
  818. {block:Title}
  819. <div id="title">{Title}</div>{/block:Title}
  820. {Body}
  821. {/block:Text}
  822.  
  823.  
  824. {block:Link}
  825. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  826. {/block:Link}
  827.  
  828.  
  829. {block:Chat}
  830. {block:Title}
  831. <h1>{Title}</h1>
  832. {/block:Title}
  833. <div class="chat">
  834. <ol>{block:Lines}
  835. <li class="line {Alt}">
  836. {block:Label}
  837. <span class="label">
  838. {Label}</span>
  839. {/block:Label}{Line}</li>
  840. {/block:Lines}
  841. </ol></div>
  842. {/block:Chat}
  843.  
  844.  
  845. {block:Photo}
  846. <center>
  847. <img src="{PhotoURL-400}" alt="{PhotoAlt}"/>
  848.  
  849. </center>
  850. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  851. {/block:Photo}
  852.  
  853.  
  854. {block:Photoset}
  855. <center>
  856. {Photoset-400}
  857.  
  858. </center>
  859. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  860. {/block:Photoset}
  861.  
  862.  
  863. {block:Video}
  864. {Video-400}
  865. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  866. {/block:Video}
  867.  
  868.  
  869.  
  870. {block:Audio}
  871. <div id="lolok"><center><div style="width:250px; margin-left:3px; height:28px;"><div style="float:left">{AudioPlayerwhite}</div><div style="margin-top:10px; float:left;">
  872. {block:ExternalAudio}{/block:ExternalAudio}</div></div></center>
  873. {block:Caption}{Caption}{/block:Caption}
  874. <div id="permalinks">
  875.  
  876.  
  877.  
  878. </div>
  879. </div>
  880. {/block:Audio}
  881.  
  882.  
  883. {block:Answer}<div id="caption">
  884. <div id="question"><strong>{Asker}:</strong> {Question}</div>
  885. <div id="answer"><i>{Answer}</i></div></div>{/block:answer}
  886.  
  887.  
  888.  
  889.  
  890. {block:Date}
  891. {/block:Date}
  892. <div id="permalink">
  893. {block:Date}<a href="{Permalink}" style="font-weight:bold;">{Month} {DayOfMonth}{DayOfMonthSuffix}, {Year}</a>{/block:Date}{block:NoteCount} · <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}
  894.  
  895.  
  896. </div>
  897. <div class="tags">{block:Tags}<a href="{TagUrl}">#{Tag}</a>{/block:Tags}</div>
  898. </div>
  899.  
  900.  
  901.  
  902. {block:PermalinkPage}
  903. {/block:PermalinkPage}
  904. <div class="pagenotes">
  905. {block:NoteCount}<div class="t">notes</div>{/block:NoteCount}
  906. {PostNotes}
  907. </ol>
  908.  
  909.  
  910.  
  911. </div>
  912. {/block:PostNotes}
  913. {/block:Posts}
  914.  
  915.  
  916. <div id="pagination">
  917. {block:Pagination}
  918. {block:PreviousPage}
  919. <a href="{PreviousPage}">&larr;</a>
  920. {/block:PreviousPage}
  921.  
  922.  
  923. {block:NextPage}
  924. <a href="{NextPage}">&rarr;</a>
  925. {/block:NextPage}
  926. {/block:Pagination}
  927. </div>
  928.  
  929.  
  930.  
  931. </div>
  932.  
  933.  
  934. </div>
  935.  
  936. <div id="credit"><a href="http://iinsanes.tumblr.com" target="_blank">©</a></div>
  937.  
  938. </body></html>
  939.  
  940.  
  941. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment