Advertisement
voicelessthemes

Theme #8 (Theme Pack 1)

Oct 31st, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 15.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <!---THEME BY VOICELESSTHEMES
  6. DO NOT CLAIM AS YOUR OWN OR STEAL PARTS OF MY CODE
  7. LEAVE CREDIT INTACT--->
  8.  
  9.  
  10. <!---META STUFF-->
  11. <title>{Title}</title>
  12. <link rel="shortcut icon" href="{Favicon}">
  13. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  14. {block:Description}
  15.     <meta name="description" content="{MetaDescription}" />
  16. {/block:Description}
  17. <!---END META STUFF--->
  18.  
  19. <!--THEME OPTIONS-->
  20.  
  21. <!--IF VARIABLES-->
  22. <meta name="if:GradientBG" content="0" />
  23. <meta name="if:FullPageBGImage" content="0" />
  24.  
  25. <!--COLOR VARIABLES-->
  26. <meta name="color:Gradient 1" content="#ffb5c0" />
  27. <meta name="color:Gradient 2" content="#cab5ff" />
  28. <meta name="color:Page BG" content="#ffb5c0" />
  29. <meta name="color:Text" content="#818181" />
  30. <meta name="color:Text Heading" content="#000" />
  31. <meta name="color:Bold Text" content="#818181" />
  32. <meta name="color:Italic Text" content="#818181" />
  33. <meta name="color:Bold Italic Text" content="#818181" />
  34. <meta name="color:Links" content="#fff" />
  35. <meta name="color:Links Hover" content="#ffb5c0" />
  36. <meta name="color:Scrollbar" content="#000" />
  37. <meta name="color:Quote" content="#818181" />
  38. <meta name="color:Ask Text" content="#000" />
  39. <meta name="color:Ask" content="#ccc" />
  40. <meta name="color:Info BG" content="#000" />
  41. <meta name="color:Tags" content="black" />
  42. <meta name="color:Tags Hover" content="pink" />
  43.  
  44. <!--IMAGE VARIABLES-->
  45. <meta name="image:Page BG" content="" />
  46. <meta name="image:Sidebar" content="" />
  47.  
  48. <!--TEXT VARIABLES-->
  49. <meta name="text:Link 1 URL" content="" />
  50. <meta name="text:Link 1 Title" content="" />
  51. <meta name="text:Link 2 URL" content="" />
  52. <meta name="text:Link 2 Title" content="" />
  53. <meta name="text:Link 3 URL" content="" />
  54. <meta name="text:Link 3 Title" content="" />
  55. <meta name="text:Link 4 URL" content="" />
  56. <meta name="text:Link 4 Title" content="" />
  57. <meta name="text:Link 5 URL" content="" />
  58. <meta name="text:Link 5 Title" content="" />
  59.  
  60. <!--END THEME OPTIONS-->
  61.  
  62. <!--FONTAWESOME ICONS-->
  63. <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
  64.  
  65. <!--JQUERY-->
  66. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.js"></script>
  67.  
  68. <!--GOOGLE FONTS-->
  69. <link href="https://fonts.googleapis.com/css?family=Amatic+SC|Poppins" rel="stylesheet">
  70.  
  71. <!--SHYTHEMES VIDEO RESIZER-->
  72. <script src ="//static.tumblr.com/fwgzvyf/Oj1o08f6h/shythemes.vr.js"></script>
  73.  
  74. <!--PIXEL UNION PHOTOSETS-->
  75. <script src="https://static.tumblr.com/qudkd6d/Az6nkemqr/pxuphotoset.min.js"></script>
  76. <link href="https://static.tumblr.com/qudkd6d/OcDnl99gb/style.css" rel="stylesheet" type="text/css"/>
  77.  
  78. <!--LINEAR ICONS-->
  79. <link rel="stylesheet" href="https://cdn.linearicons.com/free/1.0.0/icon-font.min.css">
  80.  
  81. <!--CSS-->
  82. <style>
  83.  
  84. /*---BASIC---*/
  85. body {
  86.     {block:IfGradientBG}
  87.         background: linear-gradient({color:Gradient 1}, {color:Gradient 2});
  88.         background-size: cover;
  89.         background-attachment: fixed;
  90.     {/block:IfGradientBG}
  91.     {block:IfNotGradientBG}
  92.         background-color: {color:Page BG};
  93.         background-image: url({image:Page BG});
  94.         background-attachment: fixed;
  95.         background-position: center;
  96.         {block:IfFullPageBGImage}
  97.         background-size: cover;
  98.         {/block:IfFullPageBGImage}
  99.     {/block:IfNotGradientBG}
  100.     color: {color:Text};
  101.     font-family: 'Poppins', sans-serif;
  102.     font-size: 12px;
  103. }
  104.  
  105. b, strong {
  106.     color: {color:Bold Text};
  107. }
  108.  
  109. i, em {
  110.     color: {color:Italic Text};
  111. }
  112.  
  113. b i, i b, strong i, i strong, em b, b em, em strong, strong em {
  114.     color: {color:Bold Italic Text};
  115. }
  116.  
  117. a {
  118.     color: {color:Links};
  119.     text-decoration: none;
  120.     transition: all 0.6s ease-in-out;
  121.     -moz-transition: all 0.6s ease-in-out;
  122.     -o-transition: all 0.6s ease-in-out;
  123.     -ms-transition: all 0.6s ease-in-out;
  124.     -webkit-transition: all 0.6s ease-in-out;
  125. }
  126.  
  127. a:hover {
  128.     color: {color:Links Hover};
  129.     transition: all 0.6s ease-in-out;
  130.     -moz-transition: all 0.6s ease-in-out;
  131.     -o-transition: all 0.6s ease-in-out;
  132.     -ms-transition: all 0.6s ease-in-out;
  133.     -webkit-transition: all 0.6s ease-in-out;
  134. }
  135.  
  136. h1, h2, h3, h4, h5, h6 {
  137.     font-family: 'Amatic SC', cursive;
  138.     font-weight: 700;
  139. }
  140.  
  141. ::-webkit-scrollbar {
  142.     width:3px;
  143.     height:3px;
  144.     background: transparent;
  145. }
  146.  
  147. ::-webkit-scrollbar-track {
  148.     width: 3px;
  149.     height: 3px;
  150.     background: transparent;
  151. }
  152.  
  153. ::-webkit-scrollbar-thumb {
  154.     background-color: {color:Scrollbar};
  155. }
  156.  
  157. blockquote img {
  158.     max-width: 100%;
  159. }
  160.  
  161. blockquote {
  162.     padding: 0px 0px 0px 8px;
  163.     margin: 0px 0px 0px 4px;
  164.     border-left: solid 1px black;
  165. }
  166.  
  167. blockquote h2 {
  168.     font-size: 20px;
  169. }
  170.  
  171. #topbar {
  172.     line-height: 50px;
  173.     height: 50px;
  174.     padding: 5px;
  175.     position: fixed;
  176.     top: 0px;
  177.     left: 0px;
  178.     right: 0px;
  179.     width: 100%;
  180.     background: black;
  181. }
  182.  
  183. #topbar .avatar {
  184.     height: 50px;
  185.     width: 50px;
  186.     margin-right: 10px;
  187.     float: left;
  188. }
  189.  
  190. #topbar a {
  191.     font-size: 22px;
  192.     font-family: 'Amatic SC', cursive;
  193.     font-weight: 800;
  194.     display: inline-block;
  195.     margin: 0px 15px;
  196. }
  197.  
  198. #topbar a:hover {
  199.     color: white;
  200.     letter-spacing: 10px;
  201. }
  202.  
  203. #sidebar {
  204.     width: 250px;
  205.     position: fixed;
  206.     left: 50px;
  207.     background-color: white;
  208.     border: solid 1px black;
  209.     padding: 10px;
  210.     top: 100px;
  211. }
  212.  
  213. #sidebar h1 {
  214.     text-align: center;
  215.     width: 100%;
  216.     font-size: 28px;
  217.     padding: 10px;
  218.     margin: -10px -10px 10px;
  219.     border-bottom: solid 1px black;
  220. }
  221.  
  222. .sidepic {
  223.     width: 100%;
  224.     height: auto;
  225.     margin-bottom: 10px;
  226.     border: solid 1px black;
  227. }
  228.  
  229. .desc {
  230.     padding: 10px;
  231.     border: dotted 1px black;
  232.     text-align: center;
  233.     max-height: 180px;
  234.     overflow-y: scroll;
  235. }
  236.  
  237. .pagi {
  238.     width: 250px;
  239.     text-align: center;
  240.     padding: 5px 0px;
  241. }
  242.  
  243. .pagi a {
  244.     color: white;
  245.     background-color: {color:Links};
  246.     display: inline-block;
  247.     font-size: 12px;
  248.     padding: 5px;
  249.     margin: 5px;
  250. }
  251.  
  252. .pagi a:hover {
  253.     background-color: {color:Links Hover};
  254. }
  255.  
  256. #content {
  257.     width: 550px;
  258.     margin: 100px auto 0px;
  259.     margin-left: 380px;
  260. }
  261.  
  262. .entry {
  263.     width: 550px;
  264.     margin-top: 0px;
  265.     margin-bottom: 100px;
  266. }
  267.  
  268. .post {
  269.     background: white;
  270.     width: 500px;
  271.     margin: 10px 15px 5px;
  272.     padding: 10px;
  273.     border: solid 1px black;
  274. }
  275.  
  276. .text h2 {
  277.     color: {color:Text Heading};
  278.     font-size: 20px;
  279. }
  280.  
  281. .title {
  282.     font-size: 20px;
  283.     line-height: 30px;
  284.     padding: 0px;
  285.     margin: 0px;
  286. }
  287.  
  288. .text {
  289.     font-size: 13px;
  290.     text-align: justify;
  291. }
  292.  
  293. .text img {
  294.     max-width: 100%;
  295.     height: auto;
  296. }
  297.  
  298. .photo {
  299.     width: 100%;
  300.     height: auto;
  301. }
  302.  
  303. .quo-txt {
  304.     font-size: 18px;
  305.     color: {color:Quote};
  306.     font-family: 'Amatic SC', cursive;
  307.     font-weight: 700;
  308. }
  309.  
  310. .quo-txt .fa {
  311.     color: {color:Quote}!important;
  312. }
  313.  
  314. .quo-src {
  315.     text-align: right;
  316.     margin-top: 10px;
  317. }
  318.  
  319. .cht-line {
  320.     text-align: justify;
  321.     font-size: 15px;
  322.     padding: 5px;
  323. }
  324.  
  325. .audio-cont {
  326.     margin-bottom: -90px;
  327. }
  328.  
  329. .ask-quest {
  330.     width: 100%;
  331.     margin: 0px 0px 10px;
  332. }
  333. .ask-quest .question-content {
  334.     padding: 10px;
  335.     color: {color:Ask Text};
  336.     border-radius: 15px;
  337.     font-size: 14px;
  338.     background-color: {color:Ask};
  339.     text-align: center;
  340. }
  341.  
  342. .ask-quest .triangle {
  343.     height: 0px;
  344.     width: 0px;
  345.     margin-left: 400px;
  346.     border-top: solid 10px {color:Ask};
  347.     border-left: solid 15px transparent;
  348.     border-right: solid 15px transparent;
  349. }
  350.  
  351. .asker {
  352.     text-align: right;
  353. }
  354.  
  355. .asker span {
  356.     margin: 0px 20px 0px auto;
  357.     padding: 0px;
  358.     display: block;
  359.     line-height: 40px;
  360.     font-size: 13px;
  361.     float: right;
  362. }
  363.  
  364. .asker img {
  365.     display: block;
  366.     width: 30px;
  367.     float: right;
  368.     height: 30px;
  369.     border-radius: 50%;
  370.     border: solid 1px {color:Ask};
  371. }
  372.  
  373. .answer {
  374.     border: dotted 1px {color:Ask};
  375.     margin: 60px 10px 10px;
  376.     padding: 10px;
  377. }
  378.  
  379. .answer img {
  380.     width: 100%;
  381.     height: auto;
  382. }
  383.  
  384. .answer .answererpic {
  385.     width: 30px!important;
  386.     height: 30px!important;
  387.     float: left;
  388.     margin-right: 5px;
  389.     border-radius: 50%;
  390.     border: solid 1px {color:Ask};
  391. }
  392.  
  393.  
  394. .post-info {
  395.     margin: 10px -10px -10px;
  396.     background: {color:Info BG};
  397.     padding: 5px 10px;
  398.     color: white;
  399.     border-top: solid 1px black;
  400. }
  401.  
  402. .post-info a {
  403.     color: white;
  404. }
  405.  
  406. .post-info .inf-left {
  407.     margin-left: 0px;
  408.     line-height: 30px;
  409.     display: block;
  410.     width: 250px;
  411.     text-align: left;
  412. }
  413.  
  414. .post-info .inf-right {
  415.     width: 250px;
  416.     margin-left: 50%;
  417.     margin-right: 0px;
  418.     line-height: 30px;
  419.     display: block;
  420.     text-align: right;
  421.     margin-top: -30px;
  422. }
  423.  
  424. .like-b {
  425.   position:relative;
  426.   display:inline-block;
  427.   height:1em;
  428.   line-height:1em;
  429.   overflow:hidden;
  430.   margin-bottom:-1px;
  431. }
  432. .like-b .like_button iframe {
  433.    position:absolute;
  434.    top:0;
  435.    left:0;
  436.    bottom:0;
  437.    right:0;
  438.    z-index:2;
  439.    opacity:0;
  440. }
  441. .like-b .liked + .b {
  442.   color:black;
  443. }
  444.  
  445. .tags {
  446.     width: 500px;
  447.     margin: 5px 25px 10px;
  448.     text-align: center;
  449.     font-family: 'Amatic SC', cursive;
  450. }
  451.  
  452. .tags a {
  453.     font-size: 18px;
  454.     letter-spacing: 1px;
  455.     color: white;
  456.     background-color: {color:Tags};
  457.     padding: 5px;
  458.     margin: 5px;
  459.     display: inline-block;
  460. }
  461.  
  462. .tags a:hover {
  463.     background-color: {color:Tags Hover};
  464. }
  465.  
  466. /*---CREDIT---*/
  467. #th-cred {
  468.     position: fixed;
  469.     bottom: 10px;
  470.     right: 15px;
  471.     color: black;
  472.     font-weight: 600;
  473.     font-size: 36px;
  474.     z-index: 99999999999999;
  475.     display: block;
  476. }
  477.  
  478. #th-cred:hover {
  479.     text-decoration: none;
  480.     color: white;
  481. }
  482.  
  483. </style>
  484. <!--END CSS-->
  485. </head>
  486. <body>
  487.  
  488. <div id="topbar">
  489.     <img class="avatar" src="{PortraitURL-128}" />
  490.     <a href="/">Index</a>
  491.     <a href="/ask">Message</a>
  492.     {block:HasPages}{block:Pages}<a href="{URL}">{Label}</a>{/block:Pages}{/block:HasPages}
  493.     <a href="{text:Link 1 URL}">{text:Link 1 Title}</a>
  494.     <a href="{text:Link 2 URL}">{text:Link 2 Title}</a>
  495.     <a href="{text:Link 3 URL}">{text:Link 3 Title}</a>
  496.     <a href="{text:Link 4 URL}">{text:Link 4 Title}</a>
  497.     <a href="{text:Link 5 URL}">{text:Link 5 Title}</a>
  498. </div>
  499.  
  500. <div id="sidebar">
  501.     <h1>{Title}</h1>
  502.     <img src="{image:Sidebar}" class="sidepic" />
  503.     <div class="desc">
  504.         {Description}
  505.     </div>
  506. {block:Pagination}
  507. <div class="pagi">
  508.     {block:PreviousPage}<a href="{PreviousPage}">Back</a> | {/block:PreviousPage}
  509.     {block:NextPage}<a href="{NextPage}">Next</a>{/block:NextPage}
  510. </div>
  511. {/block:Pagination}
  512. </div>
  513.  
  514.  
  515.  
  516. <!--POSTS-->
  517. <div id="content">
  518.     {block:Posts}
  519.     <div class="entry">
  520.  
  521.     <div class="post">
  522.    
  523.     {block:Text}
  524.         {block:Title}<h4 class="title">{Title}</h4>{/block:Title}
  525.         <article class="text">{Body}</article>
  526.         {block:More}<a href="{Permalink}" align="center">read more</a>{/block:More}
  527.     {/block:Text}
  528.    
  529.     {block:Photo}
  530.         <img src="{PhotoURL-HighRes}" class="photo" alt="{PhotoAlt}" />
  531.         {block:Caption}<article class="text">{Caption}</article>{/block:Caption}
  532.     {/block:Photo}
  533.    
  534.     {block:Photoset}
  535.         <div class="photo-slideshow" id="photoset_{PostID}" data-layout="{PhotosetLayout}">{block:Photos}<div class="photo-data"><div class="pxu-photo"><img src="{PhotoURL-500}" width="{PhotoWidth-500}" height="{PhotoHeight-500}" data-highres="{PhotoURL-HighRes}" data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}"></div><a class="tumblr-box" rel="post-{PostID}" href="{PhotoURL-HighRes}"></a></div>{/block:Photos}</div>
  536.         {block:Caption}<article class="text">{Caption}</article>{/block:Caption}
  537.     {/block:Photoset}
  538.    
  539.     {block:Quote}
  540.         <div class="quo-txt"><i class="fa fa-quote-left" aria-hidden="true"></i>&emsp;{Quote}</div>
  541.         <div class="quo-src">{Source}</div>
  542.     {/block:Quote}
  543.    
  544.     {block:Link}
  545.         <h4 class="title"><a href="{URL}">{Name}</a></h4>
  546.         {block:Description}<article class="text">{Description}</article>{/block:Description}
  547.     {/block:Link}
  548.    
  549.     {block:Chat}
  550.         {block:Title}<h4 class="title">{Title}</h4>{/block:Title}
  551.         {block:Lines}<article class="cht-line">{block:Label}<strong>{Label} </strong>{/block:Label}{Line}</article>{/block:Lines}
  552.     {/block:Chat}
  553.    
  554.     {block:Audio}
  555.         {block:AudioEmbed}{AudioEmbed}{/block:AudioEmbed}
  556.         {block:Caption}<article class="text">{Caption}</article>{/block:Caption}
  557.     {/block:Audio}
  558.    
  559.     {block:Video}
  560.         <div class="video">{Video-500}</div>
  561.         {block:Caption}<article class="text">{Caption}</article>{/block:Caption}
  562.     {/block:Video}
  563.  
  564.     {block:Answer}
  565.         <div class="ask-quest">
  566.             <div class="question-content">{Question}</div><div class="triangle"></div>
  567.         </div>
  568.         <div class="asker"><img src="{AskerPortraitURL-96}" /><span>{Asker}</span></div>
  569.         {block:Answerer}
  570.             <div class="answer"><img class="answererpic" src="{AnswererPortraitURL-96}" /><strong>{Answerer} replied:</strong><br>{Answer}{block:More}<p><a href="{Permalink}" align="center">read more</a></p>{/block:More}</div>
  571.         {/block:Answerer}
  572.         {block:NotReblog}<div class="answer">{Answer}{block:More}<p><a href="{Permalink}" align="center">read more</a></p>{/block:More}</div>{/block:NotReblog}
  573.         {block:RebloggedFrom}<div class="text">{Replies}</div>{/block:RebloggedFrom}
  574.     {/block:Answer}
  575.    
  576.     <div class="post-info">
  577.         <div class="inf-left">
  578.             <a href="{Permalink}" title="posted {TimeAgo}"><span class="lnr lnr-clock"></span></a>
  579.             <a href="{Permalink}#postnotes" title="{NoteCountWithLabel}"><span class="lnr lnr-chart-bars"></span></a>
  580.             <a href="{ReblogParentURL}" title="via: {ReblogParentName}"><span class="lnr lnr-history"></span></a>
  581.             <a href="{SourceURL}" title="source: {ReblogRootName}"><span class="lnr lnr-star"></span></a>
  582.         </div>
  583.         <div class="inf-right">
  584.             <a href="{ReblogURL}" title="reblog"><span class="lnr lnr-redo"></span></a>
  585.             <a class="like-b" title="like" href="#">{LikeButton}<span class="b lnr lnr-heart"></span></a>
  586.         </div>
  587.     </div>
  588.    
  589.     </div>
  590.  
  591.     {block:HasTags}<div class="tags">{block:Tags}<a href="{TagURL}">#{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  592. </div>
  593.     {block:PermalinkPage}
  594.         {block:PostNotes}
  595.         <div class="post" id="postnotes">
  596.             {PostNotes}
  597.         </div>
  598.         {/block:PostNotes}
  599.     {/block:PermalinkPage}
  600.    
  601.     {/block:Posts}
  602. </div>
  603. <!--END POSTS-->
  604.  
  605. <!--SCRIPTS-->
  606.  
  607.  
  608. <!--SHYTHEMES MINIMAL SOUNDCLOUD PLAYER-->
  609. <script>
  610. $(document).ready(function(){
  611.    var color = '#{color:Audio Player}';  
  612.    $('.soundcloud_audio_player').each(function(){
  613.        $(this).attr({ src: $(this).attr('src').split('&')[0] + '&amp;liking=false&amp;sharing=false&amp;auto_play=false&amp;show_comments=false&amp;continuous_play=false&amp;buying=false&amp;show_playcount=false&amp;show_artwork=true&amp;origin=tumblr&amp;color=' + color.split('#')[1], height: 20, width: '100%' });
  614.    });
  615. });
  616. </script>
  617.  
  618. <!--PIXEL UNION PHOTOSETS-->
  619. <script>
  620. $(document).ready(function(){
  621.    $('.photo-slideshow').pxuPhotoset({
  622.        lightbox: true,
  623.        rounded: false,
  624.        gutter: '10px',
  625.        borderRadius: '0px',
  626.        photoset: '.photo-slideshow',
  627.        photoWrap: '.photo-data',
  628.        photo: '.pxu-photo'
  629.    });
  630. });
  631. </script>
  632.  
  633.  
  634. <!--END SCRIPTS-->
  635.  
  636.  
  637.  
  638.  
  639.  
  640. <a href="http://voicelessthemes.tumblr.com" id="th-cred">&#169;</a>
  641.  
  642.  
  643.  
  644. </body>
  645. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement