Advertisement
rasperries

lp maybe i just wanna be yours

Jan 17th, 2014
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.13 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 dotted #bbb;
  129. margin-left:10px;
  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:times new roman;
  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:14px;
  218. margin-left:15px;
  219. padding-right:15px;
  220. font-weight:bold;
  221. float:left;
  222. color:{color:blog title};
  223. }
  224.  
  225.  
  226.  
  227. .standardlinks{
  228. text-transform:lowercase;
  229.  
  230. }
  231. .standardlinks a {margin-left:15px}
  232.  
  233.  
  234.  
  235.  
  236. #description {margin-top:20px;
  237. padding:15px;
  238. font-style:italic;
  239. text-align:justify;
  240. background:{color:Accents};
  241. }
  242.  
  243. /*pagination*/
  244. #pagination {
  245. text-align:center;
  246. margin-top:50px;
  247. font-size:9px;
  248. letter-spacing:1px;
  249. text-transform:uppercase;
  250. }
  251.  
  252.  
  253. #pagination a {
  254. display:inline-block;
  255. margin:0 10px;
  256.  
  257. }
  258.  
  259.  
  260.  
  261.  
  262.  
  263. /*container*/
  264. #con {
  265. left:50%;
  266. margin-left:-215px;
  267. position:absolute;
  268. }
  269.  
  270.  
  271.  
  272. /*posts*/
  273.  
  274. #entries {
  275. margin-top:25px;
  276. width:430px;
  277. }
  278.  
  279.  
  280.  
  281. #posts {
  282. width:400px;
  283. margin-bottom:30px;
  284. padding:15px 15px 50px 15px;
  285. border-bottom:1px solid {color:post separator};
  286. }
  287. #posts img {
  288. max-width:400px;
  289. display:block;
  290.  
  291. .photo img {width:400px;
  292. -webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.6);
  293. -moz-box-shadow: 0px 2px 8px rgba(0,0,0,0.6);
  294. box-shadow: 0px 2px 8px rgba(0,0,0,0.6);}
  295. }
  296.  
  297.  
  298. #buttt img {width:400px;}
  299.  
  300. #titlequote{
  301. }
  302.  
  303. #source {
  304. margin-top:5px;
  305. text-align:right;}
  306.  
  307. #posts img, #posts li, #posts blockquote {max-width: 100%;}
  308. .caption img{
  309. max-width:380px;
  310. }
  311. .caption {text-transform:none;
  312. margin-top:15px;
  313. padding:5px 15px;
  314. border-left: 1px solid {color:post separator};
  315. background:{color:Accents};
  316. {block:IfHideCaptions}
  317. {block:IndexPage}
  318. display:none;
  319. {/block:IndexPage}
  320. {/block:IfHideCaptions}
  321. }
  322.  
  323.  
  324.  
  325. /*audio*/
  326.  
  327. .player {
  328. width:25px;
  329. height:25px;
  330. overflow:hidden;
  331. margin-left:12px;
  332. padding:5px;
  333. position:absolute;
  334. margin-top:12px;
  335. background:white;
  336. z-index:2;}
  337.  
  338. .audioinfo {
  339. text-align:center;
  340. z-index:2;
  341. position:absolute;
  342. padding-top:12px;
  343. text-transform:;
  344. width:330px;
  345. font-size:10px;
  346. margin-left:50px;
  347. }
  348.  
  349.  
  350. .playerback {height:58px;
  351. background-color:{color:Accents};
  352. }
  353.  
  354. /*asks*/
  355. .q {
  356. padding:15px;
  357. font-style:italic;
  358. background:{color:Accents};
  359. }
  360. .as {
  361. font-weight:bold;
  362. text-transform:lowercase;}
  363.  
  364. .a {
  365. margin-top:25px;}
  366.  
  367.  
  368.  
  369.  
  370.  
  371. .chat ol {
  372. padding:0;
  373. line-height:180%;
  374. list-style:none;
  375. }
  376.  
  377. .line.odd {
  378. background:#eee;
  379. color:{color:text};
  380. padding:5px;
  381. }
  382. .line.odd .label {{color:title};}
  383. .line.even {
  384. color:{color:text};
  385. padding:5px;
  386.  
  387. }
  388.  
  389. .label {font-weight:bold;
  390. letter-spacing:1px;
  391. text-transform:uppercase;
  392. color:{color:title};
  393. }
  394.  
  395.  
  396.  
  397.  
  398.  
  399. /*permalink and notes*/
  400. {block:IndexPage}
  401. .bush {opacity:0;
  402. -webkit-transition:all 0.6s;
  403. -moz-transition:all 0.6s;
  404. -ms-transition:all 0.6s;
  405. -o-transition:all 0.6s;
  406. transition:all 0.6s; }
  407. #posts:hover .bush {opacity:1;
  408. -webkit-transition:all 0.6s;
  409. -moz-transition:all 0.6s;
  410. -ms-transition:all 0.6s;
  411. -o-transition:all 0.6s;
  412. transition:all 0.6s; }
  413. {/block:IndexPage}
  414. #permalink {
  415. text-align:left;
  416. margin-bottom:10px;
  417.  
  418. }
  419. #permalink a {display:inline-block;
  420. }
  421.  
  422. .tags {{block:ifNotShowTags}
  423. {block:IndexPage}
  424. display:none;
  425. {/block:IndexPage}
  426. {/block:ifNotShowTags}
  427. word-break:break-all;
  428. margin-top:10px;
  429.  
  430. }
  431. .tags a{margin-right:5px;
  432. text-transform:none;
  433. text-decoration:none;}
  434.  
  435.  
  436. .pagenotes {
  437. {block:IndexPage}
  438. display: none!important;
  439. {/block:IndexPage}
  440. width:430px;
  441. }
  442. .pagenotes img {
  443. display:none!important;}
  444. .pagenotes li {
  445. list-style-type:lower-roman;
  446. padding:5px 0px;
  447. margin:0 0 0 -20px;
  448. font-size:8px;
  449. text-align:left;
  450. text-transform:uppercase;
  451. }
  452. .t {
  453. font-size:8px;
  454. text-align:left;
  455. font-weight:;
  456. letter-spacing:px;
  457. color:{color:title};
  458. text-transform:uppercase;}
  459.  
  460. #credit {position:fixed;
  461. float:right;
  462. opacity:1;
  463. bottom:5px;
  464. right:5px;
  465. text-align:center;
  466. padding:5px 5px;
  467. font-size:8px;
  468. font-family:helvetica}
  469. @font-face
  470. {
  471. font-family:'Inconsolata';
  472. src:url('http://static.tumblr.com/sas2ex2/3lgmqt637/inconsolata.otf');
  473. }
  474.  
  475.  
  476. {CustomCSS}
  477.  
  478.  
  479. </style>
  480.  
  481.  
  482.  
  483.  
  484.  
  485.  
  486.  
  487. </head>
  488.  
  489. <body>
  490.  
  491.  
  492. <div id="con">
  493.  
  494.  
  495. <div id="headers">
  496. {block:IfShowTitle}
  497. <div id="blogt">{Title}</div>
  498. {/block:IfShowTitle}
  499. <div class="standardlinks">|
  500. <a href="/">home</a>
  501. <a href="/ask">ask</a>
  502. {block:ifLink1}<a href="{text:Link 1 URL}">{text:Link 1}</a>{/block:ifLink1}
  503. {block:ifLink2}<a href="{text:Link 2 URL}">{text:Link 2}</a>{/block:ifLink2}
  504. {block:ifLink3}<a href="{text:Link 3 URL}">{text:Link 3}</a>{/block:ifLink3}
  505. {block:ifLink4}<a href="{text:Link 4 URL}">{text:Link 4}</a>{/block:ifLink4}
  506. <a href="/archive">archive</a>
  507. </div>
  508. <div id="description">
  509. {Description}
  510. </div>
  511.  
  512. </div>
  513.  
  514.  
  515. <div id="entries">
  516.  
  517. {block:Posts}
  518. <div id="posts">
  519.  
  520. {block:Date}
  521. <div id="permalink">
  522. <a href="{Permalink}">{Month} {DayofMonth}{DayOfMonthSuffix}</a>
  523. {block:NoteCount}<a href="{Permalink}">with {NoteCountWithLabel}</a>{/block:NoteCount}
  524. <span class="bush"><a href="{ReblogURL}" target="_blank">/ Reblog</a></span>
  525. {block:PermalinkPage}
  526. {block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}">/ via&nbsp;</a>{block:ContentSource}<a href="{ReblogRootURL}" "{ReblogRootName}">& source</a>{/block:ContentSource}{/block:RebloggedFrom}{/block:PermalinkPage}
  527. </div>
  528. {/block:Date}
  529.  
  530. {block:Quote}
  531.  
  532.  
  533. <div id="titlequote">{Quote}</div>
  534. {block:Source}<div id="source">&mdash; {Source}</div>{/block:Source}
  535. {/block:Quote}
  536.  
  537.  
  538.  
  539. {block:Text}
  540. {block:Title}<div id="title">{Title}</div>{/block:Title}
  541.  
  542. {Body}
  543. {/block:Text}
  544.  
  545. {block:Link}
  546.  
  547. <div id="title"><a href="{URL}">{Name}</a></div>
  548. {block:Description}{Description}{/block:Description}
  549.  
  550. {/block:Link}
  551.  
  552. {block:Chat}
  553. {block:Title}
  554. <h1>{Title}</h1>
  555. {/block:Title}
  556. <div class="chat">
  557. <ol>{block:Lines}
  558. <li class="line {Alt}">
  559. {block:Label}
  560. <span class="label">
  561. {Label}</span>
  562. {/block:Label}{Line}</li>
  563. {/block:Lines}
  564. </ol></div>
  565. {/block:Chat}
  566.  
  567. {block:Photo}
  568. <div id="buttt">
  569. <a href="{Permalink}"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"/></a></div>
  570. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  571. {/block:Photo}
  572.  
  573. {block:Photoset}
  574. {Photoset-400}
  575. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  576. {/block:Photoset}
  577.  
  578. {block:Video}
  579. {Video-400}
  580. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  581. {/block:Video}
  582.  
  583.  
  584.  
  585. {block:Audio}
  586.  
  587. <div class="audioinfo">
  588. {block:TrackName}{TrackName}{/block:TrackName}{block:Artist}<br>{Artist}{/block:Artist}
  589. </div>
  590. <div class="playerback">
  591. <div class="player">{AudioPlayerWhite}</div>
  592. </div>
  593. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  594. {/block:Audio}
  595.  
  596. {block:Answer}
  597.  
  598. <div class="q"><span class="as">{Asker} said: </span>{Question}</div>
  599. <div class="a">{Answer}</div>
  600.  
  601. {/block:Answer}
  602.  
  603.  
  604. {block:Date}
  605. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">{Tag},</a>{/block:Tags}</div>{/block:HasTags}
  606. {/block:Date}
  607.  
  608.  
  609.  
  610. </div>
  611.  
  612. {block:PostNotes}
  613. <div class="pagenotes">
  614. <div class="t">Notes</div>
  615. {PostNotes}
  616. </div>
  617. {/block:PostNotes}
  618.  
  619.  
  620. {/block:Posts}
  621.  
  622. </div>
  623.  
  624. {block:Pagination}
  625. <div id="pagination">
  626. {block:PreviousPage}
  627. <a href="{PreviousPage}" style="font-weight:bold;">previous</a>
  628. {/block:PreviousPage}
  629. {block:JumpPagination length="5"}
  630. {block:CurrentPage}
  631. <b><a href="/" style="font-weight:bold">{PageNumber}</a></b>
  632. {/block:CurrentPage}
  633. {block:JumpPage}
  634. <a href="{URL}" >{PageNumber}</a>
  635. {/block:JumpPage}
  636. {/block:JumpPagination}
  637. {block:NextPage}
  638. <a href="{NextPage}" style="font-weight:bold;">next</a>
  639. {/block:NextPage}
  640. </div>
  641. {/block:Pagination}
  642.  
  643. <div id="text">
  644. Theme by <a href="http://farahmir.tumblr.com" target="_blank">Septim</a></div>
  645. </div>
  646.  
  647. </div>
  648.  
  649.  
  650. {block:ContentSource}
  651. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  652. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  653. {/block:SourceLogo}
  654. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  655. {/block:ContentSource}
  656.  
  657. <div id="credit"><script language="JavaScript">
  658. var ref = (''+document.referrer+'');
  659. var w_h = window.screen.width + " x " + window.screen.height;
  660. document.write('<script src="http://s1.freehostedscripts.net/ocounter.php?site=ID3754012&e1=&e2=&r=' + ref + '&wh=' + w_h + '"><\/script>');
  661. </script></div>
  662. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement