rollyjogered

theme #43: better

Jul 9th, 2020 (edited)
3,909
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.15 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!--
  5.  
  6. theme #43: better by pirateskinned
  7.  
  8. please don't: edit & repost / claim as your own
  9. please don't: delete or move the credit
  10. please don't: steal bits of coding
  11.  
  12. if you need any help, feel free to
  13. message me at pirateskinned.tumblr.com
  14.  
  15. ------
  16.  
  17. image wrapping inspired by iniziare.tumblr.com
  18. tumblr controls styling by cyantists.tumblr.com
  19. icon font by suiomi.com/font
  20.  
  21. -->
  22.  
  23. <title>{Title}</title>
  24.  
  25. <link rel="shortcut icon" href="{Favicon}">
  26. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  27. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  28.  
  29. <!-- meta tags -->
  30.  
  31. <meta name="image:background" content=""/>
  32. <meta name="image:container" content=""/>
  33. <meta name="image:sidebar top" content=""/>
  34. <meta name="image:sidebar bottom" content=""/>
  35. <meta name="image:popup" content=""/>
  36.  
  37. <meta name="color:background" content="#ffffff"/>
  38. <meta name="color:container" content="#fafafa"/>
  39. <meta name="color:posts" content="#ffffff"/>
  40. <meta name="color:border" content="#eeeeee"/>
  41. <meta name="color:text" content="#4f4e4e"/>
  42. <meta name="color:link" content="#d9bf9a"/>
  43. <meta name="color:accent" content="#86a29e"/>
  44.  
  45. <meta name="if:background pattern" content="0"/>
  46. <meta name="if:container pattern" content="0"/>
  47. <meta name="if:image wrap" content="1"/>
  48. <meta name="if:500px posts" content="0"/>
  49.  
  50. <meta name="select:fontsize" content="11px" title="11px">
  51. <meta name="select:fontsize" content="12px" title="12px">
  52. <meta name="select:fontsize" content="13px" title="13px">
  53. <meta name="select:fontsize" content="14px" title="14px">
  54. <meta name="select:fontsize" content="15px" title="15px">
  55.  
  56. <meta name="text:sidebar second title" content="second title here" />
  57. <meta name="text:popup text" content="popup text here" />
  58.  
  59. <meta name="text:link 1 url" content="/" />
  60. <meta name="text:link 1 title" content="link one" />
  61. <meta name="text:link 2 url" content="/" />
  62. <meta name="text:link 2 title" content="link two" />
  63. <meta name="text:link 3 url" content="/" />
  64. <meta name="text:link 3 title" content="link three" />
  65. <meta name="text:link 4 url" content="/" />
  66. <meta name="text:link 4 title" content="link four" />
  67. <meta name="text:link 5 url" content="/" />
  68. <meta name="text:link 5 title" content="link five" />
  69. <meta name="text:link 6 url" content="/" />
  70. <meta name="text:link 6 title" content="link six" />
  71. <meta name="text:link 7 url" content="/" />
  72. <meta name="text:link 7 title" content="link seven" />
  73. <meta name="text:link 8 url" content="/" />
  74. <meta name="text:link 8 title" content="link eight" />
  75. <meta name="text:link 9 url" content="/" />
  76. <meta name="text:link 9 title" content="link nine" />
  77. <meta name="text:link 10 url" content="/" />
  78. <meta name="text:link 10 title" content="link ten" />
  79. <meta name="text:link 11 url" content="/" />
  80. <meta name="text:link 11 title" content="link eleven" />
  81. <meta name="text:link 12 url" content="/" />
  82. <meta name="text:link 12 title" content="link twelve" />
  83.  
  84. <!-- scripts -->
  85.  
  86. <link href="https://static.tumblr.com/qudkd6d/OcDnl99gb/style.css" rel="stylesheet" type="text/css">
  87. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  88.  
  89. <!-- icon font -- http://suiomi.com/font -->
  90.  
  91. <link href="//solrainha.github.io/saturnicons/saturnicons.css" rel="stylesheet">
  92.  
  93. <!-- tooltips -->
  94.  
  95. <script src="https://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  96.  
  97. <script>
  98. (function($){
  99. $(document).ready(function(){
  100. $("a[title], img[title], span[title]").style_my_tooltips({
  101. tip_follows_cursor:true,
  102. tip_delay_time:30,
  103. tip_fade_speed:300,
  104. attribute:"title"
  105. });
  106. });
  107. })(jQuery);
  108. </script>
  109.  
  110. <!-- photosets -->
  111.  
  112. <script src="https://static.tumblr.com/qudkd6d/Az6nkemqr/pxuphotoset.min.js"></script>
  113.  
  114. <script>
  115. $(document).ready(function(){
  116. $('.photo-slideshow').pxuPhotoset({
  117. lightbox: true,
  118. rounded: false,
  119. gutter: '1px',
  120. borderRadius: '0px',
  121. photoset: '.photo-slideshow',
  122. photoWrap: '.photo-data',
  123. photo: '.pxu-photo'
  124. });
  125. });
  126. </script>
  127.  
  128. <!-- popup -->
  129.  
  130. <script>
  131. $(document).ready(function() {
  132. $('#nav-trigger').click(function() {
  133. $('.entries').fadeOut();
  134. $('.popup').fadeIn();
  135. });
  136.  
  137. $('.pop-close span').click(function() {
  138. $('.popup').fadeOut();
  139. $('.entries').fadeIn();
  140. });
  141. });
  142. </script>
  143.  
  144. <style type="text/css">
  145.  
  146. /* --- tumblr controls styling by cyantists
  147. http://cyantists.tumblr.com/tumblr_controls/hover --- */
  148.  
  149. iframe.tmblr-iframe {
  150. z-index:99999999999999!important;
  151. top:-2px!important;
  152. right:0!important;
  153. opacity:0;
  154. padding-right:38px;
  155. /* delete invert(1) from here */
  156. filter:invert(1) contrast(150%);
  157. -webkit-filter:invert(1) contrast(150%);
  158. -o-filter:invert(1) contrast(150%);
  159. -moz-filter:invert(1) contrast(150%);
  160. -ms-filter:invert(1) contrast(150%);
  161. /* to here if your blog has a dark background */
  162. transform:scale(0.65);
  163. transform-origin:100% 0;
  164. -webkit-transform:scale(0.65);
  165. -webkit-transform-origin:100% 0;
  166. -o-transform:scale(0.65);
  167. -o-transform-origin:100% 0;
  168. -moz-transform:scale(0.65);
  169. -moz-transform-origin:100% 0;
  170. -ms-transform:scale(0.65);
  171. -ms-transform-origin:100% 0;}
  172.  
  173. iframe.tmblr-iframe:hover {
  174. opacity:0.6!important;}
  175.  
  176. .hcontrols {
  177. position:fixed;
  178. top:0;
  179. right:0;
  180. z-index:999999999;}
  181.  
  182. .hcontrols svg {
  183. width:14px;
  184. height:14px;
  185. padding:9px;}
  186.  
  187. .hcontrols svg path {
  188. fill:#888888;/* change this to change the color of the icon */}
  189.  
  190. /* --- tooltips & scrollbars --- */
  191.  
  192. #s-m-t-tooltip {
  193. position:absolute;
  194. margin-top: 15px;
  195. z-index:9999;
  196. padding:3px 5px;
  197. background:{color:posts};
  198. color:{color:text};
  199. font-size:{select:fontsize};
  200. }
  201.  
  202. ::-webkit-scrollbar-thumb {background-color:{color:accent};}
  203. ::-webkit-scrollbar {background-color:transparent; width:1px; height:1px;}
  204.  
  205. /* --- basics --- */
  206.  
  207. body {
  208. background-color:{color:background};
  209. background-image:url('{image:background}');
  210. background-attachment:fixed;
  211. background-position:center center;
  212. {block:ifnotbackgroundpattern}
  213. background-repeat:no-repeat;
  214. background-size:cover;
  215. {/block:ifnotbackgroundpattern}
  216. {block:ifbackgroundpattern}
  217. background-repeat:repeat;
  218. background-size:auto;
  219. {/block:ifbackgroundpattern}
  220. color:{color:text};
  221. font-family: 'Helvetica', sans-serif;
  222. font-size:{select:fontsize};
  223. line-height:calc({select:fontsize} + 6px);
  224. font-weight:300;
  225. text-align:justify;
  226. margin:0;
  227. }
  228.  
  229. a {
  230. color:{color:text};
  231. text-decoration:none;
  232. -moz-transition-duration: 0.5s;
  233. -o-transition-duration: 0.5s;
  234. -webkit-transition-duration: 0.5s;
  235. transition-duration: 0.5s;
  236. }
  237.  
  238. a:hover {
  239. color:{color:text};
  240. text-decoration:none;
  241. }
  242.  
  243. p a, .description a {box-shadow:{color:link} 0px -1px 0px inset;}
  244. p a:hover, .description a:hover {box-shadow:{color:link} 0px -17px 0px inset;}
  245.  
  246. img {
  247. border:none;
  248. text-decoration:none;
  249. }
  250.  
  251. b, strong, bold {
  252. font-weight:700;
  253. }
  254.  
  255. u {
  256. text-decoration:none;
  257. }
  258.  
  259. .firstletter, u {
  260. display:block;
  261. float:left;
  262. padding:12px 14px;
  263. background:{color:text};
  264. color:{color:posts};
  265. font-weight:700;
  266. text-transform:uppercase;
  267. font-size:calc({select:fontsize} + 4px);
  268. margin:0px 10px 0px 0px;
  269. }
  270.  
  271. s, strike {
  272. text-decoration-color:{color:text};
  273. }
  274.  
  275. small, sub, sup, big {
  276. font-size:{select:fontsize};
  277. line-height:calc({select:fontsize} + 6px);
  278. vertical-align:baseline;
  279. }
  280.  
  281. blockquote {
  282. padding:0px 5px 0px 15px;
  283. border-left:1px solid {color:border};
  284. margin-left:5px;
  285. margin-right:0px;
  286. }
  287.  
  288. blockquote img {
  289. max-width:360px;
  290. height:auto;
  291. }
  292.  
  293. blockquote blockquote {
  294. margin-right:0px;
  295. }
  296.  
  297. blockquote blockquote img {
  298. max-width:350px;
  299. height:auto;
  300. margin-top:10px;
  301. }
  302.  
  303. pre {
  304. font-family: 'Helvetica', sans-serif;
  305. font-size:calc({select:fontsize} + 2px);
  306. font-weight:700;
  307. padding:10px;
  308. background-color:{color:text};
  309. color:{color:posts};
  310. margin:0px;
  311. }
  312.  
  313. pre i, pre em, pre b, pre strong, pre a {
  314. color:{color:posts};
  315. }
  316.  
  317. ul {
  318. padding-left:15px;
  319. }
  320.  
  321. ul li {
  322. list-style-type:none;
  323. }
  324.  
  325. ul li:before {
  326. content: "— ";
  327. text-indent: -5px;
  328. }
  329.  
  330. /* --- header styles --- */
  331.  
  332. h1 {
  333. margin:-20px -20px 20px -20px;
  334. font-weight:bold;
  335. color:{color:posts};
  336. text-align:left;
  337. background-color:{color:text};
  338. padding:20px;
  339. font-size:calc({select:fontsize} + 8px);
  340. line-height:calc({select:fontsize} + 10px);
  341. }
  342.  
  343. h2 {
  344. font-weight:normal;
  345. color:{color:text};
  346. text-align:left;
  347. text-transform:uppercase;
  348. font-size:calc({select:fontsize} + 2px);
  349. letter-spacing:1px;
  350. word-spacing:2px;
  351. }
  352.  
  353. /* --- container --- */
  354.  
  355. .container {
  356. position:absolute;
  357. margin-top:-275px;
  358. top:50%;
  359. left:50%;
  360. {block:ifnot500pxposts}
  361. margin-left:-450px;
  362. width:900px;
  363. {/block:ifnot500pxposts}
  364. {block:if500pxposts}
  365. margin-left:-500px;
  366. width:1000px;
  367. {/block:if500pxposts}
  368. height:550px;
  369. background-color:{color:container};
  370. background-image:url('{image:container}');
  371. background-attachment:fixed;
  372. background-position:center center;
  373. {block:ifnotcontainerpattern}
  374. background-repeat:no-repeat;
  375. background-size:cover;
  376. {/block:ifnotcontainerpattern}
  377. {block:ifcontainerpattern}
  378. background-repeat:repeat;
  379. background-size:auto;
  380. {/block:ifcontainerpattern}
  381. overflow:hidden;
  382. box-shadow:inset 0px -10px 0px {color:accent};
  383. }
  384.  
  385. /* --- sidebar --- */
  386.  
  387. .sidebar {
  388. position:absolute;
  389. z-index:500;
  390. top:70px;
  391. left:70px;
  392. width:270px;
  393. height:20px;
  394. box-shadow:inset 0px 10px 0px {color:accent};
  395. }
  396.  
  397. .side-img {
  398. position:absolute;
  399. top:30px;
  400. left:20px;
  401. width:80px;
  402. height:80px;
  403. background-image:url('{image:sidebar top}');
  404. background-position:center center;
  405. background-repeat:no-repeat;
  406. background-size:cover;
  407. }
  408.  
  409. .side-title {
  410. position:absolute;
  411. top:40px;
  412. left:130px;
  413. width:130px;
  414. height:auto;
  415. padding:10px;
  416. text-align:center;
  417. text-transform:uppercase;
  418. font-weight:700;
  419. background:{color:posts};
  420. }
  421.  
  422. .description {
  423. position:absolute;
  424. top:130px;
  425. left:-20px;
  426. width:185px;
  427. height:105px;
  428. padding:30px;
  429. overflow:auto;
  430. background:{color:posts};
  431. }
  432.  
  433. .nav {
  434. position:absolute;
  435. top:150px;
  436. right:0px;
  437. width:30px;
  438. height:100px;
  439. text-align:center;
  440. }
  441.  
  442. .nav a {
  443. display:block;
  444. margin:15px 5px;
  445. font-weight:700;
  446. font-size:calc({select:fontsize} + 4px);
  447. cursor:pointer;
  448. }
  449.  
  450. .nav a:hover {
  451. color:{color:accent};
  452. }
  453.  
  454. .sub-title {
  455. position:absolute;
  456. top:320px;
  457. left:0px;
  458. width:150px;
  459. height:auto;
  460. padding:10px;
  461. text-align:center;
  462. text-transform:uppercase;
  463. font-weight:700;
  464. background:{color:posts};
  465. }
  466.  
  467. .side-img-2 {
  468. position:absolute;
  469. top:310px;
  470. left:200px;
  471. width:80px;
  472. height:80px;
  473. background-image:url('{image:sidebar bottom}');
  474. background-position:center center;
  475. background-repeat:no-repeat;
  476. background-size:cover;
  477. }
  478.  
  479. /* --- pagination --- */
  480.  
  481. .pagination {
  482. {block:ifnot500pxposts}
  483. width:440px;
  484. {/block:ifnot500pxposts}
  485. {block:if500pxposts}
  486. width:540px;
  487. {/block:if500pxposts}
  488. height:20px;
  489. left:0px!important;
  490. margin-top:0px;
  491. text-align:center;
  492. padding:0px 0px 40px 0px!important;
  493. color:{color:text};
  494. }
  495.  
  496. .pagination a {
  497. color:{color:text};
  498. line-height:20px;
  499. }
  500.  
  501. .pagination .sf {
  502. font-size:7px;
  503. }
  504.  
  505. /* --- entries --- */
  506.  
  507. .entries {
  508. position:absolute;
  509. z-index:3;
  510. top:0px;
  511. right:0px;
  512. {block:ifnot500pxposts}
  513. width:900px;
  514. {/block:ifnot500pxposts}
  515. {block:if500pxposts}
  516. width:1000px;
  517. {/block:if500pxposts}
  518. height:550px;
  519. overflow:auto;
  520. background-color:transparent;
  521. box-sizing:border-box;
  522. padding:40px 40px 10px 420px;
  523. }
  524.  
  525. /* --- posts --- */
  526.  
  527. .post {
  528. {block:ifnot500pxposts}
  529. width:400px;
  530. {/block:ifnot500pxposts}
  531. {block:if500pxposts}
  532. width:500px;
  533. {/block:if500pxposts}
  534. padding:20px 20px 0px 20px;
  535. {block:IndexPage}
  536. margin-bottom:40px;
  537. {/block:IndexPage}
  538. {block:PermalinkPage}
  539. margin-bottom:40px;
  540. {/block:PermalinkPage}
  541. background-color:{color:posts};
  542. overflow:hidden;
  543. }
  544.  
  545. .post img {
  546. max-width:100%;
  547. height:auto;
  548. }
  549.  
  550. /* --- texts --- */
  551.  
  552. .title {
  553. font-weight:normal;
  554. font-size:calc({select:fontsize} + 12px);
  555. line-height:calc({select:fontsize} + 14px);
  556. color:{color:posts};
  557. text-align:center;
  558. {block:ifnot500pxposts}
  559. width:400px;
  560. {/block:ifnot500pxposts}
  561. {block:if500pxposts}
  562. width:500px;
  563. {/block:if500pxposts}
  564. margin:-20px -20px 20px -20px;
  565. padding:20px;
  566. background-color:{color:text};
  567. text-transform:lowercase;
  568. font-weight:700;
  569. letter-spacing:1px;
  570. }
  571.  
  572. .title a {
  573. color:{color:background};
  574. }
  575.  
  576. .more a {
  577. font-size:calc({select:fontsize} + 8px);
  578. color:{color:text};
  579. }
  580.  
  581. .txt {
  582. margin-bottom:20px;
  583. }
  584.  
  585. .txt img {
  586. {block:ifimagewrap}
  587. max-width:200px;
  588. float:left;
  589. margin-right:10px;
  590. {/block:ifimagewrap}
  591. }
  592.  
  593. .txt blockquote img {
  594. {block:ifimagewrap}
  595. float:right;
  596. margin-left:10px;
  597. margin-right:0px;
  598. {/block:ifimagewrap}
  599. }
  600.  
  601. .txt blockquote blockquote img {
  602. {block:ifimagewrap}
  603. float:left;
  604. margin-left:0px;
  605. margin-right:10px;
  606. margin-top:0px;
  607. {/block:ifimagewrap}
  608. }
  609.  
  610. /* --- photos --- */
  611.  
  612. .photo {
  613. margin:-20px -20px 0px -20px;
  614. }
  615.  
  616. .photo img {
  617. display:block;
  618. }
  619.  
  620. .photo-slideshow {
  621. margin:-20px -20px 0px -20px;
  622. }
  623.  
  624. .photo-slideshow img {
  625. border-radius:0px;
  626. }
  627.  
  628. /* --- quotes --- */
  629.  
  630. .quote {
  631. text-align:left;
  632. font-size:calc({select:fontsize} + 8px);
  633. line-height:calc({select:fontsize} + 15px);
  634. font-weight:700;
  635. }
  636.  
  637. .source {
  638. margin-top:4px;
  639. text-align:right;
  640. }
  641.  
  642. /* --- audio --- */
  643.  
  644. .audio {
  645. float:left;
  646. width:70px;
  647. height:70px;
  648. position:relative;
  649. overflow:hidden;
  650. }
  651.  
  652. .audio:hover .play {opacity:1;width:30px;}
  653. .audio:hover img {margin-left:30px;}
  654.  
  655. .cover img {
  656. width:70px;
  657. position:absolute;
  658. transition:0.5s ease;
  659. }
  660.  
  661. .play {
  662. overflow:hidden;
  663. width:0px;
  664. height:30px;
  665. background:{color:posts};
  666. position:absolute;
  667. padding:20px 0px;
  668. transition:0.5s ease;
  669. }
  670.  
  671. .au b {
  672. font-weight:700;
  673. margin-right:2px;
  674. }
  675.  
  676. .au {
  677. height:45px;
  678. overflow:hidden;
  679. padding:12px 10px;
  680. line-height:calc({select:fontsize} + 5px);
  681. margin-left:70px;
  682. text-align:left;
  683. }
  684.  
  685. /* --- asks --- */
  686.  
  687. .question {
  688. margin:-20px -20px 20px -20px;
  689. padding:20px;
  690. background-color:{color:text};
  691. color:{color:posts};
  692. }
  693.  
  694. .asker {
  695. float:left;
  696. margin-right:2px;
  697. color:{color:posts};
  698. font-weight:700;
  699. text-transform:lowercase;
  700. }
  701.  
  702. .question p {display:inline;}
  703.  
  704. /* --- chat --- */
  705.  
  706. .chat .txt {
  707. padding:0px;
  708. }
  709.  
  710. .chat .title {
  711. margin-bottom:20px;
  712. }
  713.  
  714. .chat ul {
  715. list-style-type:none;
  716. padding-left:0px;
  717. margin:-20px -20px -20px -20px;
  718. }
  719.  
  720. .chat ul li:before {
  721. content: none;
  722. text-indent: 0px;
  723. }
  724.  
  725. .chat ul li {
  726. box-sizing:border-box;
  727. padding:10px;
  728. background-color:{color:posts};
  729. }
  730.  
  731. .chat ul li:nth-of-type(odd) {
  732. background-color:rgba({RGBcolor:text},0.05);
  733. }
  734.  
  735. .chat .label {
  736. text-transform:uppercase;
  737. font-weight:700;
  738. }
  739.  
  740. /* --- permalinks --- */
  741.  
  742. .permalink {
  743. font-weight:700;
  744. margin:0px -20px 0px -20px;
  745. padding:10px;
  746. font-size:calc({select:fontsize} - 1px);
  747. letter-spacing:0px;
  748. text-transform:uppercase;
  749. background-color:{color:posts};
  750. color:{color:text};
  751. border-top:1px solid {color:border};
  752. }
  753.  
  754. .permalink a {
  755. display:inline-block;
  756. color:{color:text};
  757. }
  758.  
  759. .reb {
  760. display:inline-block;
  761. vertical-align:middle;
  762. float:right;
  763. font-size:{select:fontsize};
  764. }
  765.  
  766. .reb i {
  767. color:{color:text};
  768. }
  769.  
  770. /* --- tags --- */
  771.  
  772. .tags {
  773. margin-top:0px;
  774. transition-duration: 0.6s;
  775. text-align:justify;
  776. font-weight:400;
  777. }
  778.  
  779. .tags a {
  780. display:inline;
  781. text-transform:none;
  782. line-height:calc({select:fontsize} + 4px);
  783. padding-bottom:1px;
  784. margin:2px 4px 0px 0px;
  785. color:{color:text};
  786. border-bottom:1px solid transparent;
  787. }
  788.  
  789. .tags a:hover {
  790. border-bottom:1px solid {color:text};
  791. }
  792.  
  793. /* --- notes --- */
  794.  
  795. .pagenotes {
  796. {block:IndexPage}
  797. display: none!important;
  798. {/block:IndexPage}
  799. {block:ifnot500pxposts}
  800. width:400px;
  801. {/block:ifnot500pxposts}
  802. {block:if500pxposts}
  803. width:500px;
  804. {/block:if500pxposts}
  805. text-align:left;
  806. background-color:{color:posts};
  807. padding:20px;
  808. margin-bottom:40px;
  809. }
  810.  
  811. .pagenotes img {
  812. display:none;
  813. }
  814.  
  815. .pagenotes a {
  816. color:{color:text};
  817. font-weight:bold;
  818. }
  819.  
  820. .pagenotes ol {
  821. list-style-type:none;
  822. margin:0px;
  823. padding:0px;
  824. }
  825.  
  826. .pagenotes ol li {
  827. margin:5px;
  828. }
  829.  
  830. /* --- popup --- */
  831.  
  832. .popup {
  833. display:none;
  834. position:absolute;
  835. top:40px;
  836. right:40px;
  837. {block:ifnot500pxposts}
  838. width:470px;
  839. {/block:ifnot500pxposts}
  840. {block:if500pxposts}
  841. width:570px;
  842. {/block:if500pxposts}
  843. height:460px;
  844. }
  845.  
  846. .pop-close {
  847. position:absolute;
  848. top:215px;
  849. left:10px;
  850. width:140px;
  851. text-align:center;
  852. font-size:calc({select:fontsize} + 6px);
  853. }
  854.  
  855. .pop-close span {
  856. cursor:pointer;
  857. }
  858.  
  859. .pop-nav {
  860. position:absolute;
  861. top:20px;
  862. left:10px;
  863. width:120px;
  864. height:auto;
  865. max-height:150px;
  866. overflow:auto;
  867. padding:10px;
  868. background-color:{color:posts};
  869. text-align:center;
  870. }
  871.  
  872. .pop-nav a {
  873. display:block;
  874. margin:5px 0px;
  875. letter-spacing:1px;
  876. word-spacing:2px;
  877. }
  878.  
  879. .pop-nav a:hover {
  880. font-weight:700;
  881. }
  882.  
  883. .pop-img {
  884. position:absolute;
  885. bottom:-20px;
  886. left:-10px;
  887. width:180px;
  888. height:220px;
  889. background-image:url('{image:popup}');
  890. background-position:center center;
  891. background-repeat:no-repeat;
  892. background-size:cover;
  893. }
  894.  
  895. .pop-text {
  896. position:absolute;
  897. top:0px;
  898. right:0px;
  899. {block:ifnot500pxposts}
  900. width:240px;
  901. {/block:ifnot500pxposts}
  902. {block:if500pxposts}
  903. width:340px;
  904. {/block:if500pxposts}
  905. height:420px;
  906. padding:20px;
  907. overflow:auto;
  908. background-color:{color:posts};
  909. }
  910.  
  911. /* --- credit --- */
  912.  
  913. .credit a {
  914. position:fixed;
  915. font-size:14px;
  916. right:10px;
  917. bottom:10px;
  918. text-align:center;
  919. width:15px;
  920. height:15px;
  921. line-height:15px;
  922. color:{color:text};
  923. }
  924.  
  925.  
  926. {CustomCSS}
  927.  
  928. </style>
  929. </head>
  930. <body>
  931.  
  932. <div class="hcontrols"><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 216 216" enable-background="new 0 0 216 216" xml:space="preserve"><path d="M106.6,134c14.3,0,26-11.7,26-26s-11.7-26-26-26s-26,11.7-26,26S92.2,134,106.6,134z M106.6,94c7.7,0,14,6.3,14,14s-6.3,14-14,14s-14-6.3-14-14S98.9,94,106.6,94z M40.4,124.6l7.2,3.3c3,1.4,4.4,4.8,3.3,7.9l-2.8,7.4c-2.1,5.7-1.4,11.8,2.1,16.7c3.4,5,9,7.9,15,7.9c2.2,0,4.4-0.4,6.5-1.2l7.4-2.8c0.7-0.3,1.4-0.4,2.2-0.4c2.4,0,4.7,1.4,5.7,3.7l3.3,7.2c3,6.6,9.4,10.7,16.6,10.7s13.6-4.1,16.6-10.7l3.3-7.2c1-2.2,3.2-3.7,5.7-3.7c0.7,0,1.5,0.1,2.2,0.4l7.4,2.8c2.1,0.8,4.3,1.2,6.5,1.2c0,0,0,0,0,0c5.9,0,11.5-3,15-7.9c3.4-5,4.2-11.1,2.1-16.7l-2.8-7.4c-1.1-3.1,0.3-6.5,3.3-7.9l7.2-3.3c6.6-3,10.7-9.4,10.7-16.6s-4.1-13.6-10.7-16.6l-7.2-3.3c-3-1.4-4.4-4.8-3.3-7.9l2.8-7.4c2.1-5.7,1.4-11.8-2.1-16.7c-3.4-5-9-7.9-15-7.9c-2.2,0-4.4,0.4-6.5,1.2l-7.4,2.8c-0.7,0.3-1.4,0.4-2.2,0.4c-2.4,0-4.7-1.4-5.7-3.7l-3.3-7.2c-3-6.6-9.4-10.7-16.6-10.7S93,35.2,90,41.8l-3.3,7.2c-1,2.2-3.2,3.7-5.7,3.7c-0.7,0-1.5-0.1-2.2-0.4l-7.4-2.8c-2.1-0.8-4.3-1.2-6.5-1.2c-5.9,0-11.5,3-15,7.9c-3.4,5-4.2,11.1-2.1,16.7l2.8,7.4c1.1,3.1-0.3,6.5-3.3,7.9l-7.2,3.3c-6.6,3-10.7,9.4-10.7,16.6S33.8,121.6,40.4,124.6z M45.3,102.3l7.2-3.3c8.7-4,12.9-14.1,9.5-23l-2.8-7.4c-1-2.7,0-4.7,0.7-5.7c1.6-2.4,4.6-3.4,7.4-2.3l7.4,2.8c2.1,0.8,4.2,1.2,6.4,1.2c0,0,0,0,0,0c7.1,0,13.6-4.2,16.6-10.7l3.3-7.2c1.5-3.4,4.7-3.7,5.7-3.7s4.1,0.3,5.7,3.7l3.3,7.2c3,6.5,9.5,10.7,16.6,10.7c2.2,0,4.3-0.4,6.4-1.2l7.4-2.8c2.8-1,5.7,0,7.4,2.3c0.7,1,1.7,3,0.7,5.7l-2.8,7.4c-3.3,8.9,0.8,19,9.5,23l7.2,3.3c3.4,1.5,3.7,4.7,3.7,5.7s-0.3,4.1-3.7,5.7l-7.2,3.3c-8.7,4-12.9,14.1-9.5,23l2.8,7.4c1,2.7,0,4.7-0.7,5.7c-1.6,2.4-4.6,3.4-7.4,2.3l-7.4-2.8c-2.1-0.8-4.2-1.2-6.4-1.2c-7.1,0-13.6,4.2-16.6,10.7l-3.3,7.2c-1.5,3.4-4.7,3.7-5.7,3.7s-4.1-0.3-5.7-3.7l-3.3-7.2c-3-6.5-9.5-10.7-16.6-10.7c-2.2,0-4.3,0.4-6.4,1.2l-7.4,2.8c-2.8,1-5.7,0-7.4-2.3c-0.7-1-1.7-3-0.7-5.7l2.8-7.4c3.3-8.9-0.8-19-9.5-23l-7.2-3.3c-3.4-1.5-3.7-4.7-3.7-5.7S41.9,103.9,45.3,102.3z"/></svg></div>
  933.  
  934.  
  935. <div class="container">
  936.  
  937. <!-- sidebar -->
  938.  
  939. <div class="sidebar">
  940.  
  941. <div class="side-img"></div>
  942.  
  943. <div class="side-title">
  944. {Title}
  945. </div>
  946.  
  947. <div class="description">
  948. {Description}
  949. </div>
  950.  
  951. <div class="nav">
  952. <a href="/" title="refresh">
  953. <span class="sf sf-home"></span>
  954. </a>
  955.  
  956. <a href="/ask" title="message">
  957. <span class="sf sf-chat"></span>
  958. </a>
  959.  
  960. <a id="nav-trigger" title="more">
  961. <span class="sf sf-plus-2"></span>
  962. </a>
  963. </div>
  964.  
  965. <div class="sub-title">
  966. {text:sidebar second title}
  967. </div>
  968.  
  969. <div class="side-img-2"></div>
  970.  
  971. </div>
  972.  
  973. <!-- start of posts -->
  974.  
  975. <div class="entries">
  976.  
  977. {block:Posts}
  978. <div class="post" id="{PostID}">
  979.  
  980.  
  981. {block:Quote}
  982. <div class="txt">
  983. <div class="quote">{Quote}</div>
  984. {block:Source}
  985. <div class="source"><p>&mdash; {Source}</p></div>
  986. {/block:Source}
  987. </div>
  988. {/block:Quote}
  989.  
  990.  
  991. {block:Text}
  992. {block:Title}
  993. <div class="title">{Title}</div>
  994. {/block:Title}
  995.  
  996. {block:Body}
  997. <div class="txt">
  998. {Body}
  999.  
  1000. {block:More}
  1001. <div class="more">
  1002. <a href="{Permalink}">continue reading...</a>
  1003. </div>
  1004. {/block:More}
  1005. </div>
  1006. {/block:Body}
  1007. {/block:Text}
  1008.  
  1009. {block:Link}
  1010. <div class="title">
  1011. <a href="{URL}">{Name}</a>
  1012. </div>
  1013.  
  1014. {block:Description}
  1015. <div class="txt">
  1016. {Description}
  1017.  
  1018. {block:More}
  1019. <div class="more">
  1020. <a href="{Permalink}">continue reading...</a>
  1021. </div>
  1022. {/block:More}
  1023. </div>
  1024. {/block:Description}
  1025. {/block:Link}
  1026.  
  1027. {block:Chat}
  1028. {block:Title}
  1029. <div class="title">{Title}</div>
  1030. {/block:Title}
  1031.  
  1032. <div class="chat">
  1033. <div class="txt">
  1034. <ul>
  1035. {block:Lines}<li>{block:Label}<span class="label">{Label}</span>{/block:Label}
  1036. {Line}</li>{/block:Lines}
  1037. </ul>
  1038. </div>
  1039. </div>
  1040. {/block:Chat}
  1041.  
  1042. {block:Photo}
  1043. <div class="photo">
  1044. <img src="{PhotoURL-1280}" alt="{PhotoAlt}">
  1045. </div>
  1046. {block:Caption}
  1047. <div class="txt">
  1048. {Caption}
  1049.  
  1050. {block:More}
  1051. <div class="more">
  1052. <a href="{Permalink}">continue reading...</a>
  1053. </div>
  1054. {/block:More}
  1055. </div>
  1056. {/block:Caption}
  1057. {/block:Photo}
  1058.  
  1059. {block:Photoset}
  1060. <div class="photo-slideshow" id="photoset_{PostID}" data-layout="{PhotosetLayout}">
  1061. {block:Photos}
  1062. <div class="photo-data">
  1063. <div class="pxu-photo">
  1064. <img src="{PhotoURL-1280}" width="{PhotoWidth-1280}" height="{PhotoHeight-1280}" data-highres="{PhotoURL-HighRes}" data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}">
  1065. </div>
  1066.  
  1067. <a class="tumblr-box" rel="post-{PostID}" href="{PhotoURL-HighRes}"></a>
  1068. </div>
  1069. {/block:Photos}
  1070. </div>
  1071. {block:Caption}
  1072. <div class="txt">
  1073. {Caption}
  1074.  
  1075. {block:More}
  1076. <div class="more">
  1077. <a href="{Permalink}">continue reading...</a>
  1078. </div>
  1079. {/block:More}
  1080. </div>
  1081. {/block:Caption}
  1082. {/block:Photoset}
  1083.  
  1084. {block:Video}
  1085. <div class="photo">{Video-500}</div>
  1086. {block:Caption}<div class="txt">{Caption}</div>{/block:Caption}
  1087. {/block:Video}
  1088.  
  1089. {block:Audio}
  1090. <div class="txt">
  1091. <div class="audio">
  1092. {block:AlbumArt}
  1093. <div class="cover">
  1094. <img src="{AlbumArtURL}">
  1095. </div>
  1096. {/block:AlbumArt}
  1097.  
  1098. {block:AudioPlayer}
  1099. <div class="play">{AudioPlayerWhite}</div>
  1100. {/block:AudioPlayer}
  1101. </div>
  1102.  
  1103. <div class="au">
  1104. {block:TrackName}<b>Track:</b> {block:TrackName}{TrackName}<br>{/block:TrackName}
  1105. {block:Artist}<b>Artist:</b> {Artist}<br>{/block:Artist}
  1106. <b>Plays:</b> {FormattedPlayCount}
  1107. </div>
  1108.  
  1109. {block:Caption}{Caption}{/block:Caption}
  1110. </div>
  1111. {/block:Audio}
  1112.  
  1113. {block:Answer}
  1114. <div class="txt">
  1115. <div class="question">
  1116. <div class="asker">{Asker}</div> said, &ldquo;{Question}&rdquo;
  1117. </div>
  1118. {Answer}
  1119.  
  1120. {block:More}
  1121. <div class="more">
  1122. <a href="{Permalink}">continue reading...</a>
  1123. </div>
  1124. {/block:More}
  1125. </div>
  1126. {/block:Answer}
  1127.  
  1128.  
  1129. {block:Date}
  1130. <div style="clear:both;"></div>
  1131.  
  1132. <div class="permalink">
  1133. <a href="{Permalink}">
  1134. posted {TimeAgo}{block:NoteCount} with {NoteCountWithLabel}{/block:NoteCount}
  1135. </a>
  1136.  
  1137. <a class="reb" href="{ReblogURL}">
  1138. <span class="sf sf-reblog"></span>
  1139. </a>
  1140.  
  1141. {block:PermalinkPage}
  1142. {block:RebloggedFrom}
  1143. <br>
  1144. via: <a href="{ReblogParentURL}">{ReblogParentName}</a>
  1145. &nbsp;
  1146. {/block:RebloggedFrom}
  1147.  
  1148. {block:ContentSource}
  1149. source: <a href="{SourceURL}">{SourceTitle}</a>
  1150. {/block:ContentSource}
  1151. {/block:PermalinkPage}
  1152.  
  1153. <br>
  1154.  
  1155. {block:HasTags}
  1156. <div class="tags">
  1157. {block:Tags} <a href="{TagURL}">#{Tag}</a>{/block:Tags}
  1158. </div>
  1159. {/block:HasTags}
  1160. </div>
  1161. {/block:Date}
  1162.  
  1163.  
  1164. </div> <!-- end of .post -->
  1165.  
  1166.  
  1167. {block:PostNotes}
  1168. <div class="pagenotes">
  1169. {PostNotes}
  1170. </div>
  1171. {/block:PostNotes}
  1172.  
  1173.  
  1174. {/block:Posts}
  1175.  
  1176. {block:Pagination}
  1177. <div class="pagination">
  1178. {block:PreviousPage}
  1179. <a href="{PreviousPage}"><span class="sf sf-chevron-left"></span></a>
  1180. {/block:PreviousPage}
  1181.  
  1182. {CurrentPage} of {TotalPages}
  1183.  
  1184. {block:NextPage}
  1185. <a href="{NextPage}"><span class="sf sf-chevron-right"></span></a>
  1186. {/block:NextPage}
  1187. </div>
  1188. {/block:Pagination}
  1189.  
  1190. </div> <!-- end of .entries -->
  1191.  
  1192. <!-- popup -->
  1193.  
  1194. <div class="popup">
  1195. <div class="pop-close">
  1196. <span class="sf sf-cross-round" title="close the popup"></span>
  1197. </div>
  1198.  
  1199. <div class="pop-nav">
  1200. {block:iflink1url}<a href="{text:link 1 url}">{text:link 1 title}</a>{/block:iflink1url}
  1201. {block:iflink2url}<a href="{text:link 2 url}">{text:link 2 title}</a>{/block:iflink2url}
  1202. {block:iflink3url}<a href="{text:link 3 url}">{text:link 3 title}</a>{/block:iflink3url}
  1203. {block:iflink4url}<a href="{text:link 4 url}">{text:link 4 title}</a>{/block:iflink4url}
  1204. {block:iflink5url}<a href="{text:link 5 url}">{text:link 5 title}</a>{/block:iflink5url}
  1205. {block:iflink6url}<a href="{text:link 6 url}">{text:link 6 title}</a>{/block:iflink6url}
  1206. {block:iflink7url}<a href="{text:link 7 url}">{text:link 7 title}</a>{/block:iflink7url}
  1207. {block:iflink8url}<a href="{text:link 8 url}">{text:link 8 title}</a>{/block:iflink8url}
  1208. {block:iflink9url}<a href="{text:link 9 url}">{text:link 9 title}</a>{/block:iflink9url}
  1209. {block:iflink10url}<a href="{text:link 10 url}">{text:link 10 title}</a>{/block:iflink10url}
  1210. {block:iflink11url}<a href="{text:link 11 url}">{text:link 11 title}</a>{/block:iflink11url}
  1211. {block:iflink12url}<a href="{text:link 12 url}">{text:link 12 title}</a>{/block:iflink12url}
  1212. </div>
  1213.  
  1214. <div class="pop-img"></div>
  1215.  
  1216. <div class="pop-text">
  1217. {text:popup text}
  1218. </div>
  1219. </div>
  1220.  
  1221. </div> <!-- end of .container -->
  1222.  
  1223. <div class="credit"><a class="sf sf-boat" href="http://pirateskinned.tumblr.com/" title="coded by pirateskinned"></a></div>
  1224.  
  1225. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment