Advertisement
septims

Punpun

Feb 7th, 2015
7,094
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.23 KB | None | 0 0
  1. <!--
  2.  
  3.  
  4. septim theme
  5.  
  6.  
  7. -->
  8.  
  9. <!DOCTYPE html>
  10. <head>
  11.  
  12.  
  13. <title>{Title}</title>
  14.  
  15. <link rel="shortcut icon" href="{Favicon}">
  16. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  17. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  18. <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
  19.  
  20. <!--Default Variables-->
  21.  
  22. <meta name="color:Background" content="#f4f4f4"/>
  23. <meta name="color:Text" content="#aaaaaa"/>
  24. <meta name="color:Link" content="#000000"/>
  25. <meta name="color:Link Hover" content="#ffffff"/>
  26. <meta name="color:Title" content="#ffffff"/>
  27. <meta name="color:Blog Title" content="#000000"/>
  28. <meta name="color:Blog Title Link" content="#ffffff"/>
  29. <meta name="color:Posts and Sidebar" content="#ffffff"/>
  30. <meta name="color:Accents" content="#000000"/>
  31. <meta name="color:Accent Text" content="#ffffff"/>
  32. <meta name="color:Scrollbar" content="#000000"/>
  33. <meta name="color:Bold" content="#000000"/>
  34.  
  35. <meta name="text:Link 1 URL" content="" />
  36. <meta name="text:Link 1" content="" />
  37. <meta name="text:Link 2 URL" content="" />
  38. <meta name="text:Link 2" content="" />
  39. <meta name="text:Link 3 URL" content="" />
  40. <meta name="text:Link 3" content="" />
  41.  
  42. <meta name="text:Home Link Title" content="index"/>
  43. <meta name="text:Message Link Title" content="message"/>
  44. <meta name="text:Archive Link Title" content="archive"/>
  45.  
  46. <meta name="text:Post Spacing" content="100"/>
  47. <meta name="text:Post Width" content="350"/>
  48.  
  49. <meta name="image:Sidebar" content=""/>
  50. <meta name="image:Background" content=""/>
  51.  
  52. <meta name="if:Stretch Background" content="0"/>
  53. <meta name="if:Show Sidebar Image" content="1"/>
  54. <meta name="if:Hide Captions" content="0"/>
  55. <meta name="if:Hide Tags" content="0"/>
  56. <meta name="if:Click for Sidebar" content="0"/>
  57. <meta name="if:Infinite Scroll" content="0"/>
  58. <meta name="if:Center Content" content="1"/>
  59.  
  60. <!-- jquery for tooltips-->
  61.  
  62. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  63. <script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
  64. <script>
  65. $(function() {
  66. $(document).tooltip({
  67. track:true
  68. });
  69. });
  70. </script>
  71.  
  72. {block:ifclickforsidebar}
  73. <script>
  74. $(document).ready(function(){
  75. $('#blogt').click(function(){
  76. $('#s').slideToggle(400);
  77. });
  78. });
  79. </script>
  80. {/block:ifclickforsidebar}
  81.  
  82. <!--infinte scroll code-->
  83.  
  84. {block:indexpage}
  85. {block:ifinfinitescroll}
  86. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  87. {/block:ifinfinitescroll}
  88. {/block:indexpage}
  89.  
  90. <!--CSS customization here. -->
  91.  
  92. <style type="text/css">
  93.  
  94. /*tumblr controls*/
  95.  
  96. iframe#tumblr_controls {
  97. white-space:nowrap!important;
  98. -webkit-filter:invert(100%)!important;
  99. -moz-filter:invert(100%)!important;
  100. -ms-filter:invert(100%)!important;
  101. -o-filter:invert(100%)!important;
  102. filter:invert(100%)!important;
  103. top:5px!important;
  104. right:5px!important;
  105. position:fixed!important;
  106. opacity:.2!Important;
  107. }
  108.  
  109. /*lightbox*/
  110.  
  111. #tumblr_lightbox {
  112. background-color:rgba(246, 246, 246, .9)!important;
  113. z-index:99999!important;
  114. }
  115.  
  116. #tumblr_lightbox img {opacity:0;}
  117.  
  118. #tumblr_lightbox_caption {
  119. color:black!important;
  120. font-family:trebuchet ms!important;
  121. font-size:10px!important;
  122. font-weight:normal!important;
  123. text-shadow:none!important;
  124. }
  125.  
  126. #tumblr_lightbox_center_image, #tumblr_lightbox_left_image, #tumblr_lightbox_right_image {
  127. padding:10px!important;
  128. background:white!important;
  129. margin-top:-10px!important;
  130. margin-left:-10px!important;
  131. -moz-box-shadow:none!important;
  132. -webkit-box-shadow:none!important;
  133. box-shadow:none!important;
  134. -moz-border-radius:0px!important;
  135. -webkit-border-radius:0px!important;
  136. border-radius:0pxpx!important;
  137. opacity:1!important;
  138. }
  139.  
  140. #tumblr_lightbox_left_image, #tumblr_lightbox_right_image {opacity:.6!important;}
  141.  
  142. /*tooltip*/
  143.  
  144. .ui-tooltip {
  145. position:Absolute;
  146. z-index:9999;
  147. padding:10px;
  148. }
  149.  
  150. .ui-tooltip-content {
  151. background:{color:accents};
  152. color:{color:accent text};
  153. padding:0px 4px;
  154. font-size:8px;
  155. text-transform:uppercase;
  156. font-family:courier new;
  157. letter-spacing:2px;
  158. }
  159.  
  160. /*scrollbar*/
  161.  
  162. ::-webkit-scrollbar{
  163. height:3px;
  164. width:5px;
  165. background-color:{color:background};
  166. }
  167.  
  168. ::-webkit-scrollbar-thumb {background-color:{color:scrollbar};}
  169.  
  170. ::-webkit-scrollbar-track {background-color:{color:background};}
  171.  
  172. /*basics*/
  173.  
  174. body {
  175. background:{color:background} url('{image:background}') center center fixed repeat;
  176. {block:ifstretchbackground}
  177. -webkit-background-size: cover;
  178. -moz-background-size: cover;
  179. -o-background-size: cover;
  180. background-size: cover;
  181. {/block:ifstretchbackground}
  182. color:{color:text};
  183. font-family:trebuchet ms, sans-serif;
  184. font-size:9px;
  185. text-align:justify;
  186. letter-spacing:1px;
  187. margin:0;
  188. line-height:150%;
  189. }
  190.  
  191. blockquote {
  192. padding:0 0 0 10px;
  193. border-left:1px solid rgba({RGBcolor:text},.4);
  194. margin:10px;
  195. text-align:left;
  196. }
  197.  
  198. .caption blockquote {margin:5px 0;}
  199.  
  200. a {
  201. border-bottom:1px solid {color:link};
  202. color:{color:text};
  203. text-decoration:none;
  204. transition:0.4s;
  205. -o-transition-transition:0.4s;
  206. -webkit-transition-duration:0.4s;
  207. -moz-transition-duration:0.4s;
  208. }
  209.  
  210. a:hover {
  211. text-decoration:none;
  212. color:{color:text};
  213. border-bottom:1px solid {color:link hover};
  214. transition:0.4s;
  215. -o-transition-transition:0.4s;
  216. -webkit-transition-duration:0.4s;
  217. -moz-transition-duration:0.4s;
  218. }
  219.  
  220. img {
  221. opacity:1;
  222. border:none;
  223. text-decoration:none;
  224. }
  225.  
  226. small {
  227. font-size:9px;
  228. }
  229.  
  230. big {
  231. font-size:9px;
  232. }
  233.  
  234. b, strong {color:{color:bold};}
  235.  
  236. p {margin:5px 0;}
  237.  
  238. p:first-of-type {margin-top:0;}
  239.  
  240. p:last-of-type {margin-bottom:0;}
  241.  
  242. pre {
  243. margin:0;
  244. padding:0;
  245. font-family:trebuchet ms;
  246. font-size:9px;
  247. background:transparent;
  248. }
  249.  
  250. /*top*/
  251.  
  252. #sidebar {
  253. -webkit-animation-name: fade-in;
  254. -webkit-animation-duration: 2s;
  255. text-align:left;
  256. position:fixed;
  257. left:50px;
  258. {block:ifcentercontent}
  259. left:50%;
  260. margin-left:calc(-{text:post width}px / 2 - 200px);
  261. {/block:ifcentercontent}
  262. top:50px;
  263. z-index:5;
  264. width:150px;
  265. }
  266.  
  267. {block:ifclickforsidebar}
  268. #s {display:none;}
  269. {/block:ifclickforsidebar}
  270.  
  271. #sidebar img {
  272. display:block;
  273. width:130px;
  274. padding:10px;
  275. background:{color:posts and sidebar};
  276. margin-bottom:5px;
  277. }
  278.  
  279. #blogt {
  280. background:{color:blog title};
  281. color:{color:blog title link};
  282. display:block;
  283. font-size:8px;
  284. cursor:pointer;
  285. padding:10px;
  286. border:0;
  287. text-transform:uppercase;
  288. letter-spacing:2px;
  289. font-family:courier new;
  290. margin-bottom:5px;
  291. }
  292.  
  293. #blogt:hover {
  294. background:{color:blog title link};
  295. color:{color:blog title};
  296. }
  297.  
  298. #blogt i {margin-right:10px;}
  299.  
  300. #links {
  301. text-transform:uppercase;
  302. list-style:none;
  303. font-family:courier new;
  304. padding:10px;
  305. margin:0;
  306. background:{color:posts and sidebar};
  307. }
  308.  
  309. #links a {border:0;}
  310.  
  311. #links a:hover {color:{color:link hover};}
  312.  
  313. #links i {margin-right:10px;}
  314.  
  315. #description {
  316. padding:10px;
  317. background:{color:posts and sidebar};
  318. margin-bottom:5px;
  319. }
  320.  
  321. /*pagination*/
  322.  
  323. #pagination {
  324. margin-top:5px;
  325. font-family:courier new;
  326. text-transform:uppercase;
  327. }
  328.  
  329. #pagination i {
  330. margin-right:7px;
  331. }
  332.  
  333. #pagination a {
  334. display:inline-block;
  335. margin:0 3px;
  336. border:0;
  337. }
  338.  
  339. #pagination a:hover {color:{color:link hover};}
  340.  
  341. /*posts*/
  342.  
  343. #entries {
  344. margin:50px auto 100px auto;
  345. {block:ifnotcentercontent}
  346. margin:50px 0 100px 250px;
  347. {/block:ifnotcentercontent}
  348. position:relative;
  349. width:calc({text:Post width}px + 20px);
  350. }
  351.  
  352. .posts {
  353. -webkit-animation-name: fade-in;
  354. -webkit-animation-duration: 2s;
  355. position:relative;
  356. width:calc({text:Post width}px + 20px);
  357. {block:IndexPage}
  358. margin-bottom:{text:post spacing}px;
  359. {/block:IndexPage}
  360. {block:PermalinkPage}
  361. margin-bottom:5px;
  362. {/block:PermalinkPage}
  363. }
  364.  
  365. {block:IndexPage}
  366. .posts:last-of-type {margin-bottom:0;}
  367. {/block:IndexPage}
  368.  
  369. .hm img, .set {
  370. padding:10px;
  371. background:{color:posts and sidebar};
  372. }
  373.  
  374. .hm iframe, .hm img {
  375. display:block;
  376. width:{text:post width}px;
  377. }
  378.  
  379. .hm a {border:0!important;}
  380.  
  381. .v {
  382. display:block;
  383. padding:10px;
  384. background:{color:posts and sidebar};
  385. }
  386.  
  387. .video_big {
  388. position:relative;
  389. height:0;
  390. padding-bottom:56.25%;
  391. }
  392.  
  393. .video_big iframe {
  394. position:absolute;
  395. top:0;
  396. left:0;
  397. height:100%;
  398. width:100%;
  399. }
  400.  
  401. .pad {
  402. padding:10px;
  403. background:{color:posts and sidebar};
  404. }
  405.  
  406. .posts img, .posts li, .posts blockquote {max-width: 100%;}
  407.  
  408. .tumblr_blog {
  409. margin-bottom:5px;
  410. display:inline-block;
  411. }
  412.  
  413. #title {
  414. font-size:8px;
  415. color:{color:title};
  416. text-transform:uppercase;
  417. margin-bottom:5px;
  418. background:{color:accents};
  419. padding:10px;
  420. font-family:courier new;
  421. }
  422.  
  423. #title i {margin-right:10px;}
  424.  
  425. #title a {
  426. color:{color:title};
  427. border-bottom:0;
  428. }
  429.  
  430. #title a:hover {color:{color:link hover};}
  431.  
  432. .caption {
  433. margin-top:5px;
  434. {block:indexpage}
  435. {block:ifhidecaptions}
  436. display:none;
  437. {/block:ifhidecaptions}
  438. {/block:indexpage}
  439. }
  440.  
  441. /*quote*/
  442.  
  443. #titlequote {
  444. font-size:11px;
  445. letter-spacing:0;
  446. line-height:200%;
  447. color:{color:bold};
  448. }
  449.  
  450. #source {
  451. margin-top:5px;
  452. font-family:courier new;
  453. font-size:8px;
  454. text-transform:uppercase;
  455. }
  456.  
  457. /*audio*/
  458.  
  459. .m {
  460. overflow:hidden;
  461. display:block;
  462. width:27px;
  463. height:28px;
  464. border-width:11px 11px 11px 12px;
  465. border-color:white;
  466. border-style:solid;
  467. position:absolute;
  468. }
  469.  
  470. .player {
  471. width:25px;
  472. height:25px;
  473. background:white;
  474. border-right:2px solid white;
  475. border-bottom:3px solid white;
  476. }
  477.  
  478. .audioinfo {
  479. text-align:left;
  480. background:{color:posts and sidebar};
  481. display:block;
  482. padding:10px;
  483. line-height:15px;
  484. min-height:30px;
  485. margin-left:55px;
  486. text-transform:uppercase;
  487. font-size:8px;
  488. font-family:courier new;
  489. }
  490.  
  491. .audioinfo b {border-bottom:1px solid {color:bold};}
  492.  
  493. /*asks*/
  494.  
  495. .q {}
  496.  
  497. .q a {color:{color:bold};
  498. border:0!important;
  499. }
  500.  
  501. .q a:hover {color:{color:link hover};}
  502.  
  503. .a {margin-top:5px;}
  504.  
  505. /*chat*/
  506.  
  507. .chat ol {
  508. padding:0;
  509. margin:0;
  510. list-style:none;
  511. text-align:left;
  512. }
  513.  
  514. .line {
  515. margin-bottom:5px;
  516. padding:10px;
  517. }
  518.  
  519. .line.odd {background:{color:posts and sidebar};}
  520.  
  521. .line.even {
  522. background:{color:accents};
  523. color:{color:accent text};
  524. }
  525.  
  526. .label {
  527. text-transform:uppercase;
  528. font-size:8px;
  529. font-family:courier new;
  530. }
  531.  
  532. .even .label {color:{color:accent text};}
  533.  
  534. .odd .label {color:{color:bold};}
  535.  
  536. /*permalink and notes*/
  537.  
  538. #permalink {
  539. position:block;
  540. margin-bottom:5px;
  541. font-size:8px;
  542. text-transform:uppercase;
  543. font-family:courier new;
  544. }
  545.  
  546. #permalink a {
  547. padding:5px 10px;
  548. background:{color:accents};
  549. color:{color:accent text};
  550. border:0;
  551. display:block;
  552. }
  553.  
  554. #permalink i {font-size:6px;}
  555.  
  556. .ok {margin-right:30px;}
  557.  
  558. .re {
  559. width:5px;
  560. text-align:center;
  561. float:right;
  562. }
  563.  
  564. #perm, .tags {
  565. padding:10px;
  566. background:{color:posts and sidebar};
  567. margin-top:5px;
  568. }
  569.  
  570. .tags {
  571. word-break:break-all;
  572. {block:ifhidetags}
  573. {block:indexpage}
  574. display:none;
  575. {/block:indexpage}
  576. {/block:ifhidetags}
  577. }
  578.  
  579. .tags a {margin-right:3px;}
  580.  
  581. .pagenotes {
  582. -webkit-animation-name: fade-in;
  583. -webkit-animation-duration: 2s;
  584. text-align:left;
  585. padding:10px;
  586. width:{text:post width};
  587. background:{color:posts and sidebar};
  588. font-size:8px;
  589. font-family:courier new;
  590. text-transform:uppercase;
  591. max-height:300px;
  592. overflow-y:auto;
  593. }
  594.  
  595. .pagenotes::-webkit-scrollbar{
  596. width:2px;
  597. background-color:{color:posts and sidebar};
  598. }
  599.  
  600. .pagenotes::-webkit-scrollbar-thumb {background-color:{color:scrollbar};}
  601.  
  602. .pagenotes::-webkit-scrollbar-track {background-color:{color:posts and sidebar};}
  603.  
  604. .pagenotes ol {
  605. margin:0!important;
  606. padding:0!important;
  607. list-style:none;
  608. }
  609.  
  610. .pagenotes img {display:none!important;}
  611.  
  612. .pagenotes li {
  613. list-style-type:none;
  614. padding:0 0 5px 0;
  615. margin:0;
  616. text-align:left;
  617. }
  618.  
  619. .theme {
  620. position:fixed;
  621. bottom:15px;
  622. right:15px;
  623. width:15px;
  624. text-align:center;
  625. font-size:8px;
  626. color:{color:bold};
  627. border:0;
  628. }
  629.  
  630. .theme:hover {border:0;}
  631.  
  632. {CustomCSS}
  633.  
  634. @-webkit-keyframes fade-in {
  635. 0% { opacity: 0; }
  636. 50% { opacity: 0; }
  637. 100% { opacity: 1; }
  638.  
  639. </style>
  640.  
  641.  
  642.  
  643. </head>
  644.  
  645. <body>
  646.  
  647.  
  648.  
  649. <div id="sidebar">
  650. <a {block:ifnotclickforsidebar}href="/"{/block:ifnotclickforsidebar} id="blogt"><i class="fa fa-times"></i>{Title}</a>
  651. <div id="s">
  652. {block:ifshowsidebarimage}<img src="{image:sidebar}"/>{/block:ifshowsidebarimage}
  653. <div id="description">{Description}</div>
  654. <ul id="links">
  655. <li><i class="fa fa-angle-double-right"></i><a href="/">{text:home link title}</a></li><li><i class="fa fa-angle-double-right"></i><a href="/ask">{text:message link title}</a></li><li><i class="fa fa-angle-double-right"></i><a href="/archive">{text:archive link title}</a></li>{block:ifLink1}<li><i class="fa fa-angle-double-right"></i><a href="{text:Link 1 URL}">{text:Link 1}</a></li>{/block:ifLink1}{block:ifLink2}<li><i class="fa fa-angle-double-right"></i><a href="{text:Link 2 URL}">{text:Link 2}</a></li>{/block:ifLink2}{block:ifLink3}<li><i class="fa fa-angle-double-right"></i><a href="{text:Link 3 URL}">{text:Link 3}</a></li>{/block:ifLink3}
  656. </ul>
  657. </div>
  658. {block:ifnotinfinitescroll}
  659. {block:Pagination}
  660. <div id="pagination" class="pad">
  661. <i class="fa fa-angle-double-right"></i>{block:PreviousPage}<a href="{PreviousPage}">less</a> / {/block:PreviousPage}{block:NextPage}<a href="{NextPage}">more</a>
  662. {/block:NextPage}
  663. </div>
  664. {/block:Pagination}
  665. {/block:ifnotinfinitescroll}
  666. </div>
  667.  
  668.  
  669.  
  670.  
  671. <div id="entries">
  672.  
  673. <div class="autopagerize_page_element">
  674.  
  675. {block:Posts}
  676.  
  677. <div class="posts">
  678.  
  679. {block:Date}{block:indexpage}
  680. <div id="permalink">
  681. <a href="{ReblogURL}" target="_blank" class="re" title="reblog"><i class="fa fa-times"></i></a><a href="{permalink}" title="{timeago}" class="ok">{shortmonth} {dayofmonth}{dayofmonthsuffix}{block:notecount}({notecount}){/block:notecount}</a>
  682. </div>{/block:indexpage}
  683. {/block:Date}
  684.  
  685. {block:Quote}
  686. <div id="titlequote" class="pad">“{Quote}”</div>
  687. {block:Source}<div id="source" class="pad">{Source}</div>{/block:Source}
  688. {/block:Quote}
  689.  
  690.  
  691.  
  692. {block:Text}
  693. {block:Title}<div id="title"><i class="fa fa-angle-double-right"></i>{Title}</div>{/block:Title}
  694. <div class="pad">{Body}</div>
  695. {/block:Text}
  696.  
  697. {block:Link}
  698. <div id="title"><i class="fa fa-angle-double-right"></i><a href="{URL}">{Name}</a></div>
  699. {block:Description}<div class="pad">{Description}</div>{/block:Description}
  700. {/block:Link}
  701.  
  702. {block:Chat}
  703. {block:Title}<div id="title"><i class="fa fa-angle-double-right"></i>{Title}</div>{/block:Title}
  704. <div class="chat">
  705. <ol>{block:Lines}
  706. <li class="line {Alt}">
  707. {block:Label}
  708. <span class="label">
  709. {Label}</span>
  710. {/block:Label}{Line}</li>
  711. {/block:Lines}
  712. </ol></div>
  713. {/block:Chat}
  714.  
  715. {block:Photo}<div class="hm">
  716. <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"/>
  717. </div>{/block:Photo}
  718.  
  719. {block:Photoset}<div class="hm">
  720. <div class="set">{photoset}</div>
  721. </div>
  722. {/block:Photoset}
  723.  
  724. {block:Video}<div class="v">
  725. <div class="video_big">{VideoEmbed-700}</div></div>
  726. {/block:Video}
  727.  
  728. {block:Audio}
  729. <div class="m">
  730. <div class="player">{AudioPlayerWhite}</div>
  731. </div>
  732. <div class="audioinfo">
  733. {block:TrackName}<b>{TrackName}</b>{/block:TrackName}{block:Artist}<br>by {Artist}{/block:Artist}
  734. </div>
  735. {/block:Audio}
  736.  
  737. {block:Answer}
  738. <div class="q pad">{Asker} said: {Question}</div>
  739. <div class="a pad">{Answer}</div>
  740. {/block:Answer}
  741.  
  742. {block:Caption}<div class="caption pad">{Caption}</div>{/block:Caption}
  743.  
  744. {block:Date}{block:permalinkpage}
  745. <div id="perm">
  746. Posted on <a href="{permalink}" title="{timeago}">{shortmonth} {dayofmonth}{dayofmonthsuffix}</a>{block:notecount} with <a href="{permalink}">{notecountwithlabel}</a>{/block:notecount}
  747. {block:RebloggedFrom}<br>Via: <a href="{ReblogParentURL}">{ReblogParentName}</a>{block:ContentSource} &mdash; source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:ContentSource}{/block:RebloggedFrom}
  748. </div>{block:permalinkpage}
  749. {/block:Date}
  750.  
  751. {block:HasTags}<div class="tags">Tags: {block:Tags}<a href="{TagUrl}">{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  752.  
  753. </div>
  754.  
  755.  
  756. {block:PostNotes}
  757. <div class="pagenotes" class="pad">
  758. {PostNotes}
  759. </div>
  760. {/block:PostNotes}
  761.  
  762.  
  763. {/block:Posts}
  764.  
  765. <a class="theme" href="http://farahmir.tumblr.com" target="_blank" title="septim">&copy;</a>
  766. </div>
  767. </div>
  768.  
  769. {block:ContentSource}
  770. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  771. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  772. {/block:SourceLogo}
  773. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  774. {/block:ContentSource}
  775.  
  776. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement