Advertisement
septims

Ink

Feb 22nd, 2014
6,873
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.16 KB | None | 0 0
  1. <!--
  2.  
  3. theme by septim
  4.  
  5. ╔╔ ══ ══ Rules:
  6. ║║ -do not use as base
  7. ╚╚ ══ ╗╗ -do not steal bits of code
  8. ║║ -do not remove credits
  9. ══ ══ ╝╝
  10.  
  11.  
  12. -->
  13.  
  14.  
  15. <!DOCTYPE html>
  16. <head>
  17.  
  18. <title>{Title}</title>
  19.  
  20. <link rel="shortcut icon" href="{Favicon}">
  21. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  22. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  23.  
  24. <!--Default Variables-->
  25.  
  26. <meta name="color:background" content="#ffffff"/>
  27. <meta name="color:text" content="#7d7d7d"/>
  28. <meta name="color:link" content="#7d7d7d"/>
  29. <meta name="color:title"content="#000000"/>
  30. <meta name="color:blog title"content="#000000"/>
  31. <meta name="color:scrollbar" content="#d5d5d5" />
  32. <meta name="color:link hover" content="#ffffff"/>
  33. <meta name="color:borders" content="#eeeeee"/>
  34. <meta name="color:bar" content="#000000"/>
  35.  
  36. <meta name="image:sidebar image" content=""/>
  37.  
  38. <meta name="text:Link 1 URL" content="" />
  39. <meta name="text:Link 1" content="" />
  40. <meta name="text:Link 2 URL" content="" />
  41. <meta name="text:Link 2" content="" />
  42. <meta name="text:Link 3 URL" content="" />
  43. <meta name="text:Link 3" content="" />
  44.  
  45. <meta name="if:show captions" content="1"/>
  46. <meta name="if:show sidebar image" content="1"/>
  47.  
  48. <!--jquery-->
  49. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  50. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  51. <script>
  52.  
  53. (function($){
  54.  
  55. $(document).ready(function(){
  56.  
  57. $("a[title]").style_my_tooltips({
  58.  
  59. tip_follows_cursor:true,
  60.  
  61. tip_delay_time:30,
  62.  
  63. tip_fade_speed:300,
  64.  
  65. attribute:"title"
  66.  
  67. });
  68.  
  69. });
  70.  
  71. })(jQuery);
  72.  
  73. </script>
  74.  
  75. <script>
  76. $(document).ready(function(){
  77. $("#bar").click(function(){
  78. $("#standardlinks").slideToggle("slow");
  79. });
  80. });
  81. </script>
  82.  
  83. <style type="text/css">
  84. html, body, ul, ol, li, form, fieldset, legend{
  85. margin: 0;
  86. padding: 0;
  87. }
  88. #text {position:Fixed;
  89. right:15px;
  90. z-index:5;
  91. font-size:14px;
  92. bottom:15px}
  93. #text a {text-decoration:none;}
  94.  
  95. #s-m-t-tooltip{
  96. font-size:8px;
  97. position:absolute;
  98. margin-top: 15px;
  99. letter-spacing:1px;
  100. z-index:9999;
  101. font-family:serif;
  102. background:{color:background};
  103. border:1px solid {color:borders};
  104. text-transform:uppercase;
  105. padding:2px 3px 2px 3px;
  106. }
  107.  
  108. /*scrollbar*/
  109. ::-webkit-scrollbar{height: 5px;
  110. width: 5px;
  111. -webkit-border-radius: 0px;
  112. background-color:{color:background};}
  113. ::-webkit-scrollbar-thumb{background-color:{color:scrollbar};}
  114. ::-webkit-scrollbar-track{background-color:{color:background};}
  115.  
  116. body {
  117. background:{color:background};
  118. color:{color:text};
  119. font-family:helvetica neue;
  120. font-size:10px;
  121. text-align:justify;
  122. margin:0;
  123. line-height:14px;}
  124.  
  125. a {
  126. color:{color:link};
  127. text-decoration:none;
  128. -webkit-transition:all 0.6s;
  129. -moz-transition:all 0.6s;
  130. -ms-transition:all 0.6s;
  131. -o-transition:all 0.6s;
  132. transition:all 0.6s; }
  133. a:hover {
  134. color:{color:link hover};
  135. -webkit-transition:all 0.6s;
  136. -moz-transition:all 0.6s;
  137. -ms-transition:all 0.6s;
  138. -o-transition:all 0.6s;
  139. transition:all 0.6s; }
  140.  
  141. /*main structure*/
  142. .caption blockquote {
  143. margin:0;
  144. padding:0 10px;
  145. border-right:1px solid {color:borders};
  146. border-left:0px;
  147. text-align:right;
  148. }
  149. blockquote {border-left:1px solid {color:borders};
  150. margin:5px 10px;
  151. padding:5px 10px;}
  152.  
  153. p {margin:2px 0;}
  154.  
  155. /*header*/
  156. #headers {
  157. width:150px;
  158. position:fixed;
  159. bottom:300px;
  160. margin-left:-250px;
  161. text-align:left}
  162.  
  163.  
  164. #blogt {font-size:20px;
  165. font-weight:bold;
  166. line-height:20px;
  167. letter-spacing:-1px;
  168. margin-bottom:5px;
  169. text-align:center;
  170. margin-bottom:15px;
  171. text-transform:lowercase;}
  172.  
  173. #blogt a {color:{color:blog title};
  174. }
  175. #bar {padding:5px 10px;
  176. border:1px solid {color:borders};
  177. cursor:help;
  178. font-size:8px;
  179. letter-spacing:1px;
  180. text-transform:uppercase;
  181. font-weight:bold;
  182. color:{color:blog title};
  183. background:{color:background};
  184. margin-top:10px;}
  185.  
  186. #standardlinks {
  187. width:148px;
  188. background:{color:background};
  189. display:none;
  190. position:absolute;
  191. font-size:8px;
  192. letter-spacing:1px;
  193. text-transform:uppercase;
  194. font-weight:bold;
  195. border:1px solid {color:borders};
  196. border-top:0px;
  197. }
  198. #standardlinks a {padding:5px 10px;
  199. border-bottom:1px solid {color:borders};
  200. display:block;}
  201. #standardlinks a:last-of-type {border-bottom:0px;}
  202. #standardlinks a:hover {background:{color:borders};
  203. color:{color:link};}
  204.  
  205. #bar:after {position:absolute;
  206. content:'▾';
  207. font-size:14px;
  208. right:10px;
  209. margin-top:-2px;}
  210.  
  211. #description {margin-top:10px;
  212. font-size:11px;}
  213.  
  214. #imag img {display:block;
  215. width:140px;
  216. padding:4px;
  217. border:1px solid {color:borders};}
  218.  
  219. #barr {left:0;
  220. position:fixed;
  221. top:0;
  222. width:15px;
  223. background:{color:bar};
  224. height:100%;
  225. border-right:1px solid {color:bar};}
  226.  
  227. /*theme*/
  228. #title {font-size:14px;
  229. border-bottom:1px solid {color:borders};
  230. padding-bottom:5px;
  231. text-transform:lowercase;
  232. margin:25px 0 5px 0;
  233. text-align:right;
  234. letter-spacing:-1px;
  235. font-weight:bold;
  236. color:{color:title};}
  237. #title a {color:{color:title};}
  238.  
  239. /*pagination*/
  240. #pagination {
  241. border-top:1px solid {color:borders};
  242. padding-top:10px;
  243. text-align:right;
  244. text-transform:lowercase;
  245. font-weight:bold;
  246. font-size:12px;
  247. margin-bottom:100px;}
  248. #pagination a {
  249. display:inline-block;
  250. text-decoration:none;
  251. }
  252.  
  253.  
  254. pre {width:400px!important;
  255. overflow-x:scroll;
  256. word-break:break-all;
  257. }
  258.  
  259. .con {left:50%;
  260. margin-left:-205px;
  261. position:absolute;
  262. top:0;
  263. }
  264. #ent {margin-top:100px;
  265. width:410px;}
  266. #posts {
  267. width:410px;
  268. {block:IndexPage}
  269. margin-bottom:100px;
  270. {/block:IndexPage}
  271. {block:PermalinkPage}
  272. margin-bottom:25px;
  273. {/block:PermalinkPage}
  274. }
  275.  
  276. #posts img {
  277. max-width:400px;
  278. }
  279. #posts ul {margin:10px 0 10px 25px}
  280. #titlequote{
  281. font-size:14px;
  282. text-align:right;
  283. font-weight:bold;
  284. color:{color:title};
  285. }
  286.  
  287.  
  288. #source {text-align:right;
  289. padding-top:10px;}
  290.  
  291. #posts li, #posts blockquote {max-width: 100%;}
  292. .caption img {max-width:400px;}
  293. .caption {
  294. {block:ifnotshowcaptions}
  295. {block:indexpage}
  296. display:none;
  297. {/block:indexpage}
  298. {/block:ifnotshowcaptions}
  299. text-align:right;
  300. margin:10px 0;
  301. padding:0;
  302. width:100%;
  303. text-transform:none;
  304. }
  305.  
  306. .photo img {padding:4px;
  307. border:1px solid {color:borders};
  308. display:block;}
  309. .photoset {padding:4px;
  310. border:1px solid {color:borders};
  311. display:block;}
  312.  
  313. /*asks*/
  314. .q {
  315. padding:5px;
  316. text-align:center;
  317. font-style:italic;
  318. text-transform:none;
  319. }
  320. .as {letter-spacing:3px;
  321. text-align:Center;
  322. margin-top:25px;
  323. text-transform:uppercase;
  324. font-size:8px;}
  325. .as a {}
  326. .a {
  327. margin-top:30px;}
  328.  
  329. .a ol, li, blockquote {text-align:left;}
  330.  
  331. .chat ol {
  332. padding:0;
  333. line-height:180%;
  334. list-style:none;
  335. }
  336.  
  337. .line.odd {
  338. padding:10px;
  339. }
  340.  
  341. .line.even {
  342. padding:10px;
  343. }
  344.  
  345. .label {font-weight:bold;
  346. padding-right:1px;
  347. letter-spacing:1px;
  348. text-transform:uppercase;
  349. color:{color:title};
  350. }
  351.  
  352. .tumblr_audio_player {width:400px;
  353. height:50px;}
  354. .player {width:133px;
  355. overflow:hidden;
  356. height:50px;
  357. margin-top:0;
  358. background:black;
  359. padding-left:10px;
  360. }
  361. .audioim:hover {margin-top:-50px;
  362. -webkit-transition:all 0.6s;
  363. -moz-transition:all 0.6s;
  364. -ms-transition:all 0.6s;
  365. -o-transition:all 0.6s;
  366. transition:all 0.6s;}
  367.  
  368. .audio {height:143px;
  369. overflow:hidden;}
  370. .audio_info {
  371. height:143px;
  372. text-align:right;
  373. width:257px;
  374. font-weight:bold;
  375. }
  376. .track {font-size:14px;
  377. color:{color:title};
  378. line-height:16px;
  379. font-style:normal;
  380. border:1px solid {color:borders};
  381. padding:5px 10px;
  382. background:{color:borders};
  383. margin-bottom:10px;}
  384.  
  385. .audioim {float:right;
  386. height:200px;
  387. overflow:hidden;
  388. -webkit-transition:all 0.6s;
  389. -moz-transition:all 0.6s;
  390. -ms-transition:all 0.6s;
  391. -o-transition:all 0.6s;
  392. transition:all 0.6s;}
  393. .audioim img {width:143px;
  394. display:block;
  395. height:143px;}
  396.  
  397. .artist {font-size:8px;
  398. text-transform:uppercase;
  399. letter-spacing:2px;
  400. line-height:16px;
  401. font-style:normal;
  402. border:1px solid {color:borders};
  403. padding:5px 10px;
  404. margin-bottom:10px;}
  405.  
  406.  
  407. /*permalink and notes*/
  408.  
  409.  
  410. #permalink {
  411. text-align:left;
  412. position:absolute;
  413. width:150px;
  414. margin-left:425px;
  415. margin-bottom:25px;
  416. text-transform:uppercase;
  417. font-family:serif;
  418. letter-spacing:1px;
  419. font-size:8px;
  420. opacity:0;
  421. -webkit-transition:all 0.6s;
  422. -moz-transition:all 0.6s;
  423. -ms-transition:all 0.6s;
  424. -o-transition:all 0.6s;
  425. transition:all 0.6s;}
  426.  
  427. #posts:hover #permalink {
  428. opacity:1;
  429. -webkit-transition:all 0.6s;
  430. -moz-transition:all 0.6s;
  431. -ms-transition:all 0.6s;
  432. -o-transition:all 0.6s;
  433. transition:all 0.6s;}
  434.  
  435.  
  436. #permalink a {margin-right:5px;
  437. }
  438.  
  439. .tags {border-top:1px solid {color:borders};
  440. padding-top:2px;
  441. margin-top:4px;
  442. font-size:10px;
  443. letter-spacing:0;
  444. font-family:helvetica neue;
  445. word-break:break-all;
  446. }
  447.  
  448. .tags a{
  449. text-transform:none;}
  450. .tags a:hover {text-transform:uppercase}
  451.  
  452. .pagenotes {
  453. {block:IndexPage}
  454. display: none!important;
  455. {/block:IndexPage}
  456. {block:PermalinkPage}
  457. width:410px;
  458. {/block:PermalinkPage}
  459. margin-left:auto;
  460. margin-top:25px;
  461. margin-right:auto;
  462. }
  463. .pagenotes img {
  464. display:none!important;}
  465. .pagenotes li {
  466. list-style-type:none;
  467. padding:5px 0px;
  468. text-align:left;
  469. font-size:9px;
  470. text-transform:uppercase;
  471. }
  472. .t {
  473. font-size:11px;
  474. font-weight:bold;
  475. letter-spacing:1px;
  476. color:{color:title};
  477. text-transform:uppercase;}
  478.  
  479.  
  480. </style>
  481.  
  482.  
  483.  
  484. <body>
  485.  
  486. <div id="text"><a href="http://farahmir.tumblr.com" target="_blank" title="septim">☢</a></div>
  487.  
  488. <div id="barr"></div>
  489. <div class="con">
  490.  
  491. <div id="headers">
  492. <div id="blogt"><a href="/">{Title}</a></div>
  493. {block:ifshowsidebarimage}
  494. <div id="imag"><a href="/"><img src="{image:sidebar image}"></a></div>
  495. {/block:ifshowsidebarimage}
  496. <div id="bar">navigate</div>
  497. <div id="standardlinks">
  498. <a href="/">home</a>
  499. <a href="/ask">ask</a>
  500. {block:ifLink1}<a href="{text:Link 1 URL}">{text:Link 1}</a>{/block:ifLink1}
  501. {block:ifLink2}<a href="{text:Link 2 URL}">{text:Link 2}</a>{/block:ifLink2}
  502. {block:ifLink3}<a href="{text:Link 3 URL}">{text:Link 3}</a>{/block:ifLink3}
  503. </div>
  504. <div id="description">{Description}</div>
  505. </div>
  506.  
  507. <div id="ent">
  508. {block:Posts}
  509. <div id="posts" >
  510.  
  511.  
  512. {block:Date}
  513. <div id="permalink">
  514. <a href="{Permalink}">{month} {dayofmonth}{dayofmonthsuffix}, {year}</a>{block:NoteCount}<br><a href="{Permalink}">{NoteCountwithlabel}</a>{/block:NoteCount}{block:RebloggedFrom}<br><a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{block:ContentSource}<a href="{ReblogRootURL}" title="{ReblogRootName}">& source</a>{/block:ContentSource}{/block:RebloggedFrom}
  515. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">#{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  516. </div>
  517. {/block:Date}
  518.  
  519.  
  520. {block:Quote}
  521.  
  522.  
  523. <div id="titlequote">“{Quote}”</div>
  524. {block:Source}<div id="source">{Source}</div>{/block:Source}
  525. {/block:Quote}
  526.  
  527.  
  528.  
  529. {block:Text}
  530.  
  531. {block:Title}
  532. <div id="title">{Title}</div>{/block:Title}
  533. <div class="te">{Body}</div>
  534.  
  535.  
  536. {/block:Text}
  537.  
  538. {block:Link}
  539.  
  540. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  541.  
  542. {/block:Link}
  543.  
  544. {block:Chat}
  545. {block:Title}
  546. <h1>{Title}</h1>
  547. {/block:Title}
  548. <div class="chat">
  549. <ol>{block:Lines}
  550. <li class="line {Alt}">
  551. {block:Label}
  552. <span class="label">
  553. {Label}</span>
  554. {/block:Label}{Line}</li>
  555. {/block:Lines}
  556. </ol></div>
  557. {/block:Chat}
  558.  
  559. {block:Photo}
  560. <div class="photo">
  561. <a href="{Permalink}"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"/></a>
  562. </div>
  563. {/block:Photo}
  564.  
  565. {block:Photoset}
  566. <div class="photoset">
  567. <div style="margin-left:-4px;margin-top:-4px;margin-bottom:-4px">
  568. {Photoset-400}
  569. </div>
  570. </div>
  571. {/block:Photoset}
  572.  
  573.  
  574.  
  575. {block:Answer}
  576. <div class="as">{Asker} said: </div>
  577. <div class="q">
  578. {Question}</div>
  579. <div class="a">{Answer}</div>
  580.  
  581. {/block:Answer}
  582.  
  583. {block:Video}
  584. <div class="photoset">
  585. <div style="margin-left:-4px;margin-top:-4px;margin-bottom:-4px">
  586. {Video-400}
  587. </div>
  588. {/block:Video}
  589.  
  590. {block:Audio}
  591. <div class="audio">
  592. {block:AudioPlayer}
  593. <div class="audioim">
  594. {block:AlbumArt}
  595. <img src="{AlbumArtURL}">
  596. {/block:AlbumArt}
  597. <div class="player">{AudioPlayerBlack}</div>
  598. </div>
  599. {/block:AudioPlayer}
  600. <div class="audio_info">{block:TrackName}<div class="track">{TrackName}</div>{/block:TrackName}
  601. {block:Artist}<div class="artist">{Artist}</div>{/block:Artist}
  602. {block:album}<div class="artist">{album}</div>{/block:album}<div class="artist">{playcountwithlabel}</div></div>
  603. </div>
  604. {/block:Audio}
  605.  
  606. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  607.  
  608.  
  609.  
  610.  
  611. </div>
  612.  
  613.  
  614. {block:PostNotes}
  615. <div class="pagenotes">
  616. <div class="t">Notes</div>
  617. {PostNotes}
  618. </div>
  619. {/block:PostNotes}
  620.  
  621.  
  622. {/block:Posts}
  623.  
  624. </div>
  625.  
  626.  
  627. {block:Pagination}
  628. <div id="pagination">
  629. {block:PreviousPage}
  630. <a href="{PreviousPage}" style="float:left">&larr; previous page</a>
  631. {/block:PreviousPage}
  632.  
  633. {block:NextPage}
  634. <a href="{NextPage}">next page &rarr;</a>
  635. {/block:NextPage}
  636. </div>
  637. {/block:Pagination}
  638.  
  639.  
  640.  
  641. </div>
  642.  
  643. </div>
  644.  
  645.  
  646.  
  647.  
  648.  
  649. {block:ContentSource}
  650. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  651. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  652. {/block:SourceLogo}
  653. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  654. {/block:ContentSource}
  655. </body>
  656.  
  657. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement