Advertisement
userbru

theme four.

Mar 24th, 2021 (edited)
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.22 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head><title>{Title}</title>
  3. <link rel="shortcut icon" href="{Favicon}">
  4. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  5. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  6.  
  7.  
  8. <!-----------base code by mrsthemes / theme by bru ------------>
  9.  
  10.  
  11. <!--------default variables-------->
  12. <meta name="color:background" content="#ffffff"/>
  13. <meta name="color:text" content="#333333"/>
  14. <meta name="color:links" content="#5b5b5b"/>
  15. <meta name="color:links hover" content="#c9c9c9"/>
  16. <meta name="color:scrollbar bg" content="#ffffff"/>
  17. <meta name="color:scrollbar" content="#eeeeee">
  18.  
  19. <meta name="image:sidebar image" content=""/>
  20. <meta name="image:background image" content=""/>
  21.  
  22. <meta name="text:link 1 title" content="link">
  23. <meta name="text:link 1 url" content=" ">
  24. <meta name="text:link 2 title" content="link">
  25. <meta name="text:link 2 url" content=" ">
  26. <meta name="text:link 3 title" content="link">
  27. <meta name="text:link 3 url" content=" ">
  28. <meta name="text:link 4 title" content="link">
  29. <meta name="text:link 4 url" content=" "}
  30.  
  31. <meta name="if:show link 1" content="1" />
  32. <meta name="if:show link 2" content="1" />
  33. <meta name="if:show link 3" content="1" />
  34. <meta name="if:show link 4" content="1" />
  35. <meta name="if:show sidebar image" content="1" />
  36.  
  37. <!------------------------TOOLTIPS SCRIPT--------------------->
  38.  
  39. <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
  40.  
  41. <link href="https://fonts.googleapis.com/css?family=ABeeZee&display=swap" rel="stylesheet">
  42. <link href="https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap" rel="stylesheet">
  43. <link href="https://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  44. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  45. <script>
  46. (function($){
  47. $(document).ready(function(){
  48. $("a[title]").style_my_tooltips({
  49. tip_follows_cursor:true,
  50. tip_delay_time:30,
  51. tip_fade_speed:300,
  52. attribute:"title"
  53. });
  54. });
  55. })(jQuery);
  56. </script>
  57.  
  58. <script type="text/javascript">
  59. /* by oddhour.tumblr.com */
  60. var updatePhotosetCss = "<style>.photoset .photoset_row { margin-top: 4px; } .photoset .photoset_row .photoset_photo { margin-left: 4px;} </style>";
  61. $(window).on('load', function() {
  62. $(".photoset").each( function (i, e) {
  63. $(this.contentDocument).find("head").append(updatePhotosetCss);
  64. });
  65. });
  66. </script>
  67.  
  68. <!-------------------------------------------------------------------->
  69.  
  70. <style type="text/css">
  71.  
  72. /*----------tooltips---------*/
  73.  
  74. /*GENERAL: TUMBLR CONTROLS */
  75.  
  76. iframe.tmblr-iframe {
  77. z-index:99999999999999!important;
  78. top:0!important;
  79. right:0!important;
  80. opacity:0.4;
  81. filter:invert(1);
  82. -webkit-filter:invert(1);
  83. -o-filter:invert(1);
  84. -moz-filter:invert(1);
  85. -ms-filter:invert(1);
  86. transform:scale(0.6);
  87. transform-origin:100% 0;
  88. -webkit-transform:scale(0.6);
  89. -webkit-transform-origin:100% 0;
  90. -o-transform:scale(0.6);
  91. -o-transform-origin:100% 0;
  92. -moz-transform:scale(0.6);
  93. -moz-transform-origin:100% 0;
  94. -ms-transform:scale(0.6);
  95. -ms-transform-origin:100% 0;
  96. -moz-transition-duration:0.4s;
  97. -webkit-transition-duration:0.4s;
  98. -o-transition-duration:0.4s;
  99. }
  100.  
  101. iframe.tmblr-iframe:hover {
  102. opacity:0.6!important;
  103. -moz-transition-duration:0.4s;
  104. -webkit-transition-duration:0.4s;
  105. -o-transition-duration:0.4s;
  106. }
  107.  
  108. /*END OF GENERAL: TUMBLR CONTROLS */
  109.  
  110. /*----------scrollbar---------*/
  111.  
  112. ::-webkit-scrollbar {
  113. background-color: {color:scrollbar bg};
  114. height:8px;
  115. width:5px
  116. }
  117.  
  118. ::-webkit-scrollbar-thumb:vertical {
  119. background-color:{color:scrollbar};
  120. height:50px
  121. }
  122.  
  123. ::-webkit-scrollbar-thumb:horizontal {
  124. background-color:{color:scrollbar bg};
  125. height:8px!important
  126. }
  127.  
  128.  
  129. /*----------basics---------*/
  130.  
  131. body {
  132. background:{color:background} url({image:background image}) repeat right top fixed;
  133. color:{color:text};
  134. font-family:ABeeZee, arial, sans-serif;
  135. line-height:15px;
  136. font-size:11px;
  137. margin:0;
  138. text-align:left;
  139. }
  140.  
  141. blockquote {
  142. padding-left:10px;
  143. border-left:1px solid;
  144. border-color:#eeeeee;
  145. margin:10px;
  146. }
  147.  
  148. a {
  149. color:{color:links};
  150. text-decoration:none;
  151. }
  152.  
  153. a:hover {
  154. text-decoration:none;
  155. color: {color:links hover};
  156. -webkit-transition:all 0.5s;
  157. -moz-transition:all 0.5s;
  158. -ms-transition:all 0.5s;
  159. -o-transition:all 0.5s;
  160. transition:all 0.5s;
  161. }
  162.  
  163. img {
  164. opacity:1;
  165. text-decoration:none;
  166. }
  167.  
  168. h1 {
  169. font-size:11px;
  170. font-weight:bold;
  171. }
  172.  
  173.  
  174. /*----------posts---------*/
  175.  
  176. .container {
  177. left:50%;
  178. width:800px;
  179. position:absolute;
  180. }
  181.  
  182. .posts {
  183. {block:IndexPage}
  184. margin-bottom:80px;
  185. {/block:IndexPage}
  186. {block:PermalinkPage}
  187. margin-bottom:40px;
  188. {/block:PermalinkPage}
  189. width:540px;
  190. }
  191.  
  192. .entries {
  193. margin-left:-200px;
  194. width:540px;
  195. margin-top:50px;
  196. margin-bottom:50px;
  197. }
  198.  
  199. .posts img, .posts li, .posts blockquote {
  200. max-width: 100%;
  201. }
  202.  
  203. .posts li {
  204. list-style: square;
  205. }
  206.  
  207. blockquote img {
  208. max-width:320px!important;
  209. }
  210.  
  211.  
  212. /*----------post info---------*/
  213.  
  214. .info {
  215. border-top:1px solid #eeeeee;
  216. padding-top:15px;
  217. text-transform:lowercase;
  218. font-size:11px;
  219. letter-spacing:1px;
  220. margin-top:15px;
  221. }
  222.  
  223. .tags {
  224. margin-top:5px;
  225. font-size:11px;
  226. letter-spacing:0px;
  227. font-style:normal;
  228. }
  229.  
  230. .tags a {
  231. margin-right:8px;
  232. }
  233. .tags a:after { content:","; } .tags a:last-child:after { content:"."; }
  234. }
  235.  
  236.  
  237. /*----------post notes---------*/
  238.  
  239. ol.notes {
  240. padding:0px;
  241. margin:25px 0px 0px -10px;
  242. list-style-type:none;
  243. }
  244.  
  245. ol.notes li.note {
  246. padding:10px;
  247. }
  248.  
  249. ol.notes li.note img.avatar {
  250. vertical-align:-4px;
  251. margin-right:10px;
  252. width:16px;
  253. height:16px;
  254. }
  255.  
  256. ol.notes li.note span.action {
  257. font-weight:none;
  258. }
  259.  
  260. ol.notes li.note .answer_content {
  261. font-weight:normal;
  262. }
  263.  
  264. ol.notes li.note blockquote {
  265. padding:4px 10px;
  266. margin:10px 0px 0px 25px;
  267. }
  268.  
  269. ol.notes li.note blockquote a {
  270. text-decoration:none;
  271. }
  272.  
  273. /*----------sidebar---------*/
  274.  
  275. .sidebar {
  276. position:fixed;
  277. width:250px;
  278. margin-left:-550px;
  279. top:250px;
  280. }
  281.  
  282. .sidebarimage {
  283. width:250px;
  284. }
  285.  
  286. .sidebarimage img {
  287. width:250px;
  288. margin-bottom:10px;
  289. }
  290.  
  291. .sidetitle {
  292. margin-top:5px;
  293. font-size:16px;
  294. text-transform:uppercase;
  295. font-weight:bold;
  296. letter-spacing:2px;
  297. width:250px;
  298. text-align:center;
  299. }
  300.  
  301. .description {
  302. width:250px;
  303. text-align:center;
  304. margin-top:10px;
  305. font-size:12px;
  306. }
  307.  
  308. .links {
  309. width:250px;
  310. text-align:center;
  311. font-size:13px;
  312. letter-spacing:2px;
  313. text-transform:uppercase;
  314. font-weight:bold;
  315. margin-top:-60px;
  316. word-spacing:15px;
  317. margin-left:890px;
  318. color:{color:links};
  319. font-family: 'ABeeZee', sans-serif;
  320.  
  321. }
  322.  
  323. .links a {
  324. padding:5px;
  325. }
  326.  
  327. .pagination {
  328. margin:-100px 0;
  329. text-transform:lowercase;
  330. font-weight:italic;
  331. text-align:center;
  332.  
  333. }
  334.  
  335.  
  336.  
  337. /*----------quotes---------*/
  338.  
  339. .quote {
  340. text-transform:uppercase;
  341. font-size:12px;
  342. font-weight:bold;
  343. text-align:center;
  344. }
  345.  
  346. .quotesource {
  347. text-align:center;
  348. margin-top:10px;
  349. }
  350.  
  351.  
  352. /*----------chat---------*/
  353.  
  354. .chat {
  355. line-height:20px;
  356. list-style:none;
  357. }
  358.  
  359. .line.odd {
  360. background:#fafafa;
  361. margin-bottom:2px;
  362. padding:5px;
  363. list-style:none;
  364. font-size:11px;
  365. }
  366.  
  367. .line.even {
  368. background:#ffffff;
  369. margin-bottom:2px;
  370. padding:5px;
  371. list-style:none;
  372. font-size:11px;
  373. }
  374.  
  375. .label {
  376. padding-right:1px;
  377. text-transform:uppercase;
  378. font-weight:bold;
  379. color:{color:links};
  380. }
  381.  
  382.  
  383. /*----------questions---------*/
  384.  
  385. .question {
  386. background:#fafafa;
  387. padding:10px;
  388. }
  389.  
  390. .asker {
  391. text-transform:normal;
  392. }
  393.  
  394. .answer {
  395. padding:10px;
  396. margin-top:-15px;
  397. }
  398.  
  399. /*----------audio---------*/
  400.  
  401. .playerbutton {
  402. position:relative;
  403. width:30px;
  404. height:35px;
  405. overflow:hidden;
  406. }
  407.  
  408. .playerbuttonhug {
  409. position: absolute;
  410. top:-7px;
  411. left:2px;
  412. }
  413.  
  414. .tumblr_audio_player {
  415. height:50px;
  416. width:540px;
  417. }
  418.  
  419. .playerbuttonbg {
  420. position:absolute;
  421. width:35px;
  422. height:35px;
  423. background-color:#e4e4e4;
  424. padding:10px;
  425. }
  426.  
  427. .trackdetails {
  428. width:auto;
  429. display:inline-block;
  430. margin-left:70px;
  431. font-size:11px;
  432. letter-spacing:1px;
  433. text-transform:lowercase;
  434. padding:5px;
  435. line-height:15px;
  436. }
  437.  
  438. .audiowrapper {
  439. position:relative;
  440. display:inline-block;
  441. }
  442.  
  443. /*----------credit---------*/
  444.  
  445. .credit {
  446. font-size:11px;
  447. position:fixed;
  448. font-weight:bold;
  449. bottom:5px;
  450. right:15px;
  451. z-index:10;
  452. text-align:right;
  453. letter-spacing:1px;
  454. padding:2px;
  455. }
  456.  
  457. .credit a {
  458. color:{color:links};
  459. text-decoration:none;
  460. }
  461.  
  462. .credit a:hover {
  463. color:{color:links hover};
  464. text-decoration:none;
  465. }
  466.  
  467.  
  468. </style>
  469. </head>
  470.  
  471. <body>
  472. <div class="container">
  473.  
  474. <div id="credit">
  475. <div class="credit"><a href="https://geminicodes.tumblr.com/">©️</a>
  476. <br> <script language="JavaScript">var fhs = document.createElement('script');var fhs_id = "5630475";
  477. var ref = (''+document.referrer+'');var pn = window.location;var w_h = window.screen.width + " x " + window.screen.height;
  478. fhs.src = "//freehostedscripts.net/ocounter.php?site="+fhs_id+"&e1=&e2=&r="+ref+"&wh="+w_h+"&a=1&pn="+pn+"";
  479. document.head.appendChild(fhs);document.write("<span id='o_"+fhs_id+"'></span>");
  480. </script> / <script language="JavaScript">var fhsh = document.createElement('script');var fhs_id_h = "3345103";
  481. fhsh.src = "//freehostedscripts.net/ocount.php?site="+fhs_id_h+"&name=&a=1";
  482. document.head.appendChild(fhsh);document.write("<span id='h_"+fhs_id_h+"'></span>");
  483. </script></div>
  484.  
  485. <div class="sidebar">
  486.  
  487. {block:IfShowSidebarImage}
  488. <div class="sidebarimage">
  489. <a href="/"><img src="{image:sidebar image}">
  490. </a></div>
  491. {/block:IfShowSidebarImage}
  492.  
  493.  
  494. <div class="sidetitle">{Title}</div>
  495.  
  496.  
  497. <div class="description">{Description}</div>
  498.  
  499.  
  500. <div class="links">
  501. <a href="/">home</a><br><br>
  502. <a href="/ask">inbox</a>
  503. {block:IfShowLink1}
  504. <a href="{text:link 1 url}">{text:link 1 title}</a>
  505. {/block:IfShowLink1}<br><br>
  506. {block:IfShowLink2}
  507. <a href="{text:link 2 url}">{text:link 2 title}</a>
  508. {/block:IfShowLink2}<br><br>
  509. {block:IfShowLink3}
  510. <a href="{text:link 3 url}">{text:link 3 title}</a>
  511. {/block:IfShowLink3}<br><br>
  512. {block:IfShowLink4}
  513. <a href="{text:link 4 url}">{text:link 4 title}</a>
  514. {/block:IfShowLink4}
  515. </div>
  516.  
  517.  
  518. <div class="pagination">
  519. {block:Pagination}
  520. {block:PreviousPage}
  521. <a href="{PreviousPage}">back</a>{/block:PreviousPage}&nbsp;
  522.  
  523. {block:NextPage}
  524. <a href="{NextPage}">forth</a>
  525. {/block:NextPage}
  526. {/block:Pagination}
  527. </div>
  528.  
  529. </div>
  530.  
  531.  
  532. <div class="entries">
  533. {block:Posts}
  534. <div class="posts">
  535.  
  536. {block:Text}
  537. <h1>{block:Title}{Title}{/block:Title}</h1>
  538. {Body}{/block:Text}
  539.  
  540.  
  541. {block:Photo}
  542. {LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}
  543. {block:Caption}{Caption}{/block:Caption}
  544. {/block:Photo}
  545.  
  546.  
  547. {block:Photoset}
  548. {Photoset}
  549. {block:Caption}{Caption}{/block:Caption}
  550. {/block:Photoset}
  551.  
  552.  
  553. {block:Quote}
  554. <div class="quote">"{Quote}"</div>
  555. {block:Source}<div class="quotesource"> — {Source}</div>
  556. {/block:Source}{/block:Quote}
  557.  
  558.  
  559. {block:Link}
  560. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  561. {block:Description}{Description}{/block:Description}
  562. {/block:Link}
  563.  
  564.  
  565. {block:Chat}
  566. {block:Title}<h1>{Title}</h1>{/block:Title} <div class="chat"> {block:Lines} <li class="line {Alt}"> {block:Label} <span class="label"> {Label}</span> {/block:Label}{Line}</li> {/block:Lines}</div>
  567. {/block:Chat}
  568.  
  569.  
  570. {block:Audio}
  571. {block:AudioPlayer}
  572. <div class="audiowrapper">
  573. <div class="playerbuttonbg">
  574. <div class="playerbutton">
  575. <div class="playerbuttonhug">
  576. {AudioPlayerGrey}
  577. </div></div></div>
  578.  
  579. <div class="trackdetails">
  580. {block:TrackName}<b>TRACK:</b> {TrackName}{/block:TrackName}<br>
  581.  
  582. {block:Artist}<b>ARTIST:</b> {Artist}{/block:Artist}<br>
  583.  
  584. <b>PLAYS:</b> {FormattedPlayCount}</div></div>
  585. {/block:AudioPlayer}
  586.  
  587. {block:Caption}
  588. <div class="caption">{Caption}</div>
  589. {/block:Caption}
  590. {/block:Audio}
  591.  
  592.  
  593. {block:Video}
  594. {Video-500}
  595. {block:Caption}{Caption}{/block:Caption}
  596. {/block:Video}
  597.  
  598.  
  599. {block:Answer}
  600. <div class="question">
  601. <div class="asker">✉ <b>{Asker} said:</b></div>
  602. {Question}</div><br>
  603. <div class="answer">{Answer}</div>
  604. {/block:Answer}
  605.  
  606.  
  607. <div class="info">
  608. {block:Date}
  609. <b><a href="/day/{Year}/{MonthNumberWithZero}/{DayOfMonth}">{DayOfMonthWithZero} {ShortMonth}, {Year}</b></a>
  610. {/block:Date}
  611.  
  612. &nbsp;&nbsp;
  613. <a href="{Permalink}">{NoteCountWithLabel}</a>
  614. &nbsp;&nbsp;
  615.  
  616. {block:RebloggedFrom}
  617. <a href="{ReblogParentURL}" title="{ReblogParenttitle}">via </a>
  618. {block:ContentSource}
  619. <a href="{ReblogRootURL}" "{ReblogRootName}" title="{ReblogRoottitle}">♡ src</a>
  620. {/block:ContentSource}
  621. {/block:RebloggedFrom}
  622.  
  623. <a href="{ReblogURL}" target="_blank" class="details">↻ reblog</a>
  624. </div>
  625.  
  626.  
  627. {block:HasTags}
  628. <div class="tags">✓
  629. {block:Tags}
  630. <a href="{TagURL}">{Tag}</a>
  631. {/block:Tags}
  632. </div>
  633. {/block:HasTags}
  634.  
  635. </div>
  636.  
  637.  
  638. {block:PostNotes}
  639. {PostNotes}
  640. {/block:PostNotes}
  641.  
  642. {/block:Posts}
  643.  
  644. {block:ContentSource}
  645. <!---{SourceURL}{block:SourceLogo}<img src=”{BlackLogoURL}”
  646. width=”{LogoWidth}” height=”{LogoHeight}” alt=”{SourceTitle}” />
  647. {/block:SourceLogo}
  648. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} --->
  649. {/block:ContentSource}{block:ReblogParent}{/block:ReblogParent}
  650.  
  651. </body>
  652.  
  653. </div></div></div></div></div></div></div></div></div></div></div>
  654. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement