rollyjogered

theme five: terra

Nov 8th, 2018 (edited)
8,275
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.16 KB | None | 1 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!--
  5.  
  6. theme five: terra 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 odeysseus.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" content=""/>
  34. <meta name="image:sidebar icon" content=""/>
  35. <meta name="image:navigation popup" content=""/>
  36.  
  37. <meta name="color:background" content="#f6f6f6"/>
  38. <meta name="color:container" content="#f6f6f6"/>
  39. <meta name="color:posts" content="#ffffff"/>
  40. <meta name="color:text" content="#1d1d1d"/>
  41. <meta name="color:link" content="#ead5ce"/>
  42. <meta name="color:header" content="#79858d" />
  43. <meta name="color:accent one" content="#713026"/>
  44. <meta name="color:accent two" content="#e7b8a7"/>
  45. <meta name="color:accent three" content="#a8938c"/>
  46. <meta name="color:notes text" content="#ffffff"/>
  47. <meta name="color:notes background" content="#6a6260"/>
  48.  
  49. <meta name="if:background pattern" content="0"/>
  50. <meta name="if:image wrap" content="1"/>
  51. <meta name="if:500px posts" content="0"/>
  52.  
  53. <meta name="text:header title" content="header title" />
  54. <meta name="text:description title" content="description title" />
  55.  
  56. <meta name="text:navigation title" content="navigation title" />
  57. <meta name="text:navigation textbox" content="navigation textbox" />
  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.  
  80. <!-- scripts -->
  81.  
  82. <link href="https://static.tumblr.com/qudkd6d/OcDnl99gb/style.css" rel="stylesheet" type="text/css">
  83. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  84.  
  85. <!-- fonts -->
  86.  
  87. <link href="https://fonts.googleapis.com/css?family=ABeeZee:400,400i" rel="stylesheet">
  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]").style_my_tooltips({
  101. tip_follows_cursor:true,
  102. tip_delay_time:30,
  103. tip_fade_speed:300,
  104. attribute:"title"
  105. });
  106.  
  107. $("div[title]").style_my_tooltips({
  108. tip_follows_cursor:true,
  109. tip_delay_time:30,
  110. tip_fade_speed:300,
  111. attribute:"title"
  112. });
  113. });
  114. })(jQuery);
  115. </script>
  116.  
  117. <!-- photosets -->
  118.  
  119. <script src="https://static.tumblr.com/qudkd6d/Az6nkemqr/pxuphotoset.min.js"></script>
  120.  
  121. <script>
  122. $(document).ready(function(){
  123. $('.photo-slideshow').pxuPhotoset({
  124. lightbox: true,
  125. rounded: false,
  126. gutter: '1px',
  127. borderRadius: '0px',
  128. photoset: '.photo-slideshow',
  129. photoWrap: '.photo-data',
  130. photo: '.pxu-photo'
  131. });
  132. });
  133. </script>
  134.  
  135. <!-- navigation -->
  136.  
  137. <script>
  138. $(document).ready(function() {
  139. $('.nav #trigger').click(function() {
  140. $('.popup').fadeIn();
  141. });
  142.  
  143. $('.popup #close').click(function() {
  144. $('.popup').fadeOut();
  145. });
  146. });
  147. </script>
  148.  
  149. <style type="text/css">
  150.  
  151. /* --- tumblr controls styling by odeysseus
  152. http://odeysseus.tumblr.com/post/163708246967/ --- */
  153.  
  154. .tmblr-iframe {
  155. white-space:nowrap;
  156. -webkit-filter: invert(100%);
  157. -moz-filter: invert(100%);
  158. -o-filter: invert(100%);
  159. -ms-filter: invert(100%);
  160. filter: invert(100%);
  161. opacity:.2;
  162. transition: .4s ease-in-out;
  163. -webkit-transition: .4s ease-in-out;
  164. -moz-transition: .4s ease-in-out;
  165. -o-transition: .4s ease-in-out;
  166. position:fixed!important;
  167. right:-30px!important;
  168. transform:scale(0.7,0.7);
  169. }
  170.  
  171. .tmblr-iframe:hover {
  172. opacity:1;
  173. }
  174.  
  175. /* --- tooltips & scrollbars --- */
  176.  
  177. #s-m-t-tooltip {
  178. position:absolute;
  179. margin-top: 15px;
  180. z-index:9999;
  181. padding:3px 5px;
  182. background:{color:posts};
  183. color:{color:text};
  184. border-radius:3px;
  185. font-size:10px;
  186. -webkit-box-shadow: 0px 0px 5px 0px rgba({RGBcolor:posts},0.8);
  187. -moz-box-shadow: 0px 0px 5px 0px rgba({RGBcolor:posts},0.8);
  188. box-shadow: 0px 0px 5px 0px rgba({RGBcolor:posts},0.8);
  189. }
  190.  
  191. ::-webkit-scrollbar-thumb:vertical {background-color:{color:notes background};}
  192. ::-webkit-scrollbar-button:horizontal {background-color:{color:notes background};}
  193. ::-webkit-scrollbar {background-color:transparent; width:3px;}
  194.  
  195. /* --- basics --- */
  196.  
  197. body {
  198. background-color:{color:background};
  199. background-image:url('{image:background}');
  200. background-attachment:fixed;
  201. background-position:center center;
  202. {block:ifnotbackgroundpattern}
  203. background-repeat:no-repeat;
  204. background-size:cover;
  205. {/block:ifnotbackgroundpattern}
  206. {block:ifbackgroundpattern}
  207. background-repeat:repeat;
  208. background-size:auto;
  209. {/block:ifbackgroundpattern}
  210. color:{color:text};
  211. font-family: 'ABeeZee', sans-serif;
  212. font-size:10px;
  213. line-height:15px;
  214. font-weight:400;
  215. text-align:justify;
  216. margin:0;
  217. }
  218.  
  219. a {
  220. color:{color:text};
  221. text-decoration:none;
  222. -moz-transition-duration: 0.5s;
  223. -o-transition-duration: 0.5s;
  224. -webkit-transition-duration: 0.5s;
  225. transition-duration: 0.5s;
  226. }
  227.  
  228. a:hover {
  229. color:{color:text};
  230. text-decoration:none;
  231. }
  232.  
  233. p a, ul li a, ol li a {box-shadow:{color:link} 0px -5px 0px inset;}
  234. p a:hover, ul li a:hover, ol li a:hover {box-shadow:{color:link} 0px -11px 0px inset;}
  235.  
  236. img {
  237. border:none;
  238. text-decoration:none;
  239. }
  240.  
  241. b, strong, bold {
  242. color:{color:accent one};
  243. font-weight:700;
  244. }
  245.  
  246. i, em, italic {
  247. color:{color:accent two};
  248. }
  249.  
  250. u {
  251. text-decoration:none;
  252. }
  253.  
  254. s, strike {
  255. text-decoration-color:{color:accent three};
  256. }
  257.  
  258. small, sub, sup, big {
  259. font-size:10px;
  260. line-height:14px;
  261. vertical-align:baseline;
  262. }
  263.  
  264. blockquote {
  265. padding:0px 5px 0px 20px;
  266. border-left:1px solid {color:accent three};
  267. margin-left:5px;
  268. margin-right:0px;
  269. }
  270.  
  271. blockquote img {
  272. max-width:360px;
  273. height:auto;
  274. }
  275.  
  276. blockquote blockquote {
  277. margin-right:0px;
  278. }
  279.  
  280. blockquote blockquote img {
  281. max-width:350px;
  282. height:auto;
  283. }
  284.  
  285. pre {
  286. font-family: 'ABeeZee', sans-serif;
  287. font-size:10px;
  288. text-transform:uppercase;
  289. font-weight:700;
  290. padding:10px;
  291. background-color:{color:accent three};
  292. color:{color:posts};
  293. }
  294.  
  295. pre i, pre em, pre b, pre strong, pre a {
  296. color:{color:posts};
  297. }
  298.  
  299. ul {
  300. padding-left:15px;
  301. }
  302.  
  303. ul li {
  304. list-style-type:none;
  305. }
  306.  
  307. ul li:before {
  308. content: "— ";
  309. text-indent: -5px;
  310. }
  311.  
  312. ol {
  313. padding-left:25px;
  314. }
  315.  
  316. ol li {
  317. list-style-type:lower-roman;
  318. }
  319.  
  320. .firstletter, u {
  321. display:block;
  322. float:left;
  323. padding:12px 14px;
  324. background:{color:accent one};
  325. color:{color:posts};
  326. font-weight:700;
  327. text-transform:uppercase;
  328. font-size:14px;
  329. margin:0px 10px 0px 0px;
  330. }
  331.  
  332. /* --- header styles --- */
  333.  
  334. h1 {
  335. margin:0px;
  336. font-weight:bold;
  337. color:{color:text};
  338. text-align:left;
  339. }
  340.  
  341. h2 {
  342. font-weight:normal;
  343. color:{color:accent three};
  344. text-align:left;
  345. text-transform:uppercase;
  346. font-size:12px;
  347. }
  348.  
  349. h2 b, b h2, h2 i, i h2,
  350. h2 strong, strong h2, h2 em, em h2 {
  351. color:{color:accent three};
  352. }
  353.  
  354.  
  355. /* --- container --- */
  356.  
  357. .container {
  358. position:absolute;
  359. margin-top:-295px;
  360. top:50%;
  361. left:50%;
  362. {block:ifnot500pxposts}
  363. margin-left:-420px;
  364. width:840px;
  365. {/block:ifnot500pxposts}
  366. {block:if500pxposts}
  367. margin-left:-470px;
  368. width:940px;
  369. {/block:if500pxposts}
  370. height:590px;
  371. overflow:hidden;
  372. background-image:url('{image:container}');
  373. background-attachment:fixed;
  374. background-position:center center;
  375. background-repeat:no-repeat;
  376. background-size:cover;
  377. }
  378.  
  379. /* --- header --- */
  380.  
  381. .header {
  382. position:absolute;
  383. z-index:4;
  384. top:60px;
  385. left:60px;
  386. {block:ifnot500pxposts}
  387. width:720px;
  388. {/block:ifnot500pxposts}
  389. {block:if500pxposts}
  390. width:820px;
  391. {/block:if500pxposts}
  392. height:40px;
  393. background-color:{color:header};
  394. box-sizing:border-box;
  395. padding:0px 20px;
  396. color:{color:posts};
  397. }
  398.  
  399. .header-line {
  400. position:absolute;
  401. z-index:4;
  402. {block:ifnot500pxposts}
  403. width:460px;
  404. {/block:ifnot500pxposts}
  405. {block:if500pxposts}
  406. width:560px;
  407. {/block:if500pxposts}
  408. height:1px;
  409. top:20px;
  410. background-color:{color:posts};
  411. }
  412.  
  413. .header h1 {
  414. position:absolute;
  415. z-index:6;
  416. {block:ifnot500pxposts}
  417. max-width:460px;
  418. {/block:ifnot500pxposts}
  419. {block:if500pxposts}
  420. max-width:560px;
  421. {/block:if500pxposts}
  422. background-color:{color:header};
  423. font-size:14px;
  424. line-height:40px;
  425. box-sizing:border-box;
  426. padding:0px 10px 0px 0px;
  427. color:{color:posts};
  428. }
  429.  
  430. /* --- sidebar --- */
  431.  
  432. .sidebar {
  433. position:absolute;
  434. z-index:7;
  435. top:100px;
  436. right:60px;
  437. width:240px;
  438. height:430px;
  439. background:{color:posts};
  440. }
  441.  
  442. .sidebar-img {
  443. position:absolute;
  444. width:200px;
  445. height:120px;
  446. top:-20px;
  447. left:20px;
  448. background:gray;
  449. background-size:cover;
  450. background-position:center center;
  451. background-image:url('{image:sidebar}');
  452. }
  453.  
  454. .sidebar-icon {
  455. position:absolute;
  456. width:80px;
  457. height:80px;
  458. top:350px;
  459. left:0px;
  460. background:gray;
  461. background-size:cover;
  462. background-position:center center;
  463. background-image:url('{image:sidebar icon}');
  464. }
  465.  
  466. .description-title {
  467. position:absolute;
  468. top:100px;
  469. left:20px;
  470. width:200px;
  471. height:40px;
  472. text-align:center;
  473. line-height:40px;
  474. z-index:8;
  475. background-color:{color:accent three};
  476. }
  477.  
  478. .description-title a {
  479. font-size:15px;
  480. line-height:40px;
  481. font-weight:700;
  482. text-transform:uppercase;
  483. color:{color:posts};
  484. }
  485.  
  486.  
  487. .description {
  488. position:absolute;
  489. z-index:5;
  490. left:0px;
  491. top:140px;
  492. width:240px;
  493. height:210px;
  494. padding:35px;
  495. box-sizing:border-box;
  496. background-color:{color:posts};
  497. font-size:10px;
  498. line-height:20px;
  499. overflow-x:hidden;
  500. overflow-y:auto;
  501. }
  502.  
  503. .description::first-letter {
  504. display:block;
  505. float:left;
  506. padding:10px 16px;
  507. background:{color:accent one};
  508. color:{color:posts};
  509. text-transform:uppercase;
  510. font-size:14px;
  511. margin:0px 10px 0px 0px;
  512. font-weight:700;
  513. }
  514.  
  515. /* --- navigation --- */
  516.  
  517. .nav {
  518. position:absolute;
  519. left:80px;
  520. top:350px;
  521. width:160px;
  522. height:80px;
  523. text-align:center;
  524. background-color:{color:accent one};
  525. }
  526.  
  527. .nav a, .nav #trigger {
  528. display:inline-block;
  529. width:20px;
  530. height:80px;
  531. line-height:80px;
  532. text-align:center;
  533. font-size:16px;
  534. margin:0px 5px;
  535. color:{color:notes text};
  536. border-bottom:1px solid transparent;
  537. position:relative;
  538. cursor:pointer;
  539. }
  540.  
  541. .nav a .sf, .nav #trigger .sf {
  542. position:absolute;
  543. width:20px;
  544. height:20px;
  545. left:0px;
  546. }
  547.  
  548. .nav a .sf:nth-of-type(2), .nav #trigger .sf:nth-of-type(2) {
  549. display:none;
  550. -webkit-transition-duration: 0.6s;
  551. transition-duration: 0.6s;
  552. }
  553.  
  554. .nav a:hover .sf:nth-of-type(1), .nav #trigger:hover .sf:nth-of-type(1) {
  555. display:none;
  556. }
  557.  
  558. .nav a:hover .sf:nth-of-type(2), .nav #trigger:hover .sf:nth-of-type(2) {
  559. display:block;
  560. }
  561.  
  562. /* --- entries --- */
  563.  
  564. .entries {
  565. position:absolute;
  566. z-index:3;
  567. top:100px;
  568. left:60px;
  569. {block:ifnot500pxposts}
  570. width:480px;
  571. {/block:ifnot500pxposts}
  572. {block:if500pxposts}
  573. width:580px;
  574. {/block:if500pxposts}
  575. height:430px;
  576. overflow-x:hidden;
  577. overflow-y:auto;
  578. background-color:{color:background};
  579. box-sizing:border-box;
  580. padding:20px;
  581. }
  582.  
  583. /* --- posts --- */
  584.  
  585. .post {
  586. {block:ifnot500pxposts}
  587. width:400px;
  588. {/block:ifnot500pxposts}
  589. {block:if500pxposts}
  590. width:500px;
  591. {/block:if500pxposts}
  592. padding:20px;
  593. overflow:hidden;
  594. {block:IndexPage}
  595. margin-bottom:40px;
  596. {/block:IndexPage}
  597. {block:PermalinkPage}
  598. margin-bottom:20px;
  599. {/block:PermalinkPage}
  600. background-color:{color:posts};
  601. }
  602.  
  603. .post img {
  604. max-width:100%;
  605. height:auto;
  606. }
  607.  
  608. /* --- texts --- */
  609.  
  610. .title {
  611. font-weight:normal;
  612. font-size:22px;
  613. line-height:24px;
  614. color:{color:accent three};
  615. text-align:left;
  616. }
  617.  
  618. .title a {
  619. color:{color:accent three};
  620. }
  621.  
  622. .more a {
  623. font-size:18px;
  624. color:{color:accent three};
  625. }
  626.  
  627. .txt {
  628. margin-bottom:20px;
  629. }
  630.  
  631. .txt img {
  632. max-width:200px;
  633. height:auto;
  634. {block:ifimagewrap}
  635. float:left;
  636. margin-right:10px;
  637. {/block:ifimagewrap}
  638. }
  639.  
  640. .txt blockquote img {
  641. {block:ifimagewrap}
  642. float:right;
  643. margin-left:10px;
  644. margin-right:0px;
  645. {/block:ifimagewrap}
  646. }
  647.  
  648. /* --- photos --- */
  649.  
  650. .photo {
  651. margin:-20px -20px 0px -20px;
  652. }
  653.  
  654. .photo-slideshow {
  655. margin:-20px -20px 0px -20px;
  656. }
  657.  
  658. .photo-slideshow img {
  659. border-radius:0px;
  660. }
  661.  
  662. /* --- quotes --- */
  663.  
  664. .quote {
  665. text-align:left;
  666. font-size:18px;
  667. line-height:25px;
  668. }
  669.  
  670. .source {
  671. margin-top:4px;
  672. text-align:right;
  673. }
  674.  
  675.  
  676. /* --- audio --- */
  677.  
  678. .audio {
  679. float:left;
  680. width:70px;
  681. height:70px;
  682. position:relative;
  683. overflow:hidden;
  684. }
  685.  
  686. .audio:hover .play {opacity:1;width:30px;}
  687. .audio:hover img {margin-left:30px;}
  688.  
  689. .cover img {
  690. width:70px;
  691. position:absolute;
  692. transition:0.5s ease;
  693. -o-transition:0.5s ease;
  694. -moz-transition:0.5s ease;
  695. -webkit-transition:0.5s ease;
  696. }
  697.  
  698. .play {
  699. overflow:hidden;
  700. width:0px;
  701. height:30px;
  702. background:{color:posts};
  703. position:absolute;
  704. padding:20px 0px;
  705. transition:0.5s ease;
  706. -o-transition:0.5s ease;
  707. -moz-transition:0.5s ease;
  708. -webkit-transition:0.5s ease;
  709. }
  710.  
  711. .au b {
  712. color:{color:accent one};
  713. font-weight:700;
  714. margin-right:2px;
  715. }
  716.  
  717. .au {
  718. height:45px;
  719. overflow:hidden;
  720. padding:12px 10px;
  721. line-height:15px;
  722. margin-left:70px;
  723. text-align:left;
  724. }
  725.  
  726. /* --- asks --- */
  727.  
  728. .asker {
  729. margin-left:0px;
  730. margin-top:-10px;
  731. float:left;
  732. font-size:14px;
  733. line-height:14px;
  734. font-weight:700;
  735. color:{color:notes text};
  736. background-color:{color:accent two};
  737. padding:10px;
  738. width:auto;
  739. text-transform:uppercase;
  740. display:block;
  741. }
  742.  
  743. .asker a {
  744. margin:0px;
  745. padding:0px;
  746. }
  747.  
  748. .question {
  749. margin-top:10px;
  750. margin-bottom:10px;
  751. margin-left:10px;
  752. background-color:{color:accent one};
  753. color:{color:posts};
  754. padding:30px 20px 20px 20px;
  755. }
  756.  
  757. /* --- chat --- */
  758.  
  759. .chat ul {
  760. list-style-type:none;
  761. padding-left:0px;
  762. margin-bottom:20px;
  763. }
  764.  
  765. .chat ul li:before {
  766. content: none;
  767. text-indent: 0px;
  768. }
  769.  
  770. .chat ul li {
  771. margin-bottom:5px;
  772. }
  773.  
  774. .chat .label {
  775. text-transform:uppercase;
  776. font-weight:700;
  777. color:{color:accent one};
  778. }
  779.  
  780.  
  781. /* --- permalinks --- */
  782.  
  783. .permalink {
  784. font-weight:700;
  785. margin:0px -20px -20px -20px;
  786. padding:10px;
  787. font-size:8px;
  788. letter-spacing:0px;
  789. text-transform:uppercase;
  790. background-color: {color:notes background};
  791. border-radius:0px;
  792. color:{color:notes text};
  793. }
  794.  
  795. .permalink a {
  796. display:inline-block;
  797. color:{color:notes text};
  798. }
  799.  
  800. .reb {
  801. display:inline-block;
  802. vertical-align:middle;
  803. float:right;
  804. font-size:10px;
  805. }
  806.  
  807. .reb i {
  808. color:{color:notes text};
  809. }
  810.  
  811. /* --- tags --- */
  812.  
  813. .tags {
  814. margin-top:0px;
  815. -webkit-transition-duration: 0.6s;
  816. transition-duration: 0.6s;
  817. text-align:justify;
  818. font-weight:400;
  819. }
  820.  
  821. .tags a {
  822. display:inline;
  823. text-transform:none;
  824. line-height:14px;
  825. padding-bottom:1px;
  826. margin:2px 4px 0px 0px;
  827. color:{color:notes text};
  828. border-bottom:1px solid transparent;
  829. }
  830.  
  831. .tags a:hover {
  832. border-bottom:1px solid {color:notes text};
  833. }
  834.  
  835. /* --- notes --- */
  836.  
  837. .pagenotes {
  838. {block:IndexPage}
  839. display: none!important;
  840. {/block:IndexPage}
  841. {block:ifnot500pxposts}
  842. width:400px;
  843. {/block:ifnot500pxposts}
  844. {block:if500pxposts}
  845. width:500px;
  846. {/block:if500pxposts}
  847. text-align:left;
  848. background-color:{color:posts};
  849. padding:20px;
  850. }
  851.  
  852. .pagenotes img {
  853. display:none;
  854. }
  855.  
  856. .pagenotes ol {
  857. margin:0px;
  858. padding:0px;
  859. }
  860.  
  861. .pagenotes ol li {
  862. margin:5px;
  863. list-style-type:none;
  864. }
  865.  
  866. /* --- pagination --- */
  867.  
  868. .pagination {
  869. {block:ifnot500pxposts}
  870. width:440px;
  871. {/block:ifnot500pxposts}
  872. {block:if500pxposts}
  873. width:540px;
  874. {/block:if500pxposts}
  875. height:20px;
  876. left:0px!important;
  877. z-index:999;
  878. text-align:center;
  879. padding:0px!important;
  880. color:{color:notes background};
  881. }
  882.  
  883. .pagination a {
  884. color:{color:notes background};
  885. line-height:20px;
  886. }
  887.  
  888. .pagination .sf {
  889. font-size:7px;
  890. }
  891.  
  892.  
  893. /* --- popup --- */
  894.  
  895. .popup {
  896. display:none;
  897. position:absolute;
  898. z-index:25;
  899. top:-350px;
  900. {block:ifnot500pxposts}
  901. left:-560px;
  902. width:480px;
  903. {/block:ifnot500pxposts}
  904. {block:if500pxposts}
  905. left:-660px;
  906. width:580px;
  907. {/block:if500pxposts}
  908. height:430px;
  909. background-color:{color:background};
  910. }
  911.  
  912. .popup #close {
  913. position:absolute;
  914. z-index:99999;
  915. right:10px;
  916. top:10px;
  917. font-size:12px;
  918. color:{color:notes text};
  919. cursor:pointer;
  920. }
  921.  
  922. .popup-img {
  923. position:absolute;
  924. z-index:5;
  925. top:0px;
  926. left:0px;
  927. {block:ifnot500pxposts}
  928. width:480px;
  929. {/block:ifnot500pxposts}
  930. {block:if500pxposts}
  931. width:580px;
  932. {/block:if500pxposts}
  933. height:200px;
  934. background-size:cover;
  935. background-position:center center;
  936. background-image:url('{image:navigation popup}');
  937. }
  938.  
  939. .popup-links {
  940. position:absolute;
  941. z-index:10;
  942. top:180px;
  943. left:40px;
  944. {block:ifnot500pxposts}
  945. width:400px;
  946. {/block:ifnot500pxposts}
  947. {block:if500pxposts}
  948. width:500px;
  949. {/block:if500pxposts}
  950. height:40px;
  951. background-color:{color:accent one};
  952. text-align:center;
  953. }
  954.  
  955. .popup-links a {
  956. display:inline-block;
  957. width:20px;
  958. height:40px;
  959. line-height:43px;
  960. text-align:center;
  961. font-size:16px;
  962. margin:0px 5px;
  963. color:{color:notes text};
  964. border-bottom:1px solid transparent;
  965. position:relative;
  966. }
  967.  
  968. .popup-links a .sf {
  969. position:absolute;
  970. width:20px;
  971. height:20px;
  972. left:0px;
  973. }
  974.  
  975. .popup-links a .sf:nth-of-type(2) {
  976. display:none;
  977. -webkit-transition-duration: 0.6s;
  978. transition-duration: 0.6s;
  979. }
  980.  
  981. .popup-links a:hover .sf:nth-of-type(1) {
  982. display:none;
  983. }
  984.  
  985. .popup-links a:hover .sf:nth-of-type(2) {
  986. display:block;
  987. }
  988.  
  989. .popup-title {
  990. position:absolute;
  991. z-index:40;
  992. top:305px;
  993. left:-45px;
  994. width:170px;
  995. height:40px;
  996. color:{color:header};
  997. transform:rotate(-90deg);
  998. }
  999.  
  1000. .popup-line {
  1001. position:absolute;
  1002. z-index:4;
  1003. width:170px;
  1004. height:1px;
  1005. top:20px;
  1006. background-color:{color:header};
  1007. }
  1008.  
  1009. .popup-title h1 {
  1010. position:absolute;
  1011. z-index:6;
  1012. max-width:170px;
  1013. background-color:{color:container};
  1014. font-size:14px;
  1015. line-height:40px;
  1016. box-sizing:border-box;
  1017. padding:0px 10px 0px 0px;
  1018. color:{color:header};
  1019. }
  1020.  
  1021. .popup-about {
  1022. position:absolute;
  1023. z-index:6;
  1024. top:235px;
  1025. left:70px;
  1026. {block:ifnot500pxposts}
  1027. width:350px;
  1028. {/block:ifnot500pxposts}
  1029. {block:if500pxposts}
  1030. width:450px;
  1031. {/block:if500pxposts}
  1032. height:175px;
  1033. padding-right:10px;
  1034. overflow-x:hidden;
  1035. overflow-y:auto;
  1036. text-align:justify;
  1037. }
  1038.  
  1039. .popup-about::first-letter {
  1040. display:block;
  1041. float:left;
  1042. padding:12px 14px;
  1043. background:{color:accent one};
  1044. color:{color:posts};
  1045. text-transform:uppercase;
  1046. font-size:14px;
  1047. margin:0px 10px 0px 0px;
  1048. font-weight:700;
  1049. }
  1050.  
  1051. .clear {
  1052. clear:both;
  1053. }
  1054.  
  1055.  
  1056. /* --- credit --- */
  1057.  
  1058. .credit a {
  1059. position:fixed;
  1060. font-size:14px;
  1061. right:10px;
  1062. bottom:10px;
  1063. text-align:center;
  1064. width:15px;
  1065. height:15px;
  1066. padding:5px;
  1067. line-height:15px;
  1068. color:{color:posts};
  1069. background-color:{color:header};
  1070. }
  1071.  
  1072.  
  1073. {CustomCSS}
  1074.  
  1075. </style>
  1076. </head>
  1077. <body>
  1078.  
  1079.  
  1080. <div class="container">
  1081.  
  1082. <!-- start of header -->
  1083.  
  1084. <div class="header">
  1085. <div class="header-line"></div>
  1086. <h1>{text:header title}</h1>
  1087. </div>
  1088.  
  1089. <!-- start of sidebar -->
  1090.  
  1091. <div class="sidebar">
  1092. <div class="sidebar-img"></div>
  1093.  
  1094. <div class="sidebar-icon"></div>
  1095.  
  1096. <div class="description-title">
  1097. <a href="/">{text:description title}</a>
  1098. </div>
  1099.  
  1100. <div class="description">{Description}</div>
  1101.  
  1102. <!-- start of navigation -->
  1103.  
  1104. <div class="nav">
  1105. <a href="/" title="refresh">
  1106. <span class="sf sf-anchor-o"></span>
  1107. <span class="sf sf-anchor"></span>
  1108. </a>
  1109. <a href="/ask" title="message">
  1110. <span class="sf sf-poet-o"></span>
  1111. <span class="sf sf-poet"></span>
  1112. </a>
  1113. <div title="navigate" id="trigger">
  1114. <span class="sf sf-boat-o"></span>
  1115. <span class="sf sf-boat"></span>
  1116. </div>
  1117.  
  1118. <!-- start of .popup -->
  1119.  
  1120. <div class="popup">
  1121.  
  1122. <div id="close">
  1123. <span class="sf sf-cross-o"></span>
  1124. </div>
  1125.  
  1126. <div class="popup-img"></div>
  1127.  
  1128. <div class="popup-links">
  1129. {block:iflink1url}
  1130. <a href="{text:link 1 url}" title="{text:link 1 title}">
  1131. <span class="sf sf-bathtub-o"></span>
  1132. <span class="sf sf-bathtub"></span>
  1133. </a>
  1134. {/block:iflink1url}
  1135.  
  1136. {block:iflink2url}
  1137. <a href="{text:link 2 url}" title="{text:link 2 title}">
  1138. <span class="sf sf-balloons-o"></span>
  1139. <span class="sf sf-balloons"></span>
  1140. </a>
  1141. {/block:iflink2url}
  1142.  
  1143. {block:iflink3url}
  1144. <a href="{text:link 3 url}" title="{text:link 3 title}">
  1145. <span class="sf sf-ghost-o"></span>
  1146. <span class="sf sf-ghost"></span>
  1147. </a>
  1148. {/block:iflink3url}
  1149.  
  1150. {block:iflink4url}
  1151. <a href="{text:link 4 url}" title="{text:link 4 title}">
  1152. <span class="sf sf-brush-o"></span>
  1153. <span class="sf sf-brush"></span>
  1154. </a>
  1155. {/block:iflink4url}
  1156.  
  1157. {block:iflink5url}
  1158. <a href="{text:link 5 url}" title="{text:link 5 title}">
  1159. <span class="sf sf-bee-o"></span>
  1160. <span class="sf sf-bee"></span>
  1161. </a>
  1162. {/block:iflink5url}
  1163.  
  1164. {block:iflink6url}
  1165. <a href="{text:link 6 url}" title="{text:link 6 title}">
  1166. <span class="sf sf-palette-o"></span>
  1167. <span class="sf sf-palette"></span>
  1168. </a>
  1169. {/block:iflink6url}
  1170.  
  1171. {block:iflink7url}
  1172. <a href="{text:link 7 url}" title="{text:link 7 title}">
  1173. <span class="sf sf-leaf-1-o"></span>
  1174. <span class="sf sf-leaf-1"></span>
  1175. </a>
  1176. {/block:iflink7url}
  1177.  
  1178. {block:iflink8url}
  1179. <a href="{text:link 8 url}" title="{text:link 8 title}">
  1180. <span class="sf sf-rainbow-o"></span>
  1181. <span class="sf sf-rainbow"></span>
  1182. </a>
  1183. {/block:iflink8url}
  1184.  
  1185. {block:iflink9url}
  1186. <a href="{text:link 9 url}" title="{text:link 9 title}">
  1187. <span class="sf sf-cow-o"></span>
  1188. <span class="sf sf-cow"></span>
  1189. </a>
  1190. {/block:iflink9url}
  1191.  
  1192. {block:iflink10url}
  1193. <a href="{text:link 10 url}" title="{text:link 10 title}">
  1194. <span class="sf sf-star-o"></span>
  1195. <span class="sf sf-star"></span>
  1196. </a>
  1197. {/block:iflink10url}
  1198. </div>
  1199.  
  1200. <div class="popup-title">
  1201. <div class="popup-line"></div>
  1202. <h1>{text:navigation title}</h1>
  1203. </div>
  1204.  
  1205. <div class="popup-about">
  1206. {text:navigation textbox}
  1207. </div>
  1208. </div>
  1209.  
  1210. <!-- end of .popup -->
  1211. </div>
  1212.  
  1213. </div>
  1214.  
  1215. <!-- start of posts -->
  1216.  
  1217. <div class="entries">
  1218.  
  1219. {block:Posts}
  1220. <div class="post" id="{PostID}">
  1221.  
  1222.  
  1223. {block:Quote}
  1224. <div class="txt">
  1225. <div class="quote">{Quote}</div>
  1226. {block:Source}
  1227. <div class="source">&mdash; {Source}</div>
  1228. {/block:Source}
  1229. </div>
  1230. {/block:Quote}
  1231.  
  1232.  
  1233. {block:Text}
  1234. <div class="txt">
  1235. {block:Title}
  1236. <div class="title">{Title}</div>
  1237. {/block:Title}
  1238.  
  1239. {Body}
  1240.  
  1241. {block:More}
  1242. <div class="more">
  1243. <a href="{Permalink}">continue reading...</a>
  1244. </div>
  1245. {/block:More}
  1246.  
  1247. <div class="clear"></div>
  1248. </div>
  1249. {/block:Text}
  1250.  
  1251. {block:Link}
  1252. <div class="txt">
  1253. <div class="title">
  1254. <a href="{URL}">{Name}</a>
  1255. </div>
  1256.  
  1257. {block:Description}{Description}{/block:Description}
  1258. </div>
  1259. {/block:Link}
  1260.  
  1261. {block:Chat}
  1262. {block:Title}
  1263. <div class="title">{Title}</div>
  1264. {/block:Title}
  1265.  
  1266. <div class="chat">
  1267. <ul>
  1268. {block:Lines}<li>{block:Label}<span class="label">{Label}</span>{/block:Label}
  1269. {Line}</li>{/block:Lines}
  1270. </ul>
  1271. </div>
  1272. {/block:Chat}
  1273.  
  1274. {block:Photo}
  1275. <div class="photo">
  1276. <img src="{PhotoURL-500}" alt="{PhotoAlt}">
  1277. </div>
  1278. {block:Caption}
  1279. <div class="txt">{Caption}</div>
  1280.  
  1281. <div class="clear"></div>
  1282. {/block:Caption}
  1283. {/block:Photo}
  1284.  
  1285. {block:Photoset}
  1286. <div class="photo-slideshow" id="photoset_{PostID}" data-layout="{PhotosetLayout}">
  1287. {block:Photos}
  1288. <div class="photo-data">
  1289. <div class="pxu-photo">
  1290. <img src="{PhotoURL-500}" width="{PhotoWidth-500}" height="{PhotoHeight-500}" data-highres="{PhotoURL-HighRes}" data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}">
  1291. </div>
  1292.  
  1293. <a class="tumblr-box" rel="post-{PostID}" href="{PhotoURL-HighRes}"></a>
  1294. </div>
  1295. {/block:Photos}
  1296. </div>
  1297. {block:Caption}
  1298. <div class="txt">{Caption}</div>
  1299.  
  1300. <div class="clear"></div>
  1301. {/block:Caption}
  1302. {/block:Photoset}
  1303.  
  1304. {block:Video}
  1305. <div class="photo">{Video-500}</div>
  1306. {block:Caption}<div class="txt">{Caption}</div>{/block:Caption}
  1307. {/block:Video}
  1308.  
  1309. {block:Audio}
  1310. <div class="txt">
  1311. <div class="audio">
  1312. {block:AlbumArt}
  1313. <div class="cover">
  1314. <img src="{AlbumArtURL}">
  1315. </div>
  1316. {/block:AlbumArt}
  1317.  
  1318. {block:AudioPlayer}
  1319. <div class="play">{AudioPlayerWhite}</div>
  1320. {/block:AudioPlayer}
  1321. </div>
  1322.  
  1323. <div class="au">
  1324. {block:TrackName}<b>Track:</b> {block:TrackName}{TrackName}<br>{/block:TrackName}
  1325. {block:Artist}<b>Artist:</b> {Artist}<br>{/block:Artist}
  1326. <b>Plays:</b> {FormattedPlayCount}
  1327. </div>
  1328.  
  1329. {block:Caption}{Caption}{/block:Caption}
  1330. </div>
  1331. {/block:Audio}
  1332.  
  1333. {block:Answer}
  1334. <div class="txt">
  1335. <div class="asker">{Asker}</div>
  1336. <div class="question">
  1337. {Question}
  1338. </div>
  1339. {Answer}
  1340. </div>
  1341. {/block:Answer}
  1342.  
  1343.  
  1344. {block:Date}
  1345. <div class="permalink">
  1346. <a href="{Permalink}">
  1347. posted {TimeAgo}{block:NoteCount} with {NoteCountWithLabel}{/block:NoteCount}
  1348. </a>
  1349.  
  1350. <a class="reb" href="{ReblogURL}">
  1351. <span class="sf sf-reblog"></span>
  1352. </a>
  1353.  
  1354. {block:PermalinkPage}
  1355. {block:RebloggedFrom}
  1356. <br>
  1357. via: <a href="{ReblogParentURL}">{ReblogParentName}</a>
  1358. &nbsp;
  1359. {/block:RebloggedFrom}
  1360.  
  1361. {block:ContentSource}
  1362. source: <a href="{SourceURL}">{SourceTitle}</a>
  1363. {/block:ContentSource}
  1364. {/block:PermalinkPage}
  1365.  
  1366. <br>
  1367.  
  1368. {block:HasTags}
  1369. <div class="tags">
  1370. {block:Tags} <a href="{TagURL}">#{Tag}</a>{/block:Tags}
  1371. </div>
  1372. {/block:HasTags}
  1373. </div>
  1374. {/block:Date}
  1375.  
  1376.  
  1377. </div> <!-- end of .post -->
  1378.  
  1379.  
  1380. {block:PostNotes}
  1381. <div class="pagenotes">
  1382. {PostNotes}
  1383. </div>
  1384. {/block:PostNotes}
  1385.  
  1386. {/block:Posts}
  1387.  
  1388. {block:Pagination}
  1389. <div class="pagination">
  1390. {block:PreviousPage}
  1391. <a href="{PreviousPage}"><span class="sf sf-chevron-left"></span></a>
  1392. {/block:PreviousPage}
  1393.  
  1394. {CurrentPage} of {TotalPages}
  1395.  
  1396. {block:NextPage}
  1397. <a href="{NextPage}"><span class="sf sf-chevron-right"></span></a>
  1398. {/block:NextPage}
  1399. </div>
  1400. {/block:Pagination}
  1401.  
  1402. </div> <!-- end of .entries -->
  1403.  
  1404. </div> <!-- end of .container -->
  1405.  
  1406. <div class="credit"><a class="sf sf-swords" href="http://pirateskinned.tumblr.com/" title="coded by pirateskinned"></a></div>
  1407.  
  1408. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment