moanszayn

Fire & Rain

Apr 25th, 2015
462
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.00 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3. <!--
  4.  
  5. THEME BY AILEEN AKA NUTONMYFACELIAM
  6. FOLLOW THE RULES AND STAY GUCCI
  7.  
  8.  
  9. -->
  10.  
  11.  
  12. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  13. <head>
  14.  
  15. <title>{Title}</title>
  16. <link rel="shortcut icon" href="{Favicon}">
  17. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  18. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  19.  
  20.  
  21. <meta name="color:Text" content="#bbbbbb"/>
  22. <meta name="color:selection" content="#000"/>
  23. <meta name="color:Link" content="#aaaaaa"/>
  24. <meta name="color:Tags" content="#fff"/>
  25. <meta name="color:Hover" content="#f1f1f1"/>
  26. <meta name="color:scrollbarbg" content="ffffff"/>
  27. <meta name="color:SBLink" content="#bbb"/>
  28. <meta name="color:title" content="#f2f2f2"/>
  29. <meta name="color:ask" content="#000"/>
  30. <meta name="color:asklink" content="#000000"/>
  31. <meta name="color:askbg" content="#fff"/>
  32.  
  33.  
  34.  
  35.  
  36. <meta name="text:sidetitle" content="text here">
  37.  
  38. <meta name="text:linkA" content="">
  39. <meta name="text:linkA url" content="/">
  40. <meta name="text:linkB" content="">
  41. <meta name="text:linkB url" content="/">
  42. <meta name="text:linkC" content="">
  43. <meta name="text:linkC url" content="/">
  44. <meta name="text:linkD" content="">
  45. <meta name="text:linkD url" content="/">
  46. <meta name="text:linkE" content="">
  47. <meta name="text:linkE url" content="/">
  48.  
  49. <script type="text/javascript" src="http://static.tumblr.com/qlfmldj/1H6mmbwdm/jquery-1.7.1.min.js"></script>
  50.  
  51. <script type="text/javascript">
  52.  
  53. $(function(){ // document ready
  54.  
  55. var stickyTop = $('.links').offset().top; // returns number
  56.  
  57. $(window).scroll(function(){ // scroll event
  58.  
  59. var windowTop = $(window).scrollTop(); // returns number
  60.  
  61. if (stickyTop < windowTop) {
  62.  
  63. $('.links').css({ position: 'fixed', top: -120 });
  64.  
  65. }
  66.  
  67. else {
  68.  
  69. $('.links').css('position','static');
  70.  
  71. }
  72.  
  73. });
  74.  
  75. });
  76.  
  77. </script>
  78.  
  79. <style type="text/css">
  80.  
  81.  
  82.  
  83. /*--scrollbar--*/
  84.  
  85. ::-webkit-scrollbar-thumb:vertical {border:4px solid #fff;height:12px; background-color:{color:scrollbarbg};}
  86. ::-webkit-scrollbar-thumb:horizontal {background-color:#fff;}
  87. ::-webkit-scrollbar {background-color:white;height:7px;width:12px;border:5px solid #fff;}
  88. }
  89.  
  90.  
  91. body {
  92. background:{color:background};
  93. margin:0px;
  94. color:{color:text};
  95. font-family:helvetica;
  96. font-size:9px;
  97. line-height:100%;
  98.  
  99. }
  100.  
  101. a {
  102. text-decoration:none;
  103. -moz-outline-style:none;
  104. color:{color:link};
  105. -webkit-transition-duration:0.6s;
  106.  
  107. }
  108.  
  109. img {
  110. border:none;
  111. }
  112.  
  113.  
  114. h1 {
  115. font-family:helvetica;
  116. font-size:12px;
  117. text-transform:uppercase;
  118. }
  119.  
  120. h2 {
  121. font-family:helvetica;
  122. text-transform:uppercase;
  123. padding:5px;
  124. color:{color:Link};
  125. }
  126.  
  127. blockquote {
  128. padding-left:5px;
  129. border-left:2px solid {color:title};
  130. }
  131.  
  132. blockquote blockquote {
  133. padding-left:5px;
  134. border-left:2px solid {color:title};
  135. }
  136.  
  137.  
  138. a:hover {
  139. color:{color:hover};
  140. }
  141.  
  142. #post p{
  143. font-family:helvetica;
  144. }
  145.  
  146.  
  147. #title {
  148. color:{color:title};
  149. margin-top:130px;
  150. margin-left:480px;
  151. top:210px;
  152. font-size:25px;
  153. width:400px;
  154. text-align:left;
  155. font-family:arial ;
  156. text-transform:lowercase;
  157. font-weight:bold;
  158. letter-spacing:-1px;
  159. font-style: italic;
  160. z-index:9999999999999999;
  161. -moz-transition-duration:1.8s;
  162. -webkit-transition-duration:1.8s;
  163. -o-transition-duration:1.8s;
  164. }
  165.  
  166. #title:hover{
  167.  
  168. -moz-transition-duration:1.5s;
  169. -webkit-transition-duration:1.5s;
  170. -o-transition-duration:1.5s;
  171. }
  172.  
  173. #sidebar {
  174. height:100px;
  175. width:100px;
  176. margin-left:500px;
  177. margin-top:40px;
  178. opacity:1;
  179. -moz-transition-duration:0.6s;
  180. -webkit-transition-duration:0.6s;
  181. -o-transition-duration:0.6s;
  182.  
  183. }
  184.  
  185.  
  186.  
  187. #sidebarimage img {
  188. width:350px;
  189. -moz-transition-duration:1s;
  190. -webkit-transition-duration:1s;
  191. -o-transition-duration:1s;
  192. }
  193.  
  194.  
  195.  
  196. .desc {
  197. margin-top:-40px;
  198. margin-left:-20px;
  199. font-family:helvetica;
  200. line-height:140%;
  201. font-size:10px;
  202. font-style:normal;
  203. width:380px;
  204. padding:4px;
  205. text-align:left;
  206. color:{color:text};
  207. opacity:1;
  208. border-top:2px solid #f2f2f2;
  209. }
  210.  
  211. .desc a
  212. {color:{color:links};
  213. }
  214.  
  215.  
  216.  
  217. .links {
  218. margin-top:-5px;
  219. margin-left:468px;
  220. width:400px;
  221. font-family:helvetica ;
  222. text-align:left;
  223. text-transform:lowercase;
  224. padding:10px;
  225. font-weight:bold;
  226. word-spacing:2px;
  227. z-index:2;
  228. background:white;
  229. -moz-transition-duration:1s;
  230. -webkit-transition-duration:1s;
  231. -o-transition-duration:1s;
  232. line-height:90%;
  233.  
  234. }
  235.  
  236.  
  237. .links a {
  238. word-spacing:0px;
  239. text-align:justify;
  240. color:{color:sblink};
  241. padding:3px;
  242. font-size:13px;
  243. -moz-transition-duration:0.5s;
  244. -webkit-transition-duration:0.5s;
  245. -o-transition-duration:0.5s;
  246. }
  247.  
  248. .links a:hover {
  249. color:{color:hover};
  250. -moz-transition-duration:0.3s;
  251. -webkit-transition-duration:0.3s;
  252. -o-transition-duration:0.3s;
  253. text-decoration:none;
  254. }
  255.  
  256.  
  257. #pagi{
  258. width:100px;
  259. margin-left:610px;
  260. margin-top:0px;
  261. padding:5px;
  262. padding-bottom:30px;
  263. font-size:11px;
  264. text-align:center;
  265. font-weight:bold;
  266. font-family:helvetica;
  267. word-spacing:3px;
  268. -moz-transition-duration:0.5s;
  269. -webkit-transition-duration:0.5s;
  270. -o-transition-duration:0.5s;
  271. color:gray;
  272.  
  273. }
  274.  
  275. #pagi a{padding:5px;color:{color:title};}
  276.  
  277. #pagi a:hover{
  278. color:{color:hover};}
  279.  
  280.  
  281.  
  282. #all {
  283. padding:0px;
  284. width:400px;
  285. margin-left:420px;
  286. margin-top:-65px;
  287. font-size:10px;
  288. padding-left:35px;
  289. font-family:helvetica;
  290.  
  291. }
  292.  
  293.  
  294. #posts {
  295. width:400px;
  296. padding-bottom:20px;
  297. padding:20px;
  298. margin-top:30px;
  299. background-color:{color:Post};
  300. color:{color:text};
  301. overflow:hidden;
  302. }
  303. /*POST INFO*/
  304.  
  305. #info {
  306. width:400px;
  307. text-align:center;
  308. font-family:arial;
  309. margin-top:3px;
  310. margin-left:px;
  311. font-size:11px;
  312. font-style:none;
  313. padding-top:5px;
  314. padding-bottom:5px;
  315. line-height:10px;
  316. text-transform:lowercase;
  317. z-index:999;
  318. color:{color:title};
  319. }
  320.  
  321. #info a {
  322. font-weight:bold;
  323. font-family:'arial';
  324. padding:5px;
  325. z-index:999;
  326. text-align:center;
  327. color:{color:title};
  328. }
  329.  
  330. #info a:hover {
  331. text-align:center;
  332. color:{color:hover} ;
  333. -moz-transition-duration:.8s;
  334. -webkit-transition-duration:.8s;
  335. -o-transition-duration:.8s;
  336.  
  337. }
  338.  
  339. #tags {
  340. float:center;
  341. width:389px;
  342. margin-top:-0px;
  343. margin-left:-5px;
  344. text-align:center;
  345. font-size:9px;
  346. padding:5px;
  347. font-size:8px;
  348. transition-duration: 0.5s;
  349. -moz-transition-duration: 0.5s;
  350. -webkit-transition-duration: 0.5s;
  351. -o-transition-duration: 0.5s
  352. color:#bbb;
  353. }
  354.  
  355. #tags a {
  356. text-transform:none;
  357. padding:2px;
  358. letter-spacing:0px;
  359. font-size:9px;
  360. text-align:center;
  361. font-weight:normal;
  362. font-family:'helvetica';
  363. text-decoration:none;
  364. display:inline-block;
  365. color:{color:Tags};
  366. -moz-transition-duration:0.3s;
  367. -webkit-transition-duration:0.3s;
  368. -o-transition-duration:0.3s;
  369. }
  370.  
  371. #tags a:hover {
  372. -moz-transition-duration:0.5s;
  373. -webkit-transition-duration:0.5s;
  374. -o-transition-duration:0.5s;
  375. color:{color:Hover};
  376. }
  377.  
  378. #question {
  379. font-size:10px;
  380. padding-top:15px;
  381. padding-bottom:15px;
  382. padding:10px;
  383. padding-right:5px;
  384. padding-left:5px;
  385. font-family:helvetica;
  386. letter-spacing:0px;
  387. text-align:left;
  388. font-style:none;
  389. background: {color:askbg} ;
  390. color:{color:ask} ;
  391. border-top:2px solid #f2f2f2;
  392. -moz-transition-duration:0.5s;
  393. -webkit-transition-duration:0.5s;
  394. -o-transition-duration:0.5s;
  395. }
  396.  
  397.  
  398.  
  399. #questionlink {
  400. font-family:helvetica;
  401. text-align:left;
  402. font-style:normal;
  403. font-size:12px;
  404. color:{color:asklink};
  405. text-transform:uppercase;
  406. letter-spacing:1px;
  407.  
  408. }
  409.  
  410.  
  411. #questionlink a {
  412. font-family:helvetica;
  413. text-align:left;
  414. font-style:normal;
  415. font-size:10px;
  416. color:{color:asklink};
  417. text-transform:uppercase;
  418.  
  419.  
  420. }
  421.  
  422. .audio-post {
  423. text-align: center;
  424. color:#fff;
  425. font-family:helvetica;
  426. }
  427.  
  428. .audiop {
  429. background:{color:title};
  430. height:30px;
  431. font-size:8px;
  432. letter-spacing:1px;
  433. text-transform:uppercase;
  434. line-height:13px;
  435. text-align:center;
  436. padding:10px;
  437. -moz-transition-duration:0.5s;
  438. -webkit-transition-duration:0.5s;
  439. -o-transition-duration:0.5s;
  440. }
  441.  
  442. .audiop:hover{
  443. -moz-transition-duration:0.5s;
  444. -webkit-transition-duration:0.5s;
  445. -o-transition-duration:0.5s;
  446. }
  447.  
  448. #postnotes {
  449. display:block;
  450. margin-top:-200;
  451. margin-left:471px;
  452. color:black;
  453. width:440px;
  454. font-family:helvetica;
  455. font-size:10px;
  456. }
  457.  
  458. #postnotes ol {
  459. line-height:110%;
  460. color:black;
  461. list-style-type: none;
  462.  
  463. }
  464.  
  465. #postnotes li {
  466. padding:5px;
  467. letter-spacing:2px;
  468. display:block;
  469. margin-top:5px;
  470. color:black;
  471. -webkit-transition-duration:.4s;
  472. -moz-transition-duration:.4s;
  473. -o-transition-duration:.4s;
  474. -ms-transition-duration:.4s;
  475. }
  476.  
  477. #postnotes li:hover {
  478. color:{color:hover};
  479.  
  480. }
  481.  
  482. #postnotes li:hover a {
  483. color:{color:title};
  484. }
  485.  
  486. #postnotes img {
  487. padding-right:5px;
  488. }
  489.  
  490. /*do not touch*/
  491.  
  492. #credit {
  493. padding:2px;
  494. color:#000;
  495. position:fixed;
  496. bottom:5px;
  497. right:0px;
  498. font-size:19px;
  499. letter-spacing:-1px;
  500. font-family:arial;
  501. -moz-transition-duration: .6s;
  502. -webkit-transition-duration: .6s;
  503. -o-transition-duration: .6s;
  504. }
  505.  
  506. #credit a {
  507. font-weight:bold;
  508. text-transform:lowercase;
  509. color:#000;
  510. padding:3px;
  511. padding-right:5px;
  512. -moz-transition-duration: .6s;
  513. -webkit-transition-duration: .6s;
  514. -o-transition-duration: .6s;
  515. }
  516.  
  517. #credit a:hover{
  518. background: black;
  519. color: white;
  520. -moz-transition-duration:0.3s;
  521. -webkit-transition-duration:0.3s;
  522. -o-transition-duration:0.3s;
  523. }
  524.  
  525.  
  526. #credit a:hover { color: {color:linkhover};}
  527.  
  528.  
  529. {CustomCSS}
  530. iframe#tumblr_controls { right:3px !important; position: fixed !important; z-index:999999999999999999999999999999999999999999999 !important; -webkit-transition: all 0.8s ease-out; -moz-transition: all 0.8s ease-out; transition: all 0.8s ease-out; -webkit-filter: invert(100%);}
  531. ::-moz-selection {background: {color:selection}; color:#fff;}
  532.  
  533. ::selection {background:{color:selection}; color:#fff; }
  534.  
  535.  
  536.  
  537. #s-m-t-tooltip {
  538.  
  539. max-width:300px;
  540.  
  541. padding:3px 4px 5px 4px;
  542.  
  543. margin:20px 0px 0px 20px;
  544.  
  545. background-color:#fff; /* change the background color */
  546.  
  547. font-family:arial; /* change the font */
  548.  
  549. font-size:9px; /* change the font size */
  550.  
  551. text-transform:lowercase; /* can be uppercase, lowercase, none*/
  552.  
  553. color:#000; /* change the text color */
  554.  
  555. z-index:999999999999999999999999999999999999;
  556.  
  557. }
  558.  
  559. </style>
  560.  
  561.  
  562. </head>
  563.  
  564. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  565.  
  566. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  567.  
  568. <script>
  569.  
  570. (function($){
  571.  
  572. $(document).ready(function(){
  573.  
  574. $("a[title]").style_my_tooltips({
  575.  
  576. tip_follows_cursor:true,
  577.  
  578. tip_delay_time:90,
  579.  
  580. tip_fade_speed:600,
  581.  
  582. attribute:"title"
  583.  
  584. });
  585.  
  586. });
  587.  
  588. })(jQuery);
  589.  
  590. </script>
  591.  
  592. <link href='http://static.tumblr.com/blpgwiz/uvsm405h8/flip.css' rel='stylesheet' type='text/css'><body>
  593.  
  594.  
  595. <div id="title"><a href="/">{text:sidetitle}</a></div>
  596.  
  597. <div class="links">
  598. {block:IfLinkA}
  599. <a href="{text:linkA url}">{text:linkA}</a>
  600. {/block:IfLinkA}
  601. {block:IfLinkB}
  602. <a href="{text:linkB url}">{text:linkB}</a>
  603. {/block:IfLinkB}
  604. {block:IfLinkC}
  605. <a href="{text:linkC url}">{text:linkC}</a>
  606. {/block:IfLinkC}
  607. {block:IfLinkD}
  608. <a href="{text:linkD url}">{text:linkD}</a>
  609. {/block:IfLinkD}
  610. {block:IfLinkE}
  611. <a href="{text:linkE url}">{text:linkE}</a>
  612. {/block:IfLinkE}
  613.  
  614. </div>
  615.  
  616. <div id="sidebar">
  617. <div id="sidebarimage"></div>
  618.  
  619.  
  620.  
  621. <div class="desc">
  622. {Description}
  623. </div> </div> </div>
  624.  
  625. <div id="all">{block:Posts}<div id="posts">
  626.  
  627. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  628.  
  629. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  630.  
  631.  
  632. {block:Link}<a href="{URL}" class="link" {Target}> <h2>{Name}</h2></a>
  633. {block:Description}<p>{Description}</p>{/block:Description}{/block:Link}
  634.  
  635. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  636.  
  637. {block:Quote}<h3>"{Quote}" </h3>
  638. <div style="text-align:right; padding-bottom:5px;">— {Source}</div>{/block:Quote}
  639.  
  640. {block:AudioPlayer}
  641. <div class="audio-post"> <div style="padding: 6px 0px 6px 5px;width:inherit;background:#fff; width:30px;overflow:hidden; position:absolute;border:4px solid {color:selection}"> {AudioPlayer}</div><div class="audiop">{block:TrackName}<span style="#fff">{TrackName}</span>{/block:TrackName}{block:Artist}<br/>{Artist} {/block:Artist}</div></div>{/block:AudioPlayer}
  642.  
  643. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  644.  
  645. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  646.  
  647.  
  648. {block:Answer} <div id="questionlink"><span style="font-family:helvetica;text-transform:uppercase;font-size:10px;font-style:none;"><font face="helvetica">{Asker}</font></div> <div id="question"></span>{Question}</div><left> <span style="text-transform:none;font-size:10px;"><font face="helvetica">{Answer}</font> {/block:Answer}
  649.  
  650. <div id="info">
  651. {NoteCount} ♥ <a href="{Permalink}">{TimeAgo}</a>— <a href="{ReblogURL}">reblog</a> {block:RebloggedFrom} <a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom} {block:ContentSource} <a href="{SourceURL}">source</a>{/block:ContentSource} <a href="{ReblogParentURL}" target="_blank"></a>{/block:RebloggedFrom}</a>
  652. {block:HasTags}<div id="tags">
  653.  
  654. {block:Tags}<a href="/tagged/{Tag}">{Tag}, </a>&nbsp;{/block:Tags}
  655. </div>{block:HasTags}
  656. </div>
  657. </div>
  658. {/block:Posts}
  659. <br><br></div><div id="postnotes">{block:PostNotes}{PostNotes-16}{/block:PostNotes}</div>
  660. {/block:Posts}</div></div></div>
  661.  
  662. {block:Pagination}
  663. <div id="pagi">
  664. {block:PreviousPage}<a href="{PreviousPage}">prev</a>{/block:PreviousPage} —{block:NextPage}<a href="{NextPage}">next</a>{/block:NextPage}
  665. </div>
  666. {/block:Pagination}
  667. </div></div>
  668. </div>
  669.  
  670. <div id="credit"><a title="theme by aileen" href="http://pezzydrake.tumblr.com/">AJ</a></center></div>
  671. </div></div>
  672.  
  673. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment