Advertisement
gigathemes

Theme #13 by GIGATHEMES

Aug 28th, 2016
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 12.02 KB | None | 0 0
  1. <!--
  2.  
  3.  
  4.                      [ T H E M E  # 1 3  B Y  G I G A T H E M E S ]
  5.                            [ GIGATHEMES.TUMBLR.COM ]
  6.  
  7.  
  8. -->
  9.  
  10.  
  11. <!DOCTYPE html>
  12. <html>
  13. <head>
  14.  
  15. <!-- META TAGS ------------------------------------------------------>
  16. <meta name="text:Link 1" content="home" />
  17. <meta name="text:Link 1 URL" content="/" />
  18. <meta name="text:Link 2" content="ask" />
  19. <meta name="text:Link 2 URL" content="/ask" />
  20. <meta name="text:Link 3" content="Link 3" />
  21. <meta name="text:Link 3 URL" content="Link 3 URL" />
  22. <meta name="text:Link 4" content="Link 4" />
  23. <meta name="text:Link 4 URL" content="Link 4 URL" />
  24. <meta name="text:Link 5" content="Link 5" />
  25. <meta name="text:Link 5 URL" content="Link 5 URL" />
  26. <meta name="color:Text Color" content="#444" />
  27. <meta name="color:Links" content="#da2e2e" />
  28. <meta name="color:Links Hover" content="#9f2424" />
  29. <meta name="color:Scrollbar" content="#444" />
  30. <meta name="image:Header Background" content="http://66.media.tumblr.com/03170687b0ed735e2757c27cc4aeb5ab/tumblr_ocmco6n8eO1veufrlo1_1280.jpg" />
  31. <meta name="image:Navigation Floater Image" content="https://boost-rankedboost.netdna-ssl.com/wp-content/uploads/2016/07/PokeBall.png" />
  32. <meta name="image:Icon Image" content="{Favicon}" />
  33. <meta name="" content="" />
  34.  
  35. <title>{Title}{block:PostSummary}, {PostSummary}{/block:PostSummary}</title>
  36. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  37. <link rel="shortcut icon" href="{Favicon}" />
  38.  
  39. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
  40.  
  41. <script>
  42. function sticky_relocate() {
  43.     var window_top = $(window).scrollTop();
  44.     var div_top = $('#sticky-anchor').offset().top;
  45.     if (window_top > div_top)
  46.         $('#sidebar').addClass('sticky');
  47.     else
  48.         $('#sidebar').removeClass('sticky');
  49. }
  50.  
  51. $(function() {
  52.     $(window).scroll(sticky_relocate);
  53.     sticky_relocate();
  54. });
  55. </script>
  56.  
  57. <script>
  58.     function send() {
  59.         document.theform.submit()
  60.     }
  61. </script>
  62.  
  63. <!-- CSS ----------------------------------------------------------->
  64. <style type="text/css">
  65.  
  66. body {
  67.     margin:0px;
  68.     padding:0px;
  69.     color: #444;
  70.     font-family: Tahoma, sans-serif;
  71.     overflow-x: hidden;
  72. }
  73.  
  74. /** HEADER CSS **************************************************/
  75.  
  76. #header {
  77.     position: relative;
  78.     width: 100vw;
  79.     height: 40vh;
  80.     background-image: url('{image:Header Background}');
  81.     background-color: red;
  82.     background-size: cover;
  83. }
  84.  
  85. #navbar {
  86.     position: absolute;
  87.     bottom: 0;
  88.     width: 100vw;
  89.     height: 50px;
  90.     font-family: Calibri, sans-serif;
  91.     font-size: 14px;
  92.     font-weight: bold;
  93.     text-transform: uppercase;
  94.     color: #fff;
  95.     background-color: #000;
  96. }
  97.  
  98. #pokeball {
  99.     position: absolute;
  100.     left: 0;
  101.     right: 0;
  102.     margin: auto;
  103.     bottom: -75px;
  104.     height: 150px;
  105.     width: 150px;
  106.     border-radius: 50%;
  107.     border: 30px solid black;
  108.     background-color: #fff;
  109. }
  110.  
  111. #pokeball #iconpic {
  112.     position: absolute;
  113.     height: 120px;
  114.     width: 120px;
  115.     top: 0;
  116.     bottom: 0;
  117.     right: 0;
  118.     left: 0;
  119.     margin: auto;
  120.     border: 1px solid #fff;
  121.     border-radius: 50%;
  122.     background-image: url('{image:Icon Image}');
  123.     background-size: cover;
  124.     transition: all 0.5s ease-in-out;
  125.     -webkit-transition: all 0.5s ease-in-out;
  126.     -moz-transition: all 0.5s ease-in-out;
  127.     -o-transition: all 0.5s ease-in-out;
  128. }
  129.  
  130. #pokeball:hover #iconpic {
  131.     opacity: 0.5;
  132.     transition: all 0.5s ease-in-out;
  133.     -webkit-transition: all 0.5s ease-in-out;
  134.     -moz-transition: all 0.5s ease-in-out;
  135.     -o-transition: all 0.5s ease-in-out;
  136. }
  137.  
  138. #pokeball p {
  139.     font-size: 15px;
  140.     font-weight: bold;
  141.     margin-top: 68px;
  142.     text-align: center;
  143.     display: none;
  144.     text-transform: uppercase;
  145.     transition: all 0.5s ease-in-out;
  146.     -webkit-transition: all 0.5s ease-in-out;
  147.     -moz-transition: all 0.5s ease-in-out;
  148.     -o-transition: all 0.5s ease-in-out;
  149. }
  150.  
  151. #pokeball:hover p {
  152.     display: block;
  153.     transition: all 0.5s ease-in-out;
  154.     -webkit-transition: all 0.5s ease-in-out;
  155.     -moz-transition: all 0.5s ease-in-out;
  156.     -o-transition: all 0.5s ease-in-out;
  157. }
  158.  
  159. /** SIDEBAR CSS **************************************************/
  160.  
  161. #sidebar {
  162.     font-size: 11px;
  163.     float: left;
  164.     color: {color:Text Color};
  165. }
  166.  
  167. .sticky {
  168.      position: fixed;
  169.      top: 0;
  170. }
  171.  
  172. #sidebar img {
  173.     width: 100px;
  174.     height: 100px;
  175. }
  176.  
  177. #pagination {
  178.     width: 100px;
  179.     text-align: center;
  180.     font-weight: bold;
  181.     font-size: 14px;
  182.     margin-bottom: 20px;
  183. }
  184.  
  185. #sidebar ul {
  186.     list-style: none;
  187.     padding-left: 0;
  188. }
  189.  
  190. #sidebar li {
  191.     margin: 5px 0 5px 0;
  192. }
  193.  
  194. #sidebar a {
  195.     color: {color:Links};
  196.     text-decoration: none;
  197.     font-weight: bold;
  198. }
  199.  
  200. #sidebar a:hover {
  201.     color: {color:Links Hover};
  202.     text-decoration: none;
  203.     font-weight: bold;
  204. }
  205.  
  206.  
  207. #sidebarcontent {
  208.     margin-left: 20px;
  209.     opacity: 0;
  210.     transition: all 0.5s ease-in-out;
  211.     -webkit-transition: all 0.5s ease-in-out;
  212.     -moz-transition: all 0.5s ease-in-out;
  213.     -o-transition: all 0.5s ease-in-out;
  214. }
  215.  
  216. #sidebar:hover #sidebarcontent {
  217.     opacity: 1;
  218.     transition: all 0.5s ease-in-out;
  219.     -webkit-transition: all 0.5s ease-in-out;
  220.     -moz-transition: all 0.5s ease-in-out;
  221.     -o-transition: all 0.5s ease-in-out;
  222. }
  223.  
  224. #searchform {
  225.     margin-top: 20px;
  226.     margin-bottom: 20px;
  227. }
  228.  
  229. #textfield {
  230.     background: rgba(100,100,100,0.1);
  231.     border: 0;
  232.     width: 100px;
  233.     font-size: 11px;
  234.     line-height: 18px;
  235.     color: {color:Header Text};
  236. }
  237.  
  238. #searchbtn {
  239.     font-size: 11px;
  240.     line-height: 18px;
  241.     border: 0;
  242.     background: rgba(100,100,100,0.2);
  243.     color: {color:Header Text};
  244. }
  245.  
  246. /** POSTS CSS ****************************************************/
  247.  
  248. #content {
  249.     width: 560px;
  250.     margin-left: auto;
  251.     margin-right: auto;
  252.     margin-top: 120px;
  253.     margin-bottom: 60px;
  254. }
  255.  
  256. #content a {
  257.     color: {color:Links};
  258.     text-decoration: none;
  259.     font-weight: bold;
  260. }
  261.  
  262. #content a:hover {
  263.     color: {color:Links Hover};
  264. }
  265.  
  266. #content #posts {
  267.     position: relative;
  268.     width: 541px;
  269.     margin: 0 auto 50px;
  270.     padding: 10px;
  271. }
  272.  
  273. #content #posts .title {
  274.     font-size: 13px;
  275. }
  276.  
  277. #content #posts .text {
  278.     font-size: 11px;
  279. }
  280.  
  281. #posts img {
  282.     max-width: 540px;
  283.     padding: 0px 0px 0px 1px;
  284. }
  285.  
  286. #content #posts #info {
  287.     margin-top: 5px;
  288.     font-size: 9px;
  289.     text-align: right;
  290.     opacity: 0;
  291.     transition: all 0.5s ease-in-out;
  292.     -webkit-transition: all 0.5s ease-in-out;
  293.     -moz-transition: all 0.5s ease-in-out;
  294.     -o-transition: all 0.5s ease-in-out;
  295. }
  296.  
  297. #content #posts:hover #info {
  298.     opacity: 1;
  299. }
  300.  
  301. #permatable {
  302.     text-align: right;
  303.     width: 100%;
  304. }
  305.  
  306. #reblogbtn {
  307.     width: 9px;
  308. }
  309.  
  310. #likebtn {
  311.     width: 9px;
  312.     height: 9px;
  313.     cursor: pointer;
  314. }
  315.  
  316. #content #posts #permalink {
  317.     margin-top: 2px;
  318. }
  319.  
  320. #content #posts #source {
  321.     margin-top: -7px;
  322. }
  323.  
  324. #content #posts #tags {
  325.     margin-top: 5px;
  326. }
  327.  
  328. ol.notes li {
  329.     list-style-type: none;
  330.     margin: 0;
  331.     padding: 0;
  332.     font-size: 10px;
  333. }
  334.  
  335. /** SCROLLBAR ****************************************************/
  336.  
  337. ::-webkit-scrollbar-thumb:vertical {
  338.     background-color: {color:Scrollbar};
  339.     height: 30px;
  340. }
  341.  
  342. ::-webkit-scrollbar-thumb:horizontal {
  343.     background-color: {color:Scrollbar};
  344.     width: 30px;
  345. }
  346.    
  347. ::-webkit-scrollbar {
  348.     background-color: #fff;
  349.     height: 7px;
  350.     width: 7px;
  351. }
  352.  
  353.  
  354. /** BOTTOM IMAGE CSS ***********************************************/
  355.  
  356. #credit {
  357.     position: fixed;
  358.     right: 2px;
  359.     bottom: 0px;
  360. }
  361.  
  362. #creditlogo {
  363.     width: 20px;
  364. }
  365.  
  366. {CustomCSS}</style>
  367.  
  368. </head>
  369.  
  370. <!-- BODY ---------------------------------------------------------->
  371. <body>
  372.  
  373. <!-- HEADER -------------------------------------------------------->
  374. <div id="header">
  375.     <div id="navbar"></div>
  376.     <div id="pokeball">
  377.         <a href="/"><div id="iconpic"></div></a>
  378.         <p>{Title}</p>
  379.     </div>
  380.    
  381. </div> <!-- !HEADER -->
  382.  
  383. <!-- SIDEBAR  ----------------------------------------------------->
  384. <div id="sticky-anchor"></div>
  385. <div id="sidebar">
  386.     <img src="{image:Navigation Floater Image}" />
  387.     <div id="pagination">
  388.         {block:PreviousPage}<a href="{PreviousPage}"></a>{/block:PreviousPage}
  389.         {block:NextPage}<a href="{NextPage}"></a>{/block:NextPage}
  390.     </div>
  391.     <div id="sidebarcontent">
  392.         {Description}
  393.         <form action="/search" method="get" id="searchform" name="theform">
  394.             <input type="text" name="q" value="" id="textfield"/>
  395.             <input type="submit" value="Search" id="searchbtn"/>
  396.         </form>
  397.         <ul>
  398.             <li><a href="{text:Link 1 URL}">{text:Link 1}</a></li>
  399.             <li><a href="{text:Link 2 URL}">{text:Link 2}</a></li>
  400.             <li><a href="{text:Link 3 URL}">{text:Link 3}</a></li>
  401.             <li><a href="{text:Link 4 URL}">{text:Link 4}</a></li>
  402.             <li><a href="{text:Link 5 URL}">{text:Link 5}</a></li>
  403.         </ul>
  404.        
  405.     </div>
  406. </div>
  407.    
  408. <!-- POSTS --------------------------------------------------------->
  409.  
  410. <div id="content">
  411. {block:Posts}
  412.  
  413. {block:ContentSource}
  414. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
  415. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  416. {/block:ContentSource}{block:ReblogParent}{/block:ReblogParent}
  417.  
  418. <div id="posts">
  419.  
  420. {block:Photo}
  421. {LinkOpenTag}<img src="{PhotoURL-500}" />{LinkCloseTag}
  422. {block:Caption}<div class="text">{Caption}</div>{/block:Caption}
  423. {/block:Photo}
  424.  
  425. {block:Photoset}
  426. {Photoset-500}
  427. {block:Caption}<div class="text">{Caption}</div>{/block:Caption}
  428. {/block:Photoset}
  429.  
  430. {block:Video}
  431. {Video-500}
  432. {block:Caption}<div class="text">{Caption}</div>{/block:Caption}
  433. {/block:Video}
  434.  
  435. {block:Audio}
  436. {AudioPlayerBlack}
  437. <div class="text">~ {PlayCountWithLabel}</div>
  438. {block:Caption}<div class="text">{Caption}</div>{/block:Caption}
  439. {/block:Audio}
  440.  
  441. {block:Quote}
  442. <div class="title">“{Quote}”</div>
  443. {block:Source}<div class="text"><br>~ {Source}</div>{/block:Source}
  444. {/block:Quote}
  445.  
  446. {block:Text}
  447. {block:Title}<div class="title">{Title}</div>{/block:Title}
  448. <div class="text">{Body}</div>
  449. {/block:Text}
  450.  
  451. {block:Answer}
  452. <div class="title">{Question}</div>
  453. <div class="text">~ {Asker}</div>
  454. <div class="text">{Answer}</div>
  455. {/block:Answer}
  456.  
  457. {block:Chat}
  458. {block:Title}<div class="title">{Title}</div>{/block:Title}
  459. <div class="text">
  460. {block:Lines}
  461. {block:Label}<strong>{Label}</strong>{/block:Label} {Line}<br />
  462. {/block:Lines}
  463. </div>
  464. {/block:Chat}
  465.  
  466. {block:Link}
  467. <div class="title"><a href="{URL}">{Name}</a></div>
  468. {block:Description}
  469. <div class="text">{Description}</div>
  470. {/block:Description}
  471. {/block:Link}
  472.  
  473.  
  474. <div id="info">
  475.  
  476. <div id="permalink">
  477. <table id="permatable">
  478.     <tr>
  479.     <td>
  480.     <a href="{Permalink}">{block:Date}{Month} {DayOfMonthWithZero} at {12Hour}:{Minutes} {AmPm}{/block:Date}{block:NoteCount} - {NoteCountWithLabel}{/block:NoteCount}</a>
  481.     </td>
  482.     <td id="reblogbtn">{ReblogButton size="13"}</td>
  483.     <td id="likebtn">{LikeButton size="14"}</td>
  484.     </tr>
  485. </a>
  486. </table>
  487. </div>
  488.  
  489. <div id="source">{block:RebloggedFrom}<br>via:<a href="{ReblogParentURL}"
  490. title="{ReblogParentTitle}">{ReblogParentName}</a> source:<a href="{ReblogRootURL}"title="{ReblogRoottitle}">{ReblogRootName}</a>{/block:RebloggedFrom}</div>
  491.  
  492. {block:HasTags}<div id="tags">
  493. {block:Tags}
  494. <a href="{TagURL}">#{Tag} </a>
  495. {/block:Tags}
  496. </div>
  497. {/block:HasTags}
  498.  
  499. </div> <!-- !info -->
  500.  
  501. </div> <!-- !posts -->
  502.  
  503. {/block:Posts}
  504.  
  505. {block:PostNotes}
  506. <div id="allnotes">{PostNotes}</div>
  507. {/block:PostNotes}
  508.  
  509. </div> <!-- !content -->
  510.  
  511. <div id="credit">
  512. <a href="http://gigatheme13.tumblr.com">
  513.     <img src="http://68.media.tumblr.com/8bfd1d5d5bde1794102425cf0f13eea9/tumblr_nk3b78X9lq1sy4yqbo1_75sq.png" id="creditlogo">
  514. </a>
  515. </div>
  516.  
  517.     </body>
  518. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement