Advertisement
userbru

fansite theme one.

Mar 24th, 2021 (edited)
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.87 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!-----------theme by bru ------------>
  5.  
  6. <title>{Title}</title>
  7. <link rel="shortcut icon" href="{Favicon}">
  8. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  9. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  10.  
  11.  
  12. <!--------DEFAULT VARIABLES-------->
  13.  
  14. <meta name="color:background" content="#ffffff"/>
  15. <meta name="color:text" content="#000000"/>
  16. <meta name="color:links" content="#626262"/>
  17. <meta name="color:link hover" content="#905976"/>
  18. <meta name="color:navigation" content="#000000"/>
  19. <meta name="color:nav links" content="#ffffff"/>
  20. <meta name="color:nav links hover" content="#d31e1e"/>
  21. <meta name="color:borders" content="#eeeeee"/>
  22. <meta name="color:question" content="#f8f8f8"/>
  23. <meta name="color:scrollbar" content="#000000"/>
  24. <meta name="color:scrollbar background" content="#ffffff"/>
  25. <meta name="color:sidebar" content="#ffffff"/>
  26. <meta name="color:titles" content="#000000"/>
  27. <meta name="color:titles bg" content="#ffffff"/>
  28. <meta name="color:titles border" content="#eeeeee"/>
  29. <meta name="color:content background" content="#f8f8f8"/>
  30. <meta name="color:posts background" content="#ffffff"/>
  31.  
  32. <meta name="image:sidebar" content=""/>
  33.  
  34. <meta name="text:link 1 title" content="link"/>
  35. <meta name="text:link 1 url" content=""/>
  36. <meta name="text:link 2 title" content="link"/>
  37. <meta name="text:link 2 url" content=""/>
  38. <meta name="text:link 3 title" content="link"/>
  39. <meta name="text:link 3 url" content=""/>
  40. <meta name="text:link 4 title" content="link"/>
  41. <meta name="text:link 4 url" content=""/>
  42. <meta name="text:link 5 title" content="link"/>
  43. <meta name="text:link 5 url" content=""/>
  44. <meta name="text:link 6 title" content="link"/>
  45. <meta name="text:link 6 url" content=""/>
  46.  
  47.  
  48. <!----------------SCRIPTS---------------->
  49. <link href="https://fonts.googleapis.com/css?family=ABeeZee&display=swap" rel="stylesheet">
  50. <link href="https://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  51. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  52. <script src="https://static.tumblr.com/5omyijl/RZtn2yg9v/jquery.style-my-tooltips.js"></script>
  53. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  54. <script src="https://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  55.  
  56.  
  57.  
  58. <script>
  59. (function($){
  60. $(document).ready(function(){
  61. $("[title]").style_my_tooltips({
  62. tip_follows_cursor:true,
  63. tip_delay_time:200,
  64. tip_fade_speed:300
  65. });
  66. });
  67. })(jQuery);
  68. </script>
  69.  
  70.  
  71.  
  72. <style type="text/css">
  73.  
  74. /*----------SCROLLBAR---------*/
  75.  
  76. ::-webkit-scrollbar {
  77. background-color: {color:scrollbar bg};
  78. height:8px;
  79. width:5px;
  80. }
  81.  
  82. ::-webkit-scrollbar-thumb:vertical {
  83. background-color:{color:scrollbar};
  84. height:50px;
  85. }
  86.  
  87. ::-webkit-scrollbar-thumb:horizontal {
  88. background-color:{color:scrollbar bg};
  89. height:8px;
  90. }
  91.  
  92. /*----------TOOLTIPS---------*/
  93.  
  94. .iframe-controls--desktop {
  95. position:fixed;
  96. top:0px;
  97. right:0px;
  98. z-index:214748364789123456789;
  99. filter:invert(100%);
  100. -webkit-filter:invert(100%);
  101. -webkit-transform:scale(0.6,0.6);
  102. -webkit-transform-origin: 100% 0%;
  103. -ms-transform-origin:100% 0%;
  104. -ms-transform:scale(0.6,0.6);
  105. transform:scale(0.6,0.6);
  106. transform-origin:100% 0%;
  107. }
  108.  
  109. /*----------BASICS---------*/
  110.  
  111. body {
  112. background:{color:background};
  113. color:{color:text};
  114. font-family:'ABeeZee', open sans;
  115. font-size:11px;
  116. line-height:150%;
  117. margin:0;
  118. text-align:left;
  119. }
  120.  
  121. small {
  122. font-size:11px;
  123. }
  124.  
  125. a {
  126. color:{color:links};
  127. text-decoration:none;
  128. }
  129.  
  130. a:hover {
  131. color:{color:link hover};
  132. transition:1s;
  133. -webkit-transition:1s;
  134. -moz-transition:1s;
  135. -o-transition:1s;
  136. }
  137.  
  138. img {
  139. opacity:1;
  140. text-decoration:none;
  141. }
  142.  
  143. h1 {
  144. font-size:14px;
  145. font-weight:bold;
  146. font-family:'ABeeZee', open sans;
  147. line-height:150%;
  148. text-transform:lowercase;
  149. }
  150.  
  151. blockquote {
  152. padding-left:10px;
  153. margin:10px;
  154. border-left:1px solid #eee;
  155. }
  156.  
  157. /*----------HEADER---------*/
  158.  
  159. .navigation {
  160. width:cover;
  161. background:{color:navigation};
  162. margin-top:-5px;
  163. margin-left:calc(20% - 550px);
  164. }
  165.  
  166.  
  167. .links {
  168. text-align:center;
  169. padding:30px;
  170. text-transform:lowercase;
  171. font-size:15px;
  172. font-weight:bold;
  173. }
  174.  
  175. .links a {
  176. color:{color:nav links};
  177. margin-right:40px;
  178. }
  179.  
  180. .links a:hover {
  181. color:{color:link hover};
  182. }
  183.  
  184. /*----------SIDEBAR---------*/
  185.  
  186. .sidebar {
  187. position:absolute;
  188. width:350px;
  189. margin-top:50px;
  190. margin-left:20px;
  191.  
  192. }
  193.  
  194. .sideimg img {
  195. width:268px;
  196. }
  197.  
  198.  
  199. .cat {
  200. padding:20px;
  201. border:1px solid {color:borders};
  202. margin-bottom:50px;
  203. background:white;
  204. }
  205.  
  206. .cti {
  207. text-transform:lowercase;
  208. font-size:15px;
  209. font-weight:bold;
  210. padding:10px;
  211. border-bottom:1px solid #eee;
  212. margin-bottom:20px;
  213. color:{color:titles};
  214. background:{color:titles bg};
  215. }
  216.  
  217.  
  218. .description {
  219. text-align:justify;
  220. padding:20px;
  221. margin:5px;
  222. margin-top:0px;
  223. font-size:12px;
  224. }
  225.  
  226.  
  227. .projects {
  228. padding:5px;
  229. text-align:left;
  230. margin-top:0px;
  231.  
  232. }
  233.  
  234.  
  235. .projects img {
  236. padding:5px;
  237. width:100px;
  238. float:left;
  239. margin-right:10px;
  240. border:1px solid #eee;
  241.  
  242. }
  243.  
  244.  
  245. .pinfo {
  246. height:100px;
  247. margin-top:25px;
  248. }
  249.  
  250.  
  251.  
  252. .date {
  253. float:left;
  254. padding:10px;
  255. margin-right:10px;
  256. text-transform:lowercase;
  257. font-weight:bold;
  258. }
  259.  
  260. .e {
  261. padding:10px;
  262.  
  263. }
  264.  
  265.  
  266. .affiliates {
  267. width:300px;
  268. padding:5px;
  269. text-align:left;
  270. text-transform:lowercase;
  271. font-size:9px;
  272. letter-spacing:1px;
  273. margin-top:20px;
  274. }
  275.  
  276. .affiliates img {
  277. padding:5px;
  278. width:50px;
  279.  
  280.  
  281. }
  282.  
  283.  
  284.  
  285. .off a {
  286. display:block;
  287. padding:10px;
  288. border-bottom:1px solid #eee;
  289. text-transform:lowercase;
  290. font-size:10px;
  291. }
  292.  
  293. .off a:hover {
  294. margin-left:5px;
  295. }
  296.  
  297.  
  298. /*----------PAGINATION---------*/
  299.  
  300. #pagi {
  301. margin-top:40px;
  302. margin-left:750px;
  303. font-family:'roboto', sans-serif;
  304. text-transform:lowercase;
  305. font-size:20px;
  306. font-weight:bold;
  307. padding:20px;
  308. }
  309.  
  310. /*----------POSTS---------*/
  311.  
  312. .container {
  313. width:1140px;
  314. margin-left:calc(50% - 550px);
  315. background:{color:content background};
  316. padding:20px;
  317. margin-top:0px;
  318.  
  319. }
  320.  
  321.  
  322. .entries {
  323. margin-top:50px;
  324. width:540px;
  325. margin-left:540px;
  326. background:{color:content background};
  327.  
  328. }
  329.  
  330. .posts {
  331. width:540px;
  332. margin-bottom:70px;
  333. background:{color:posts background};
  334. padding:20px;
  335. border:1px solid {color:borders};
  336. }
  337.  
  338.  
  339. /*----------QUOTE---------*/
  340.  
  341. .quote {
  342. padding:10px;
  343. font-size:15px;
  344. }
  345.  
  346. .quotesource {
  347. padding:10px;
  348. text-align:center;
  349. }
  350.  
  351. /*----------CHAT---------*/
  352.  
  353. .chat {
  354. line-height:150%;
  355. list-style:none;
  356. }
  357.  
  358. .line.odd {
  359. padding:10px;
  360. background:#f8f8f8;
  361. }
  362.  
  363. .line.even {
  364. padding:10px;
  365. }
  366.  
  367. .label {
  368. text-transform:lowercase;
  369. font-size:10px;
  370. letter-spacing:1px;
  371. font-weight:bold;
  372. }
  373.  
  374. /*----------AUDIO---------*/
  375.  
  376. .cover {
  377. position:relative;
  378. z-index:1;
  379. max-width:100px;
  380. padding:10px;
  381. float:left;
  382. }
  383.  
  384. .playbutton {
  385. width:20px;
  386. height:30px;
  387. overflow:hidden;
  388. position:relative;
  389. z-index:2;
  390.  
  391. }
  392.  
  393.  
  394. .playbox {
  395. background-color:#000;
  396. position:absolute;
  397. z-index:2;
  398. padding:15px 24px 13px 16px;
  399. margin-top:30px;
  400. margin-left:30px;
  401. opacity:0.5;
  402. }
  403.  
  404. .trackdetails {
  405. padding:10px;
  406. width:auto;
  407. height:100px;
  408. margin-top:10px;
  409. margin-left:100px;
  410. }
  411.  
  412. /*----------ASK---------*/
  413.  
  414. .question {
  415. padding:10px;
  416. background:{color:question};
  417. }
  418.  
  419.  
  420. .asker {
  421. text-transform:lowercase;
  422. }
  423.  
  424. .answer {
  425. margin:10px;
  426. }
  427.  
  428. /*----------INFO---------*/
  429.  
  430. .info {
  431. padding:10px;
  432. text-transform:lowercase;
  433. border-top:1px solid #eee;
  434. margin-top:25px;
  435. }
  436.  
  437.  
  438. .tags {
  439. margin-left:10px;
  440. margin-top:-5px;
  441. }
  442.  
  443. .tags a {
  444. margin-right:10px;
  445. letter-spacing:1px;
  446. }
  447.  
  448. .tags a:after { content:","; } .tags a:last-child:after { content:"."; }
  449. }
  450. /*----------POST NOTES---------*/
  451.  
  452. ol.notes {
  453. padding:0px;
  454. margin:25px 0px 0px -10px;
  455. list-style-type:none;
  456. }
  457.  
  458. ol.notes li.note {
  459. padding:10px;
  460. }
  461.  
  462. ol.notes li.note img.avatar {
  463. vertical-align:-4px;
  464. margin-right:10px;
  465. width:16px;
  466. height:16px;
  467. }
  468.  
  469. ol.notes li.note span.action {
  470. font-weight:none;
  471. }
  472.  
  473. ol.notes li.note .answer_content {
  474. font-weight:normal;
  475. }
  476.  
  477. ol.notes li.note blockquote {
  478. padding:4px 10px;
  479. margin:10px 0px 0px 25px;
  480. }
  481.  
  482. ol.notes li.note blockquote a {
  483. text-decoration:none;
  484. }
  485.  
  486. /*----------CREDIT---------*/
  487.  
  488. .credit {
  489. font-size:10px;
  490. position:fixed;
  491. font-weight:bold;
  492. bottom:5px;
  493. right:15px;
  494. z-index:10;
  495. text-align:right;
  496. letter-spacing:1px;
  497. padding:2px;
  498. }
  499.  
  500. .credit a {
  501. color:{color:links};
  502. text-decoration:none;
  503. }
  504.  
  505. .credit a:hover {
  506. color:{color:links hover};
  507. text-decoration:none;
  508. }
  509.  
  510. </style>
  511. </head>
  512.  
  513. <body>
  514.  
  515. <div class="credit">
  516. <a title="by bru" href="https://geminicodes.tumblr.com/" target="_blank">c.</a></div>
  517.  
  518.  
  519.  
  520.  
  521. <div class="navigation">
  522.  
  523. <div class="links">
  524. <a href="/">Home</a>
  525. <a href="/ask">Inbox</a>
  526. <a href="{text:link 1 url}">{text:link 1 title}</a>
  527. <a href="{text:link 2 url}">{text:link 2 title}</a>
  528. <a href="{text:link 3 url}">{text:link 3 title}</a>
  529. <a href="{text:link 4 url}">{text:link 4 title}</a>
  530. <a href="{text:link 5 url}">{text:link 5 title}</a>
  531. <a href="{text:link 6 url}">{text:link 6 title}</a>
  532. </div>
  533.  
  534.  
  535. </div>
  536.  
  537. <center><div class="header"></div></center>
  538.  
  539. <div class="container">
  540.  
  541. <div class="sidebar">
  542.  
  543.  
  544.  
  545. <!-- WELCOME -->
  546.  
  547. <div class="cat">
  548. <div class="cti"><i class="fa fa-home"></i> welcome.</div>
  549. <center><div class="sideimg"><img src="{image:sidebar}"></div></center>
  550. <div class="description">{Description}</div>
  551. </div>
  552.  
  553. <!-- BLOG PROJECTS -->
  554.  
  555. <div class="cat">
  556. <div class="cti"><span class="fa fa-bookmark"></span> blog projects.</div>
  557.  
  558.  
  559. <div class="projects">
  560.  
  561. <div class="pinfo"><ul> <b><a href="/">title here!</a></b><br>
  562. <b>+</b> info here, keep it short!<br></div>
  563.  
  564. <div class="pinfo"><ul> <b><a href="/">title here!</a></b><br>
  565. <b>+</b> info here, keep it short!<br></div>
  566.  
  567.  
  568.  
  569. </div></div>
  570.  
  571.  
  572.  
  573. <!-- AFFILIATES -->
  574.  
  575. <div class="cat">
  576. <div class="cti"><i class="fa fa-address-book"></i> affiliates.</div>
  577.  
  578. <div class="affiliates">
  579.  
  580. <center> <a href="https://brusthemetesting.tumblr.com/" title="bru's theme" target="_blank"><img src="https://api.tumblr.com/v2/blog/brusthemetesting.tumblr.com/avatar/40" alt="" /></a>
  581. <a href="https://brusthemetesting.tumblr.com/" title="bru's theme" target="_blank"><img src="https://api.tumblr.com/v2/blog/brusthemetesting.tumblr.com/avatar/40" alt="" /></a>
  582. <a href="https://brusthemetesting.tumblr.com/" title="bru's theme" target="_blank"><img src="https://api.tumblr.com/v2/blog/brusthemetesting.tumblr.com/avatar/40" alt="" /></a>
  583. <a href="https://brusthemetesting.tumblr.com/" title="bru's theme" target="_blank"><img src="https://api.tumblr.com/v2/blog/brusthemetesting.tumblr.com/avatar/40" alt="" /></a></center>
  584.  
  585.  
  586. </div>
  587. </div>
  588.  
  589.  
  590. <!-- MEMBERS -->
  591.  
  592. <div class="cat">
  593. <div class="cti"><i class="fa fa-users"></i> team.</div>
  594.  
  595. {block:GroupMembers}
  596. <table style="margin-top:0px;">
  597. {block:GroupMember}
  598. <tr>
  599. <td style="width:40px;">
  600. <img src="{GroupMemberPortraitURL-40}" width="40px;" height="auto;" style="margin-right: 10px; padding: 5px; border: 1px solid #f1f1f1">
  601. </td>
  602. <td style="width:290px; height:auto;">
  603. <div id="m" style="margin-bottom:10px;">
  604. <a href="{GroupMemberURL}" style="font-weight:bold; text-transform:lowercase; font-family:'ABeeZee', open sans; letter-spacing:0px; font-size:8px;">{GroupMemberName}</a><br>{GroupMemberTitle}</div>
  605.  
  606. </tr>
  607. {/block:GroupMember}
  608. </table>
  609. {/block:GroupMembers}
  610. </div>
  611.  
  612.  
  613. <!-- INFO -->
  614.  
  615. <div class="cat">
  616. <div class="cti"><i class="fa fa-heart"></i> about the blog.</div>
  617. <div class="sinfo">
  618. <b>about:</b> <br>
  619. <b>admins:</b> <br>
  620. <b>designed by:</b> <br>
  621. <b>online:</b> <br>
  622.  
  623. </div>
  624.  
  625.  
  626.  
  627. </div>
  628.  
  629. </div>
  630.  
  631. <div class="entries">
  632.  
  633. {block:Posts}
  634.  
  635. <div class="posts">
  636.  
  637. {block:Text}
  638. <h1>{block:Title}{Title}{/block:Title}</h1>
  639. {Body}{/block:Text}
  640.  
  641.  
  642. {block:Photo}
  643. {LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}
  644. {block:Caption}{Caption}{/block:Caption}
  645. {/block:Photo}
  646.  
  647.  
  648. {block:Photoset}
  649. {Photoset}
  650. {block:Caption}{Caption}{/block:Caption}
  651. {/block:Photoset}
  652.  
  653.  
  654. {block:Quote}
  655. <div class="quote">"{Quote}"</div>
  656. {block:Source}<div class="quotesource"> — {Source}</div>
  657. {/block:Source}{/block:Quote}
  658.  
  659.  
  660. {block:Link}
  661. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  662. {block:Description}{Description}{/block:Description}
  663. {/block:Link}
  664.  
  665.  
  666. {block:Chat}
  667. {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>
  668. {/block:Chat}
  669.  
  670.  
  671. {block:Audio}
  672.  
  673. <div class="playbox"><div class="playbutton">{block:AudioPlayer}{AudioPlayerBlack}{/block:AudioPlayer}</div></div>
  674.  
  675. {block:AlbumArt}
  676. <img src="{AlbumArtURL}" class="cover">
  677. {/block:AlbumArt}
  678.  
  679.  
  680. <div class="trackdetails"><br>
  681. {block:TrackName}<b>TRACK:</b> {TrackName}{/block:TrackName}<br>
  682.  
  683. {block:Artist}<b>ARTIST:</b> {Artist}{/block:Artist}<br>
  684.  
  685. <b>PLAYS:</b> {FormattedPlayCount}</div>
  686.  
  687.  
  688. {block:Caption}
  689. <div class="caption">{Caption}</div>
  690. {/block:Caption}
  691. {/block:Audio}
  692.  
  693.  
  694. {block:Video}
  695. {Video}
  696. {block:Caption}{Caption}{/block:Caption}
  697. {/block:Video}
  698.  
  699.  
  700. {block:Answer}
  701. <div class="question">
  702. <div class="asker"><b>{Asker} said:</b></div>
  703. {Question}</div>
  704. <div class="answer">
  705. {Answer}</div>
  706. {/block:Answer}
  707.  
  708.  
  709. <div class="info">
  710. {block:Date}
  711. <b><a href="/day/{Year}/{MonthNumberWithZero}/{DayOfMonth}" title="{TimeAgo}">{Month} {DayOfMonth}{DayOfMonthSuffix}</b></a>
  712. {/block:Date}
  713.  
  714. &nbsp;&nbsp;
  715. <a href="{Permalink}">{NoteCount}</a>
  716. &nbsp;&nbsp;
  717.  
  718. <a href="{ReblogURL}" target="_blank" class="details"><i class="fa fa-repeat"></i></a>&nbsp;&nbsp;<b>Posted by</b> <a href="{PostAuthorURL}">{PostAuthorName}</a>
  719.  
  720. <font style="float:right">
  721. {block:RebloggedFrom}
  722. <a href="{ReblogParentURL}" title="{ReblogParentName}">via </a>
  723. {block:ContentSource}
  724. <a href="{ReblogRootURL}" "{ReblogRootName}" title="{ReblogRootName}">/ src</a>
  725. {/block:ContentSource}
  726. {/block:RebloggedFrom}
  727. </font style>
  728.  
  729.  
  730. </div>
  731.  
  732.  
  733. {block:HasTags}
  734. <div class="tags">
  735. #{block:Tags}
  736. <a href="{TagURL}">{Tag}</a>
  737. {/block:Tags}
  738. </div>
  739. {/block:HasTags}
  740.  
  741. </div>
  742.  
  743.  
  744. {block:PostNotes}
  745. {PostNotes}
  746. {/block:PostNotes}
  747. {/block:Posts}</div>
  748.  
  749. <div id="pagi">
  750. {block:IndexPage}
  751. <div id="pagination">
  752. {block:Pagination}
  753. {block:JumpPagination length="5"}
  754. {block:CurrentPage}
  755. <span class="current_page">{PageNumber}</span>
  756. {/block:CurrentPage}
  757. {block:JumpPage}
  758. <a class="jump_page" href="{URL}">{PageNumber}</a>
  759. {/block:JumpPage}
  760. {/block:JumpPagination}
  761. {/block:Pagination}
  762. </div>
  763. {/block:IndexPage}
  764. </div>
  765.  
  766. {block:ContentSource}
  767. <!---{SourceURL}{block:SourceLogo}<img src=”{BlackLogoURL}”
  768. width=”{LogoWidth}” height=”{LogoHeight}” alt=”{SourceTitle}” />
  769. {/block:SourceLogo}
  770. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} --->
  771. {/block:ContentSource}{block:ReblogParent}{/block:ReblogParent}
  772.  
  773. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement