Advertisement
rasperries

dalliance

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