Advertisement
ten-tation

Theme #11 by thedoctorknows

May 11th, 2013
4,515
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 15.67 KB | None | 0 0
  1. <!--THEME #11 BY THEDOCTORKNOWS
  2.  
  3. Please don't remove the credit, claim this code as your own nor use this as a base code. Thank you!-->
  4.  
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  6. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  7.  
  8. <html>
  9.  
  10. <head>
  11.  
  12. <meta name="color:Background" content="#2b2a2a" />
  13. <meta name="image:Background" content="http://static.tumblr.com/ccsibxa/u7bmmcza8/cartographer.png" />
  14. <meta name="image:Sidebar" content="" />
  15. <meta name="color:Text" content="#141414" />
  16. <meta name="color:Link" content="#adaeaf" />
  17. <meta name="color:LinkHover" content="#5f5f5f" />
  18. <meta name="color:PostsBg" content="#807f7f" />
  19. <meta name="color:TagsBg" content="#464545" />
  20. <meta name="color:TagsBottom" content="#353434" />
  21. <meta name="color:TagsShadow" content="#1a1a1a" />
  22. <meta name="color:PostsShadow" content="#5c5b5b" />
  23. <meta name="color:SidebarBg" content="#464545" />
  24. <meta name="color:SidebarText" content="#b8b8b8" />
  25. <meta name="color:SideLinksBg" content="#353434" />
  26. <meta name="color:SideLinks" content="#807f7f" />
  27. <meta name="color:SidebarBottom" content="#353434" />
  28. <meta name="color:Tags" content="#8d8d8d" />
  29. <meta name="color:AsksBg" content="#575757" />
  30. <meta name="color:TagsBorder" content="#868686" />
  31.  
  32. <meta name="text:FontSize" content="11" />
  33. <meta name="text:InfoFontSize" content="9" />
  34. <meta name="text:DescriptionFontSize" content="11" />
  35. <meta name="text:LinksFontSize" content="9" />
  36. <meta name="text:URL" content="" />
  37. <meta name="text:Link 1 URL" content="" />
  38. <meta name="text:Link 1" content="" />
  39. <meta name="text:Link 2 URL" content="" />
  40. <meta name="text:Link 2" content="" />
  41. <meta name="text:Link 3 URL" content="" />
  42. <meta name="text:Link 3" content="" />
  43. <meta name="text:Link 4 URL" content="" />
  44. <meta name="text:Link 4" content="" />
  45. <meta name="text:Tab 1 Title" content="about" />
  46. <meta name="text:Tab 2 Title" content="links" />
  47. <meta name="text:Tab 3 Title" content="message" />
  48.  
  49. <meta name="if:TagsShadow" content="0" />
  50. <meta name="if:PostsShadow" content="1" />
  51. <meta name="if:Greyscale" content="1" />
  52.  
  53. <title>{Title}</title>
  54. <link rel="shortcut icon" href="{Favicon}">
  55. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  56. {block:Description}
  57. <meta name="description" content="{MetaDescription}" />
  58. {/block:Description}
  59.  
  60. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
  61.         <script>
  62.            
  63.             $(document).ready(function(){
  64.                 $('ul.tabs').each(function(){
  65.                    
  66.                     var $active, $content, $links = $(this).find('a');
  67.  
  68.                    
  69.                     $active = $($links.filter('[href="'+location.hash+'"]')[0] || $links[0]);
  70.                     $active.addClass('active');
  71.                     $content = $($active.attr('href'));
  72.  
  73.                    
  74.                     $links.not($active).each(function () {
  75.                         $($(this).attr('href')).hide();
  76.                     });
  77.  
  78.                    
  79.                     $(this).on('click', 'a', function(e){
  80.                        
  81.                         $active.removeClass('active');
  82.                         $content.hide();
  83.  
  84.                        
  85.                         $active = $(this);
  86.                         $content = $($(this).attr('href'));
  87.  
  88.                        
  89.                         $active.addClass('active');
  90.                         $content.show();
  91.  
  92.                        
  93.                         e.preventDefault();
  94.                     });
  95.                 });
  96.             });
  97.         </script>
  98.  
  99.  
  100. </head>
  101.  
  102. <style type="text/css">
  103.  
  104. @font-face {
  105.     font-family: "Yanone Kaffeesatz";
  106.     src:url('http://static.tumblr.com/ccsibxa/giFmi9pyt/yanonekaffeesatz-regular.ttf');
  107. }
  108.  
  109. body {
  110.     background:{color:Background};
  111.     background-image:url('{image:Background}');
  112.     background-attachment:fixed;
  113.     background-repeat:repeat;
  114.     color:{color:Text};
  115.     font-family:calibri;
  116.     font-size:{text:FontSize}px;
  117.     line-height:120%;
  118. }
  119.  
  120. a {
  121.     text-decoration: none;
  122.     color: {color:Link};
  123.     -webkit-transition: all 0.5s ease-out;
  124.     -moz-transition: all 0.5s ease-out;
  125.     transition: all 0.5s ease-out;
  126. }
  127.  
  128. #posts a {
  129.     font-style:italic;
  130. }
  131.  
  132. a:hover {
  133.     color:{color:LinkHover};
  134. }
  135.  
  136. p {
  137.     margin:5px 0px;
  138. }
  139.  
  140. h2 {
  141.     margin-bottom:10px;
  142. }
  143.  
  144. blockquote {
  145.     padding-left:7px;
  146.     border-left:2px solid;
  147.     margin:7px;
  148. }
  149.  
  150. blockquote blockquote {
  151.     padding-left:7px;
  152.     border-left:2px solid;
  153. }
  154.  
  155. #posts img {
  156.     max-width:500px;
  157. }
  158.  
  159. blockquote img {
  160.     max-width:445px;
  161. }
  162.  
  163. blockquote blockquote img {
  164.     max-width:400px;
  165. }
  166.  
  167. blockquote blockquote blockquote img {
  168.     max-width:355px;
  169. }
  170.  
  171. blockquote blockquote blockquote blockquote img {
  172.     max-width:310px;
  173. }
  174.  
  175. blockquote blockquote blockquote blockquote blockquote img {
  176.     max-width:265px;
  177. }
  178.  
  179. blockquote blockquote blockquote blockquote blockquote blockquote img {
  180.     max-width:220px;
  181. }
  182.  
  183. blockquote blockquote blockquote blockquote blockquote blockquote blockquote img {
  184.     max-width:175px;
  185. }
  186.  
  187. blockquote blockquote blockquote blockquote blockquote blockquote blockquote blockquote img {
  188.     max-width:130px;
  189. }
  190.  
  191. blockquote blockquote blockquote blockquote blockquote blockquote blockquote blockquote blockquote img {
  192.     max-width:85px;
  193. }
  194.  
  195. blockquote blockquote blockquote blockquote blockquote blockquote blockquote blockquote blockquote blockquote img {
  196.     max-width:40px;
  197. }
  198.  
  199. #posts li {
  200.     margin-left:30px;
  201. }
  202.  
  203. #posts ul, #posts ol {
  204.     margin:10px 0px 10px 0px;
  205. }
  206.  
  207. #posts, ol.notes {
  208.     width:500px;
  209.     margin-left:auto;
  210.     margin-right:auto;
  211.     padding:30px;
  212.     margin:60px 0px 0px 650px;
  213.     background:{color:PostsBg};
  214.     {Block:IfPostsShadow}box-shadow:inset 0px 0px 10px {color:PostsShadow};{/Block:IfPostsShadow}
  215.     overflow:hidden;
  216. }
  217.  
  218. ol.notes {
  219.         list-style: none;
  220. }
  221.  
  222. {Block:IfGreyscale}
  223.     #content a img, #posts img, #photop {
  224.        filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
  225.     filter: gray;
  226.     -webkit-filter: grayscale(100%);
  227.     -webkit-transition: all 0.8s ease-out;
  228.     -moz-transition: all 0.8s ease-out;
  229.     transition: all 0.8s ease-out;
  230.     }
  231.  
  232.     #content a:hover img, #posts img:hover, #photop:hover {
  233.        filter:none;
  234.        -webkit-filter:none;
  235.     }
  236. {/Block:IfGreyscale}
  237.  
  238. .quotepost {
  239.     padding-top:10px;
  240. }
  241.  
  242. .belowposts {
  243.     font-size:{text:InfoFontSize}px;
  244.     width:540px;
  245.     padding:10px;
  246.     text-transform:uppercase;
  247.     text-align:center;
  248.     line-height:140%;
  249.     margin-bottom:0px;
  250.     margin-left:650px;
  251.     background: {color:TagsBg};
  252.     border-top:dotted;
  253.     border-width:2px;
  254.     border-color:{color:TagsBorder};
  255.     {Block:IfTagsShadow}box-shadow:inset 0px 0px 10px {color:TagsShadow};{/Block:IfTagsShadow}
  256. }
  257.  
  258. .belowposts a {
  259.     color:{color:Tags};
  260. }
  261.  
  262. .dbox {
  263.     height: 0;
  264.     width: 512px;
  265.      border-top: 15px solid {color:TagsBottom};
  266.      border-left: 20px solid transparent;
  267.      border-right: 20px solid transparent;
  268.      padding: 0 8px 0 0;
  269.      margin-left:650px;
  270.      margin-bottom:30px;
  271. }
  272.  
  273. .caption {
  274.     margin-top:10px;
  275. }
  276.  
  277. .portrait {
  278.     width:48px;
  279.     height:48px;
  280.     border:5px solid {color:TagsBg};
  281. }
  282.  
  283. .asker {
  284.     text-transform:uppercase;
  285.     padding:5px 10px;
  286.     width:422px;
  287.     margin-left:58px;
  288.     text-align:right;
  289.     font-style:italic;
  290.     font-size:9px;
  291.     background:{color:TagsBg};
  292.     color:{color:Tags};
  293.     margin-top:-58px;
  294.     letter-spacing:0px;
  295. }
  296.  
  297. .asker a {
  298.     color:{color:Tags};
  299. }
  300.  
  301. .question {
  302.     font-style:italic;
  303.     width:422px;
  304.     height:auto;
  305.     padding:10px;
  306.     margin-left:58px;
  307.     text-align:right;
  308.     margin-top:-5px;
  309.     overflow:hidden;
  310. }
  311.  
  312. .answer {
  313.     margin-top:20px;
  314. }
  315.  
  316. ul.chat {
  317.     list-style:none;
  318. }
  319.  
  320. .chat1, .chat {
  321.     margin-left:0px;
  322. }
  323.  
  324. .chat, .chat1, .chat2 {
  325.     margin-top:-3px;
  326.     margin-bottom: -7px;
  327.     padding:5px;
  328. }
  329.  
  330. .chat2odd {
  331.     padding:5px;
  332.     background:{color:TagsBg};
  333.     color:{color:PostsBg};
  334. }
  335.  
  336. .chat2even {
  337.     padding:5px;
  338. }
  339.  
  340. #player {
  341.     width:30px;
  342.     height:30px;
  343.     overflow:hidden;
  344.     position:absolute;
  345.     margin-top:40px;
  346.     margin-bottom:45px;
  347.     margin-left:40px;
  348.     z-index:9999;
  349. }
  350.  
  351. #albumart {
  352.     float:left;
  353.     border:4px solid {color:TagsBg};
  354.     padding-bottom:-3px;
  355.     margin-right:10px;
  356.     width:100px;
  357.     height:100px;
  358. }
  359.  
  360. #albumart img {
  361.     width:100px;
  362.     height:100px;
  363.     background:{color:TagsBg};
  364. }
  365.  
  366. #aud {
  367.     min-height:100px;
  368. }
  369.  
  370. .tags {
  371.     text-transform:lowercase;
  372.     font-style:italic;
  373. }
  374.  
  375. .credit {
  376.     text-transform: uppercase;
  377.     position: fixed;
  378.     background:#929292;
  379.     bottom:5px;
  380.     right:5px;
  381.     font-size:9px;
  382.     border:1px solid white;
  383.     padding:1px 3px;
  384. }
  385.  
  386. .credit a {
  387.     color:white;
  388. }
  389.  
  390. #pagination {
  391.     position:fixed;
  392.     width:530px;
  393.     text-align:right;
  394.     font-style:italic;
  395.     font-size:10px;
  396.     top:48px;
  397.     left:0px;
  398. }
  399.  
  400. #pagination a {
  401.     color:{color:Link};
  402. }
  403.  
  404. .sbpic {
  405.     position:fixed;
  406. }
  407.  
  408. .sbpic img {
  409.     width:530px;
  410.     height:220px;
  411. }
  412.  
  413. * {padding:0; margin:0;}
  414.  
  415. .tabs {
  416.     position:fixed;
  417.     margin-top:197px;
  418. }
  419.  
  420. .tabs div {
  421.     padding:10px;
  422.     width:500px;
  423.     background:{color:SidebarBg};
  424. }
  425.  
  426. .tabs li {
  427.     list-style:none;
  428.     display:inline;
  429.     font-style:italic;
  430.     margin-left:2px;
  431. }
  432.  
  433. .tabs a {
  434.     padding:5px 10px;
  435.     display:inline-block;
  436.     background:{color:SidebarText};
  437.     color:{color:SidebarBg};
  438.     text-decoration:none;
  439. }
  440.  
  441. .tabs a.active {
  442.     background:{color:SidebarBg};
  443.     color:{color:SidebarText};
  444. }
  445.  
  446. .listone li, .listtwo li {
  447.     list-style:none;
  448.     width:200px;
  449.     padding:10px;
  450.     height:15px;
  451.     background:{color:SideLinksBg};
  452.     color:{color:SideLinks};
  453.     margin-bottom:30px;
  454.     text-transform:uppercase;
  455.     text-align:center;
  456.     font-size:{text:LinksFontSize}px;
  457.     -webkit-transition: all 0.5s ease-out;
  458.     -moz-transition: all 0.5s ease-out;
  459.     transition: all 0.5s ease-out;
  460. }
  461.  
  462. .listone {
  463.     margin-top:5px;
  464.     margin-left:10px;
  465.     letter-spacing:1px;
  466. }
  467.  
  468. .listtwo {
  469.     position:absolute;
  470.     margin-left:260px;
  471.     margin-top:-195px;
  472.     letter-spacing:1px;
  473. }
  474.  
  475. .listone a, .listtwo a {
  476.     color:{color:SideLinks};
  477.     -webkit-transition: all 0.5s ease-out;
  478.     -moz-transition: all 0.5s ease-out;
  479.     transition: all 0.5s ease-out;
  480. }
  481.  
  482. .listone li:hover, .listtwo li:hover {
  483.     color:{color:SideLinksBg};
  484.     background:{color:SideLinks};
  485.     letter-spacing:3px;
  486. }
  487.  
  488. .listone li:hover a, .listtwo li:hover a {
  489.     color:{color:SideLinksBg};
  490. }
  491.  
  492. #tab1, #tab2, #tab3 {
  493.     position:fixed;
  494.     width:500px;
  495.     padding:15px;
  496.     height:190px;
  497.     color:{color:SidebarText};
  498.     background:{color:SidebarBg};
  499.     margin-top:220px;
  500. }
  501.  
  502. #tab1 {
  503.     font-size:{text:DescriptionFontSize}px;
  504.     line-height:120%;
  505.     letter-spacing:1px;
  506.     overflow:auto;
  507. }
  508.  
  509. #tab1::-webkit-scrollbar-thumb {
  510.     background-color:{color:SidebarText};
  511.     height:10px;
  512. }
  513.  
  514. #tab1::-webkit-scrollbar {
  515.     background-color:{color:SidebarBg};
  516.     height:8px;
  517.     width:5px;
  518. }
  519.  
  520. #sbbox {
  521.     position:fixed;
  522.     height: 0;
  523.     width: 502px;
  524.      border-top: 15px solid {color:SidebarBottom};
  525.      border-left: 0px solid transparent;
  526.      border-right: 20px solid transparent;
  527.      padding: 0 8px 0 0;
  528.      margin-top:440px;
  529. }
  530.  
  531. </style>
  532.  
  533. <body>
  534.  
  535. <div id="pagination">
  536.     {block:Pagination}
  537.         {block:PreviousPage}
  538.             <a href="{PreviousPage}"><small></small> previous</a>
  539.         {/block:PreviousPage}
  540.         {block:NextPage}
  541.             <a href="{NextPage}">next <small></small></a>
  542.         {/block:NextPage}
  543.     {/block:Pagination}
  544. </div>
  545.  
  546. <div class="sbpic"><img src="{image:Sidebar}"></div>
  547.  
  548. <ul class="tabs">
  549.             <li><a href="#tab1">{text:Tab 1 Title}</a></li>
  550.             <li><a href="#tab2">{text:Tab 2 Title}</a></li>
  551.             <li><a href="#tab3">{text:Tab 3 Title}</a></li>
  552.         </ul>
  553.         <div id="tab1">
  554.             {block:Description}
  555.                 {Description}
  556.             {/block:Description}
  557.         </div>
  558.         <div id="tab2">
  559.             <ul class="listone">
  560.                 <a href="/"><li>index</li></a>
  561.                 <a href="/archive"><li>archive</li></a>
  562.                 <a href="{text:Link 1 URL}"><li>{text:Link 1}</li></a>
  563.             </ul>
  564.             <ul class="listtwo">
  565.                 <a href="{text:Link 2 URL}"><li>{text:Link 2}</li></a>
  566.                 <a href="{text:Link 3 URL}"><li>{text:Link 3}</li></a>
  567.                 <a href="{text:Link 4 URL}"><li>{text:Link 4}</li></a>
  568.             </ul>
  569.         </div>
  570.         <div id="tab3">
  571.             <iframe frameborder="0" border="0" scrolling="no" width="500" height="190" allowtransparency="true" src="http://www.tumblr.com/ask_form/{text:URL}.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form"></iframe>
  572.         </div>
  573. </div>
  574. <div id="sbbox"></div>
  575.  
  576. <div id="content">
  577. {block:Posts}
  578. {block:ContentSource}
  579. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  580. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  581. {/block:SourceLogo}
  582. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  583. {/block:ContentSource}
  584. <div id="posts">
  585.  
  586. {block:Text}
  587. <div class="textpost">
  588. {block:Title}
  589. <a href="{Permalink}"><h2>{Title}</h2></a>
  590. {/block:Title}
  591.  
  592. {Body}
  593. </div>
  594. {/block:Text}
  595.  
  596.  
  597. {Block:Photo}
  598. {LinkOpenTag}
  599. <img src="{PhotoURL-500}" alt="{PhotoAlt}"/>
  600. {LinkCloseTag}
  601.  
  602. {block:Caption}
  603. <div class="caption">{Caption}</div>
  604. {/block:Caption}
  605. {/Block:Photo}
  606.  
  607. {block:Photoset}
  608. <div class="photopost">
  609. <center><div id="photop">{Photoset-500}</div></center>
  610.  
  611. {block:Caption}
  612. <div class="caption">{Caption}</div>
  613. {/block:Caption}
  614. </div>
  615. {/block:Photoset}
  616.  
  617. {block:Quote}
  618. <div class="quotepost"><center>"{Quote}"</center></div>
  619. {block:Source}<div class="source">—{Source}{/block:Source}</div>{/block:Quote}
  620.  
  621. {block:Link}
  622. <div class="linkpost">
  623. <a href="{URL}" class="link" {Target}><h2>{Name}</h2></a></div>
  624. {block:Description}
  625. <div class="description">{Description}</div>
  626. {/block:Description}
  627. {/block:Link}
  628.  
  629. {block:Chat}
  630.     <ul class="chat">
  631.       <div class="chat">
  632.         <div class="chat1">
  633.             {Block:Lines}
  634.                 <div class="chat2{Alt}">
  635.                 {Block:Label}
  636.                     <span>{Label}</span>
  637.                 {/Block:Label}
  638.             {Line}
  639.                 </div>
  640.             {/Block:Lines}
  641.         </div>
  642.         </div>
  643.     </ul>
  644. {/block:Chat}
  645.  
  646. {block:Answer}<div class="portrait"><img src="{AskerPortraitURL-48}"></div>
  647. <div class="asker">{Asker} asked</div>
  648. <div class="question">{Question}</div>
  649. <div class="answer">{Answer}</div>
  650. {/block:Answer}
  651.  
  652. {block:Video}<div class="videopost">
  653. <center>{Video-500}</center>
  654. {block:Caption}
  655. <div class="caption">{Caption}</div>
  656. {/block:Caption}
  657. </div>
  658. {/block:Video}
  659.  
  660. {block:Audio}<div id="aud">
  661. <div id="player">{AudioPlayerGrey}</div>      
  662. <div id="albumart">{block:AlbumArt}<img src="{AlbumArtURL}" width="100">{/block:AlbumArt}</div>
  663. {PlayCountWithLabel}
  664. {block:Caption}<div class="acaption">{caption}</div>{/block:Caption}
  665. </div>
  666. {/block:Audio}
  667.  
  668. </div>
  669.  
  670. <div class="belowposts">{block:Date}<a href="{Permalink}" target="_blank">{TimeAgo}</a> {/block:Date}{block:NoteCount}  <a href="{Permalink}" target="_blank">• {NoteCountWithLabel}</a>{/block:NoteCount} {block:RebloggedFrom}  <a href="{ReblogParentURL}">• via</a> <a href="{ReblogRootURL}">• ©</a> {/block:RebloggedFrom}
  671. {block:HasTags}<div class="tags">{block:Tags} <a href="{TagURL}" target="_blank">#{Tag}</a>{/block:Tags}</div>{/block:HasTags}</div></div>
  672. <div class="dbox"></div>
  673. {/block:Posts}
  674. {block:PostNotes}{PostNotes}{/block:PostNotes}
  675.  
  676. <div class="credit"><a href="http://thedoctorknows.tumblr.com/"><center>© theme</center></div>
  677.  
  678. </body>
  679.  
  680. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement