precioussammy

greeneyes

Apr 5th, 2015
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.61 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. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>{Title}</title>
  5. <link rel="shortcut icon" href="{Favicon}">
  6. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  7. {block:Description}
  8. <meta name="description" content="{MetaDescription}" />
  9. {/block:Description}
  10.  
  11. <head>
  12.  
  13. <!--
  14. © sunshinesthemes.tumblr.com | Base Code 1
  15. edited and created by precioussammy.tumblr.com
  16. -->
  17.  
  18. <!-- defaults -->
  19.  
  20. <!-- images -->
  21.  
  22. <meta name="image:Background" content=""/>
  23. <meta name="image:Sidebar" content="" />
  24.  
  25. <!-- colors -->
  26.  
  27. <meta name="color:Background" content="#ffffff" />
  28. <meta name="color:Body" content="#000000" />
  29. <meta name="color:Description" content="#000000" />
  30. <meta name="color:Info" content="#000000" />
  31. <meta name="color:Border" content="#eeeeee" />
  32. <meta name="color:Italic" content="#faacd7" />
  33. <meta name="color:Bold" content="#000000" />
  34.  
  35. <meta name="color:Tags" content="#000000" />
  36. <meta name="color:TagsHover" content="#000000" />
  37.  
  38. <meta name="color:Pagination" content="#000000" />
  39. <meta name="color:PaginationHover" content="#000000" />
  40.  
  41. <meta name="color:Links" content="#000000" />
  42. <meta name="color:LinksHover" content="#000000" />
  43.  
  44. <meta name="color:SidebarLinks" content="#000000" />
  45. <meta name="color:SidebarLinksHover" content="#000000" />
  46.  
  47. <!-- links/text -->
  48.  
  49. <meta name="text:Link1" content="/" />
  50. <meta name="text:Link1 Title" content="link" />
  51. <meta name="text:Link2" content="/" />
  52. <meta name="text:Link2 Title" content="link" />
  53. <meta name="text:Link3" content="/" />
  54. <meta name="text:Link3 Title" content="link" />
  55. <meta name="text:Link4" content="/" />
  56. <meta name="text:Link4 Title" content="link" />
  57. <meta name="text:Link5" content="/" />
  58. <meta name="text:Link5 Title" content="link" />
  59.  
  60.  
  61.  
  62.  
  63. <!-- tooltips -->
  64.  
  65. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  66. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  67. <script>
  68. (function($){
  69. $(document).ready(function(){
  70. $("[title]").style_my_tooltips({
  71. tip_follows_cursor:true,
  72. tip_delay_time:90,
  73. tip_fade_speed:600,
  74. attribute:"title"
  75. });
  76. });
  77. })(jQuery);
  78. </script>
  79.  
  80.  
  81. <!-- pop up links -->
  82.  
  83.  
  84. <script type="text/javascript"
  85. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  86. <script>
  87. $(document).ready(function() {
  88. //
  89. $('a.poplight[href^=#]').click(function() {
  90. var popID = $(this).attr('rel'); //Get Popup Name
  91. var popURL = $(this).attr('href'); //Get Popup href to define size
  92. var query= popURL.split('?');
  93. var dim= query[1].split('&');
  94. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  95. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  96. var popMargTop = ($('#' + popID).height() + 80) / 2;
  97. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  98. //Apply Margin to Popup
  99. $('#' + popID).css({
  100. 'margin-top' : -popMargTop,
  101. 'margin-left' : -popMargLeft
  102. });
  103. $('body').append('<div id="fade"></div>');
  104. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  105. return false;
  106. });
  107. $('a.close, #fade').live('click', function() {
  108. $('#fade , .popup_block').fadeOut(function() {
  109. $('#fade, a.close').remove(); //fade them both out
  110. });
  111. return false;
  112. });
  113. });
  114. </script>
  115.  
  116. <style type="text/css">
  117.  
  118. pre {
  119. white-space: pre-wrap;
  120. white-space: -moz-pre-wrap;
  121. white-space: -pre-wrap;
  122. white-space: -o-pre-wrap;
  123. word-wrap: break-word;
  124. }
  125.  
  126. /* fonts (if you use them) */
  127.  
  128. @font-face { font-family: "cedarcursive"; src: url('http://themes.googleusercontent.com/static/fonts/cedarvillecursive/v1/cuCe6HrkcqrWTWTUE7dw-5zpMnghKP_wiJrQSyqob5U.woff'); }
  129.  
  130. /* scroll bar */
  131.  
  132. ::-webkit-scrollbar-thumb {
  133. background:#ccc;
  134. border: 0px solid white;
  135. height:auto;
  136. }
  137.  
  138. ::-webkit-scrollbar {
  139. height:0px;
  140. width:0px;
  141. background:#ccc;
  142. border:0px solid white;
  143. }
  144.  
  145. ::selection {
  146. background:white;
  147. }
  148.  
  149. /* body/post defaults */
  150.  
  151. h1 {
  152. font-size: 9px;
  153. text-transform: uppercase;
  154. font-family: Century Gothic;
  155. letter-spacing: 1px;
  156. color:{color:Body};
  157. }
  158.  
  159. body {
  160. background:{color:background};
  161. background-repeat: no repeat;
  162. background-position: bottom right;
  163. background-attachment: fixed;
  164. {block:ifbackgroundimage}background-image:url('{image:background}');{/block:ifbackgroundimage}
  165. color:{color:Body};
  166. margin:0px;
  167. font-family:Calibri;
  168. font-style:none;
  169. word-break: break-all;
  170. font-size:9px;
  171. line-height:100%;
  172. cursor: url(http://i.imgur.com/ZOrzC.png), progress;
  173. }
  174.  
  175. a:link, a:active {
  176. text-decoration:none;
  177. color:{color:Links};
  178. }
  179.  
  180. a:visited {
  181. text-decoration:none;
  182. color:{color:Links};
  183. }
  184.  
  185. a:hover {
  186. text-decoration:none;
  187. color:{color:LinksHover};
  188. cursor: url(http://cur.cursors-4u.net/others/oth-6/oth589.cur), progress;
  189. -webkit-transition: all .8s linear;
  190. }
  191.  
  192. b, strong, .strong {
  193. color:{color:Bold};
  194. }
  195.  
  196. i, em, .em {
  197. color:{color:Italic};
  198. }
  199.  
  200. small{
  201. font-size:8px;
  202. }
  203.  
  204. big{
  205. font-size:12px;
  206. }
  207.  
  208. blockquote {
  209. padding-left:5px;
  210. border-left:2px solid {color:Body};
  211. }
  212.  
  213. img {
  214. border:none;
  215. }
  216.  
  217. /* tumblr controls */
  218.  
  219. iframe#tumblr_controls{
  220. white-space:nowrap;
  221. -webkit-filter: invert(100%);
  222. -moz-filter: invert(100%);
  223. -o-filter: invert(100%);
  224. -ms-filter: invert(100%);
  225. filter: invert(100%);
  226. opacity:.7;
  227. -webkit-transition: all .8s linear;
  228. }
  229.  
  230. /* posts */
  231.  
  232. #entries {
  233. width:400px;
  234. float:left;
  235. height:auto;
  236. margin-left:550px;
  237. margin-top:20px;
  238. margin-bottom:50px;
  239. }
  240.  
  241. #post {
  242. width:400px;
  243. height:auto;
  244. margin-top:40px;
  245. padding:10px;
  246. border:1px solid {color:Border};
  247. background:white;
  248. -webkit-transition: all .8s linear;
  249. -webkit-transition: all .8s linear;
  250. -webkit-box-shadow: 0px 0px 20px #fff;
  251. -moz-box-shadow: 0px 0px 20px #fff;
  252. box-shadow: 0px 0px 20px #fff;
  253. }
  254.  
  255.  
  256. #post:hover #postinfo{
  257. opacity:1;
  258. margin-top:5px;
  259. -webkit-transition: all .8s linear;
  260. }
  261.  
  262. /* sidebar */
  263.  
  264. #sidebar {
  265. width:200px;
  266. height:200px;
  267. position:fixed;
  268. margin-left:325px;
  269. margin-top:-5px;
  270. }
  271.  
  272. #photo img {
  273. width:130px;
  274. height:130px;
  275. margin-top:200px;
  276. margin-left:10px;
  277. position:fixed;
  278. opacity:1;
  279. z-index:0;
  280. -webkit-transition: all .8s linear;
  281. -webkit-box-shadow: 0px 0px 20px #fff;
  282. -moz-box-shadow: 0px 0px 20px #fff;
  283. box-shadow: 0px 0px 20px #fff;
  284. }
  285.  
  286. /* links */
  287.  
  288. #links {
  289. position:fixed;
  290. width:125px;
  291. height:auto;
  292. background:white;
  293. border:2px solid {color:Border};
  294. margin-top:180px;
  295. margin-left:10px;
  296. z-index:999;
  297. padding:2px;
  298. -webkit-transition: all .8s linear;
  299. -webkit-box-shadow: 0px 0px 20px #fff;
  300. -moz-box-shadow: 0px 0px 20px #fff;
  301. box-shadow: 0px 0px 20px #fff;
  302.  
  303. }
  304.  
  305. #links a{
  306. color:{color:SidebarLinks};
  307. line-height:40%;
  308. margin-left:25px;
  309. text-transform:uppercase;
  310. -webkit-transition: all .8s linear;
  311. }
  312.  
  313. #links a:hover {
  314. -webkit-transition: all .8s linear;
  315. text-shadow: 0px 0px 4px rgba(150, 150, 150, 1);
  316. }
  317.  
  318. /* tooltips appearance */
  319.  
  320. #s-m-t-tooltip {
  321. display:inline-block;
  322. text-align:center;
  323. color:black;
  324. font-style:bold;
  325. background:white;
  326. font-size: 8px;
  327. text-transform: uppercase;
  328. font-family: Century Gothic;
  329. letter-spacing: 1px;
  330. border-radius:2px;
  331. max-width:100px;
  332. padding:2px 3px 3px 2px;
  333. margin:20px 0px 0px 20px;
  334. z-index:9999999999999;
  335. border:1px solid {color:Border};
  336. box-shadow:1px 1px 3px rgba(0,0,0,.1);
  337. }
  338.  
  339. /* description */
  340.  
  341. #description {
  342. position:fixed;
  343. font-size:9px;
  344. color:{color:Description};
  345. border:2px solid {color:Border};
  346. margin-top:336px;
  347. margin-left:10px;
  348. width:120px;
  349. height:auto;
  350. text-align:justify;
  351. padding:5px;
  352. background:white;
  353. z-index:2;
  354. -webkit-transition: all .8s linear;
  355. -webkit-box-shadow: 0px 0px 20px #fff;
  356. -moz-box-shadow: 0px 0px 20px #fff;
  357. box-shadow: 0px 0px 20px #fff;
  358. }
  359.  
  360. /* pagi */
  361.  
  362. #pagination {
  363. width:20px;
  364. margin-top:350px;
  365. margin-left:140px;
  366. text-align:center;
  367. position:fixed;
  368. padding:5px;
  369. font-size: 20px;
  370. font-family:arial;
  371. color:{color:Pagination};
  372. }
  373.  
  374. #pagination a {
  375. color:{color:Pagination};
  376. text-shadow:1px 1px 15px #fff;
  377. }
  378.  
  379. #pagination a:hover {
  380. color:{color:PaginationHover};
  381. }
  382.  
  383. /* postinfo */
  384.  
  385. #postinfo {
  386. margin-top:-30px;
  387. padding:5px;
  388. color:{color:Info};
  389. border-top:1px solid {color:border};
  390. opacity:0;
  391. -webkit-transition: all .8s linear;
  392. }
  393.  
  394. /* via & source */
  395.  
  396. #info {
  397. margin-bottom:5px;
  398. text-align:right;
  399. color:{color:Link};
  400. text-transform:uppercase;
  401. font-size:9px;
  402. font-style:none;
  403. -webkit-transition: all .8s linear;
  404. }
  405.  
  406. /* tags */
  407.  
  408. #tags {
  409. width:240px;
  410. height:auto;
  411. color:{color:Tags};
  412. margin-top:5px;
  413. text-align:left;
  414. -webkit-transition: all .8s linear;
  415. }
  416.  
  417. #tags a {
  418. display:inline;
  419. text-transform:none;
  420. font-style:italic;
  421. color:{color:Tags};
  422. font-size:9px;
  423. line-height:120%;
  424. -webkit-transition: all .8s linear;
  425. }
  426.  
  427. #tags a:hover {
  428. color:{color:TagsHover};
  429. -webkit-transition: all .8s linear;
  430. }
  431.  
  432. /* asks */
  433.  
  434. #question {
  435. height:auto;
  436. width:auto;
  437. padding:10px;
  438. border:1px solid {color:Border};
  439. text-align:right;
  440. }
  441.  
  442. #question a{
  443. text-transform:none;
  444. font-style:none;
  445. }
  446.  
  447. #asker {
  448. display:block;
  449. font-size: 8px;
  450. text-transform: uppercase;
  451. font-family: Century Gothic;
  452. letter-spacing: 1px;
  453. color:{color:Asker};
  454. }
  455.  
  456. #answer {
  457. text-transform:none;
  458. font-style:none;
  459. text-align:left;
  460. padding:10px;
  461. height:auto;
  462. }
  463.  
  464. #answer a{
  465. text-align:left;
  466. }
  467.  
  468. /* audio player */
  469.  
  470. .cover {
  471. width:50px;
  472. height:50px;
  473. padding:5px;
  474. margin-top:0px;
  475. border:1px solid {color:Border};
  476. }
  477.  
  478. .playbox {
  479. background:white;
  480. position: absolute;
  481. z-index: 1000;
  482. margin-top: -50px;
  483. margin-left: 13px;
  484. border-radius:100%;
  485. opacity:1;
  486. -webkit-transition: all .8s linear;
  487. }
  488.  
  489. .playbox:hover {
  490. opacity:1;
  491. -webkit-transition: all .8s linear;
  492. }
  493.  
  494. .playbutton {
  495. width: 20px;
  496. height: 30px;
  497. overflow: hidden;
  498. position: relative;
  499. z-index: 1000;
  500. margin: 5px 14px 3px 6px;
  501. }
  502.  
  503. .audioinfo {
  504. display:inline;
  505. float:right;
  506. width:auto;
  507. height:auto;
  508. text-align:center;
  509. padding:10px;
  510. font-size: 8px;
  511. font-family: calibri;
  512. letter-spacing: 1px;
  513.  
  514. }
  515.  
  516. /* quotes */
  517.  
  518. .quote{
  519. text-align:left;
  520. font-size: 8px;
  521. font-family: calibri;
  522. letter-spacing: 1px;
  523. padding:5px;
  524. }
  525.  
  526. .source {
  527. text-align:right;
  528. font-size: 7px;
  529. text-transform: uppercase;
  530. font-family: calibri;
  531. letter-spacing: 1px;
  532. padding:5px;
  533. margin-left:30px;
  534. margin-top:5px;
  535. }
  536.  
  537. /* credit */
  538.  
  539. #cred {
  540. position:fixed;
  541. right:-160px;
  542. bottom:10px;
  543. padding:5px;
  544. width:auto;
  545. height:auto;
  546. background:white;
  547. color:{color:Body};
  548. border: 1px solid {color:Border};
  549. -webkit-transition: all 1s linear;
  550. }
  551.  
  552. #cred a{
  553. text-align:center;
  554. color:{color:Body};
  555. font-style:bold;
  556. font-size: 6px;
  557. text-transform: uppercase;
  558. font-family: Century Gothic;
  559. letter-spacing: 1px;
  560. border-radius:2px;
  561. }
  562.  
  563. #cred img {
  564. height:auto;
  565. width:auto;
  566. position:fixed;
  567. bottom:10px;
  568. right:10px;
  569. -webkit-transition: all 1s linear;
  570. }
  571.  
  572. #cred:hover {
  573. right:30px;
  574. -webkit-transition: all 1s linear;
  575. }
  576.  
  577. #fade { /*--Transparent background layer--*/
  578. display: none; /*--hidden by default--*/
  579. background: #000;
  580. position: fixed; left: 430px; top: 280px;
  581. width: 130px; height: 130px;
  582. opacity: 0;
  583. z-index: 9999;
  584. }
  585. .popup_block{
  586. display: none; /*--hidden by default--*/
  587. background: #fff;
  588. padding: 10px;
  589. border: 0px solid #ddd;
  590. float: left;
  591. font-size: 1.2em;
  592. position: fixed;
  593. top: 290px; left: 430px;
  594. z-index: 99;
  595. height:80px;
  596. /*--CSS3 Box Shadows--*/
  597. -webkit-box-shadow: 0px 0px 20px #fff;
  598. -moz-box-shadow: 0px 0px 20px #fff;
  599. box-shadow: 0px 0px 20px #fff;
  600.  
  601.  
  602. }
  603. img.btn_close {
  604. float: right;
  605. margin: -5px -5px 0 0;
  606. }
  607. /*--Making IE6 Understand Fixed Positioning--*/
  608. *html #fade {
  609. position: absolute;
  610. }
  611. *html .popup_block {
  612. position: absolute;
  613. }
  614.  
  615. </style>
  616.  
  617.  
  618. <div id="sidebar">
  619.  
  620. {block:Pagination}
  621. <div id="pagination">
  622. {block:PreviousPage}
  623. <a href="{PreviousPage}">‹</a>
  624. {/block:PreviousPage}
  625. <br>
  626. {block:NextPage}
  627. <a href="{NextPage}">›</a>
  628. {/block:NextPage}
  629. </div>
  630. {/block:Pagination}
  631.  
  632. <div id="photo"><img src="{image:sidebar}"></div>
  633.  
  634.  
  635. <div id="links">
  636. <a href="/" title="home"><img src="http://static.tumblr.com/d3afqhp/xPInjilws/naviiconhome.gif" alt="some_text"></a>
  637. <a href="/ask" title="message"><img src="http://static.tumblr.com/d3afqhp/ghpnjim28/naviiconmessage.gif" alt="some_text"></a>
  638. <a href="#?w=80" rel="03" class="poplight" title="links"><img src="http://static.tumblr.com/d3afqhp/NMonjim5p/naviiconlinks.gif" alt="links"></a>
  639. </div>
  640.  
  641. <div id="description">{Description}</div>
  642.  
  643. </div>
  644.  
  645.  
  646. <div id="entries">
  647.  
  648. {block:Posts}
  649.  
  650. <div id="post">
  651.  
  652. {block:Text}
  653. <h1>{block:Title}<b>{Title}</b>{/block:Title}</h1>
  654. {Body}
  655. {/block:Text}
  656.  
  657. {block:Photo}
  658. {LinkOpenTag}
  659. <img src="{PhotoURL-400}" />
  660. {LinkCloseTag}
  661. {block:Caption}{Caption}{/block:Caption}
  662. {/block:Photo}
  663.  
  664. {block:Photoset}
  665. {Photoset-400}
  666. {block:Caption}{Caption}{/block:Caption}
  667. {/block:Photoset}
  668.  
  669. {block:Link}
  670. <h1><b><a href="{URL}" {Target}>{Name}</a></b></h1>
  671. {block:Description}{Description}{/block:Description}
  672. {/block:Link}
  673.  
  674. {block:Chat}
  675. {block:Title}<h1><b>{Title}</b></h1>{/block:Title}
  676. {block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}
  677. {/block:Chat}
  678.  
  679. {block:Video}
  680. {Video-400}
  681. {block:Caption}{Caption}{/block:Caption}
  682. {/block:Video}
  683.  
  684. {block:Quote}
  685. <div class="quote">
  686. ❝{Quote}❞
  687. </div>
  688. {block:Source}<div class="source"><b>-{Source}</b></div>{/block:Source}
  689. {/block:Quote}
  690.  
  691. {block:Answer}
  692. <div id="asker"><b>{Asker}</b></div>
  693. <div id="question">{Question}</div>
  694. <div id="answer">{Answer}</div>
  695. {/block:Answer}
  696.  
  697. {block:Audio}
  698. {block:AlbumArt}
  699. <img src="{AlbumArtURL}" class="cover" />
  700. {/block:AlbumArt}
  701.  
  702. <div class="playbox"><div class="playbutton">
  703. {block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}
  704. </div>
  705. </div>
  706.  
  707. <div class="audioinfo">
  708. {block:TrackName}<b>Title:</b> {TrackName}<br>{/block:TrackName}
  709. {block:Artist}<b>Artist:</b> {Artist}<br>{/block:Artist}
  710. {/block:ExternalAudio}<b>Played:</b> {PlayCount} times
  711. </div>
  712. {/block:Audio}
  713.  
  714. <div id="postinfo">
  715.  
  716. <div id="info">
  717. {block:Date}<div id="info"><a href="{Permalink}" >{TimeAgo}</a>
  718.  
  719. {block:NoteCount}
  720. <a href="{Permalink}">{NoteCount}</a>
  721. {/block:NoteCount}
  722.  
  723.  
  724. {block:RebloggedFrom}
  725. <a href="{ReblogParentURL}">via</a>
  726. {/block:RebloggedFrom}
  727.  
  728. {block:ContentSource}
  729. <a href="{SourceURL}" >source</a>
  730. {/block:ContentSource}
  731. </div><!-- end info -->
  732.  
  733. {block:HasTags}
  734. <div id="tags">
  735.  
  736. {block:Tags}<a href="{TagURL}">{Tag}</a>
  737. {/block:Tags}</div>
  738. {/block:HasTags}
  739.  
  740. </div> <!-- end post info -->
  741.  
  742. </div>
  743.  
  744. {block:PostNotes}
  745. <div id="notes">{PostNotes}</div>
  746. {/block:PostNotes}
  747. {/block:Posts}
  748.  
  749. </div>
  750.  
  751. <div id="cred"><a href="http://precioussammy.tumblr.com/"><img src="http://static.tumblr.com/d3afqhp/CYZnbyomn/tumblr_lm6ow3rkt81qfoi4t.gif">precioussammy</a></div>
  752.  
  753. </body>
  754.  
  755. <div id="03" class="popup_block">
  756. <center>
  757. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}<br><br>
  758. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2}<br><br>
  759. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3}<br><br>
  760. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a>{/block:ifLink4}<br><br>
  761. {block:ifLink5}<a href="{text:Link5}">{text:Link5 Title}</a>{/block:ifLink5}<br><br>
  762. </center>
  763. </div>
  764.  
  765. </html>
Advertisement
Add Comment
Please, Sign In to add comment