precioussammy

shipwreck

Apr 3rd, 2015
530
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.02 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:Title" content="#000000" />
  30. <meta name="color:Description" content="#000000" />
  31. <meta name="color:Info" content="#000000" />
  32. <meta name="color:Border" content="#eeeeee" />
  33. <meta name="color:Italic" content="#faacd7" />
  34. <meta name="color:NoteCount" content="#000000" />
  35. <meta name="color:Bold" content="#000000" />
  36.  
  37. <meta name="color:Tags" content="#000000" />
  38.  
  39. <meta name="color:Pagination" content="#000000" />
  40. <meta name="color:PaginationHover" content="#000000" />
  41.  
  42. <meta name="color:Links" content="#000000" />
  43. <meta name="color:LinksHover" content="#000000" />
  44.  
  45. <meta name="color:SidebarLinks" content="#000000" />
  46. <meta name="color:SidebarBackground" content="#ffffff" />
  47. <meta name="color:SidebarLinksHover" content="#000000" />
  48.  
  49. <!-- links/text -->
  50.  
  51. <meta name="text:Link1" content="/" />
  52. <meta name="text:Link1 Title" content="link" />
  53. <meta name="text:Link2" content="/" />
  54. <meta name="text:Link2 Title" content="link" />
  55. <meta name="text:Link3" content="/" />
  56. <meta name="text:Link3 Title" content="link" />
  57. <meta name="text:Link4" content="/" />
  58. <meta name="text:Link4 Title" content="link" />
  59.  
  60. <!-- tooltips -->
  61.  
  62. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  63. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  64. <script>
  65. (function($){
  66. $(document).ready(function(){
  67. $("[title]").style_my_tooltips({
  68. tip_follows_cursor:true,
  69. tip_delay_time:90,
  70. tip_fade_speed:600,
  71. attribute:"title"
  72. });
  73. });
  74. })(jQuery);
  75. </script>
  76.  
  77.  
  78. <script type="text/javascript">
  79. WebFontConfig = {
  80. google: { families: [ 'Poiret+One::latin' ] }
  81. };
  82. (function() {
  83. var wf = document.createElement('script');
  84. wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  85. '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  86. wf.type = 'text/javascript';
  87. var s = document.getElementsByTagName('script')[0];
  88. s.parentNode.insertBefore(wf, s);
  89. })(); </script>
  90.  
  91. <style type="text/css">
  92.  
  93. /* fonts (if you use them) */
  94.  
  95. /* scroll bar */
  96.  
  97. ::-webkit-scrollbar-thumb {
  98. background:#ccc;
  99. border: 2px solid white;
  100. height:auto;
  101. }
  102.  
  103. ::-webkit-scrollbar {
  104. height:9px;
  105. width:9px;
  106. background:#ccc;
  107. border:4px solid white;
  108. }
  109.  
  110. ::selection {
  111. background:white;
  112. }
  113.  
  114. /* body/post defaults */
  115.  
  116. h1 {
  117. font-size: 7px;
  118. text-transform: uppercase;
  119. font-family: arial;
  120. letter-spacing: 1px;
  121. color:{color:Body};
  122. }
  123.  
  124. body {
  125. background:{color:Background};
  126. background-image:url('{image:Background}');
  127. color:{color:Body};
  128. margin:0px;
  129. font-family: arial;
  130. font-style:none;
  131. font-size:9px;
  132. line-height:100%;
  133. cursor: url(http://i.imgur.com/ZOrzC.png), progress;
  134. }
  135.  
  136. a:link, a:active {
  137. text-decoration:none;
  138. color:{color:Links};
  139. }
  140.  
  141. a:visited {
  142. text-decoration:none;
  143. color:{color:Links};
  144. }
  145.  
  146. a:hover {
  147. text-decoration:none;
  148. color:{color:LinksHover};
  149. cursor: url(http://cur.cursors-4u.net/others/oth-6/oth589.cur), progress;
  150. -webkit-transition: all .8s linear;
  151. }
  152.  
  153. b, strong, .strong {
  154. color:{color:Bold};
  155. }
  156.  
  157. i, em, .em {
  158. color:{color:Italic};
  159. }
  160.  
  161. small{
  162. font-size:7px;
  163. }
  164.  
  165. big{
  166. font-size:12px;
  167. }
  168.  
  169. blockquote {
  170. padding-left:5px;
  171. border-left:2px solid {color:Body};
  172. }
  173.  
  174. img {
  175. border:none;
  176. }
  177.  
  178. /* tumblr controls */
  179.  
  180. iframe#tumblr_controls{
  181. white-space:nowrap;
  182. -webkit-filter: invert(100%);
  183. -moz-filter: invert(100%);
  184. -o-filter: invert(100%);
  185. -ms-filter: invert(100%);
  186. filter: invert(100%);
  187. opacity:.7;
  188. -webkit-transition: all .8s linear;
  189. }
  190.  
  191. /* posts */
  192.  
  193. #entries {
  194. width:250px;
  195. height:auto;
  196. margin-left:470px;
  197. margin-top:200px;
  198. margin-bottom:50px;
  199. }
  200.  
  201. #post {
  202. width:250px;
  203. height:auto;
  204. margin-top:20px;
  205. padding:10px;
  206. border: 1px solid {color:Border};
  207. box-shadow:1px 1px 5px rgba(0,0,0,.1);
  208. background:white;
  209. }
  210.  
  211. /* sidebar */
  212.  
  213. #sidebar {
  214. width:100%;
  215. height:160px;
  216. position:fixed;
  217. margin-left:125px;
  218. margin-top:-200px;
  219. background:{color:Background};
  220. z-index:1;
  221. }
  222.  
  223. #photo img {
  224. width:300px;
  225. height:150px;
  226. margin-top:10px;
  227. margin-left:330px;
  228. position:fixed;
  229. opacity:0.3;
  230. box-shadow:1px 1px 15px rgba(0,0,0,.3);
  231. z-index:0;
  232. }
  233.  
  234. #title {
  235. font-size:37px;
  236. position:fixed;
  237. width:100px;
  238. margin-top:0px;
  239. margin-left:340px;
  240. margin-bottom:10px;
  241. padding-top:20px;
  242. padding-bottom:20px;
  243. letter-spacing:1px;
  244. text-align:left;
  245. color:{color:Title};
  246. font-weight:900;
  247. font-family: 'Poiret One', cursive;
  248. -webkit-transition: all .8s linear;
  249. z-index:100;
  250. }
  251.  
  252. /* links */
  253.  
  254. #links {
  255. position:fixed;
  256. text-align:center;
  257. width:30px;
  258. height:auto;
  259. margin-top:50px;
  260. margin-left:335px;
  261. -webkit-transition: all .8s linear;
  262. z-index:3;
  263. }
  264.  
  265. #links a{
  266. font-size:7px;
  267. font-family: consolas;
  268. text-transform: uppercase;
  269. background:{color:SidebarBackground};
  270. color:{color:SidebarLinks};
  271. border:1px solid {color:Border};
  272. padding:3px;
  273. margin-top:10px;
  274. -webkit-transition: all .8s linear;
  275. }
  276.  
  277. #links a:hover {
  278. color:{color:SidebarLinksHover};
  279. -webkit-transition: all .5s linear;
  280. }
  281.  
  282. /* tooltips appearance */
  283.  
  284. #s-m-t-tooltip {
  285. display:inline-block;
  286. text-align:center;
  287. color:black;
  288. font-style:bold;
  289. background:white;
  290. font-size: 6px;
  291. text-transform: uppercase;
  292. font-family: calibri;
  293. letter-spacing: 1px;
  294. border-radius:2px;
  295. max-width:100px;
  296. padding:2px 3px 3px 2px;
  297. margin:20px 0px 0px 20px;
  298. z-index:9999999999999;
  299. border:1px solid {color:Border};
  300. box-shadow:1px 1px 3px rgba(0,0,0,.1);
  301. }
  302.  
  303. /* description */
  304.  
  305. #description {
  306. position:fixed;
  307. font-size:9px;
  308. color:{color:Description};
  309. border-bottom:1px solid {color:Border};
  310. margin-top:40px;
  311. margin-left:365px;
  312. width:240px;
  313. height:auto;
  314. font-family: calibri;
  315. padding:5px;
  316. z-index:9;
  317. }
  318.  
  319. #description a {
  320. color:{color:Description};
  321. }
  322.  
  323. /* pagi */
  324.  
  325. #pagination {
  326. width:100px;
  327. margin-top:-10px;
  328. margin-left:10px;
  329. text-align:left;
  330. position:fixed;
  331. padding:5px;
  332. font-size: 8px;
  333. font-family: calibri;
  334. color:{color:Pagination};
  335. }
  336.  
  337. #pagination a {
  338. color:{color:Pagination};
  339. }
  340.  
  341. #pagination a:hover {
  342. color:{color:PaginationHover};
  343. }
  344.  
  345. /* post info */
  346.  
  347. #postinfo {
  348. margin-top:5px;
  349. padding:5px;
  350. color:{color:Info};
  351. border-top:1px solid {color:Border};
  352. }
  353.  
  354. /* via & source */
  355.  
  356. #info {
  357. margin-bottom:5px;
  358. text-align:center;
  359. text-transform:uppercase;
  360. font-size:8px;
  361. font-style:none;
  362. }
  363.  
  364. /* tags */
  365.  
  366. #tags {
  367. width:240px;
  368. height:auto;
  369. color:{color:Tags};
  370. margin-top:5px;
  371. text-align:center;
  372. -webkit-transition: all .8s linear;
  373. }
  374.  
  375. #tags a {
  376. display:inline;
  377. text-transform:none;
  378. font-family:calibri;
  379. font-style:italic;
  380. color:{color:Tags};
  381. font-size:8px;
  382. letter-spacing:1px;
  383. line-height:120%;
  384. -webkit-transition: all .8s linear;
  385. }
  386.  
  387. /* asks */
  388.  
  389. #question {
  390. height:auto;
  391. width:auto;
  392. padding:10px;
  393. border:1px solid {color:Border};
  394. text-align:right;
  395. }
  396.  
  397. #question a{
  398. text-transform:none;
  399. font-style:none;
  400. }
  401.  
  402. #asker {
  403. display:block;
  404. font-size: 8px;
  405. text-transform: uppercase;
  406. font-family: calibri;
  407. letter-spacing: 1px;
  408. color:{color:Asker};
  409. }
  410.  
  411. #answer {
  412. text-align:left;
  413. padding:5px;
  414. height:auto;
  415. }
  416.  
  417. #answer a{
  418. text-align:left;
  419. }
  420.  
  421. /* audio player */
  422.  
  423. .cover {
  424. width:80px;
  425. height:80px;
  426. padding:5px;
  427. margin-top:0px;
  428. border:1px solid {color:Border};
  429. }
  430.  
  431. .playbox {
  432. background:white;
  433. position: absolute;
  434. z-index: 1000;
  435. margin-top: -65px;
  436. margin-left: 26px;
  437. border-radius:100%;
  438. opacity:.5;
  439. -webkit-transition: all .8s linear;
  440. }
  441.  
  442. .playbox:hover {
  443. opacity:1;
  444. -webkit-transition: all .8s linear;
  445. }
  446.  
  447. .playbutton {
  448. width: 20px;
  449. height: 30px;
  450. overflow: hidden;
  451. position: relative;
  452. z-index: 1000;
  453. margin: 5px 14px 3px 6px;
  454. }
  455.  
  456. .audioinfo {
  457. display:inline;
  458. float:right;
  459. width:auto;
  460. height:auto;
  461. text-align:center;
  462. padding:10px;
  463. font-size: 7px;
  464. text-transform: uppercase;
  465. font-family: calibri;
  466. letter-spacing: 1px;
  467. border:1px solid {color:Border};
  468. }
  469.  
  470. /* quotes */
  471.  
  472. .quote{
  473. text-align:right;
  474. font-size: 7px;
  475. text-transform: uppercase;
  476. font-family: calibri;
  477. letter-spacing: 1px;
  478. border:1px solid {color:Border};
  479. padding:5px;
  480. }
  481.  
  482. .source {
  483. text-align:left;
  484. font-size: 7px;
  485. text-transform: uppercase;
  486. font-family: calibri;
  487. letter-spacing: 1px;
  488. padding:5px;
  489. margin-left:30px;
  490. margin-top:5px;
  491. }
  492.  
  493. /* credit */
  494.  
  495. #cred {
  496. position:fixed;
  497. right:-160px;
  498. bottom:10px;
  499. padding:5px;
  500. width:auto;
  501. height:auto;
  502. background:white;
  503. color:{color:Body};
  504. border: 1px solid {color:Border};
  505. -webkit-transition: all 1s linear;
  506. }
  507.  
  508. #cred a{
  509. text-align:center;
  510. color:{color:Body};
  511. font-style:bold;
  512. font-size: 6px;
  513. text-transform: uppercase;
  514. font-family: calibri;
  515. letter-spacing: 1px;
  516. border-radius:2px;
  517. }
  518.  
  519. #cred img {
  520. height:auto;
  521. width:auto;
  522. position:fixed;
  523. bottom:10px;
  524. right:10px;
  525. -webkit-transition: all 1s linear;
  526. }
  527.  
  528. #cred:hover {
  529. right:30px;
  530. -webkit-transition: all 1s linear;
  531. }
  532.  
  533. </style>
  534.  
  535. <div id="sidebar">
  536.  
  537.  
  538.  
  539. {block:Pagination}
  540. <div id="pagination">
  541. {block:PreviousPage}
  542. <a href="{PreviousPage}">-</a>
  543. {/block:PreviousPage}
  544.  
  545. {block:JumpPagination length="5"}
  546. {block:CurrentPage}
  547. <span class="current_page">{PageNumber}</span>
  548. {/block:CurrentPage}
  549.  
  550. {block:JumpPage}
  551. <a class="jump_page" href="{URL}">{PageNumber}</a>
  552. {/block:JumpPage}
  553. {/block:JumpPagination}
  554.  
  555. {block:NextPage}
  556. <a href="{NextPage}">+</a>
  557. {/block:NextPage}
  558. </div>
  559. {/block:Pagination}
  560.  
  561. <div id="photo"><img src="{image:Sidebar}"></div>
  562. <div id="title"><a href="/">{Title}</a></div>
  563.  
  564.  
  565. <div id="links">
  566. <a href="/ask">mail</a><br><br>
  567. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}<br><br>
  568. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2}<br><br>
  569. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3}<br><br>
  570. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a>{/block:ifLink4}
  571. </div>
  572.  
  573. <div id="description">{Description}</div>
  574.  
  575. </div>
  576.  
  577. <div id="entries">
  578.  
  579. {block:Posts}
  580.  
  581. <div id="post">
  582.  
  583. {block:Text}
  584. <h1>{block:Title}<b>{Title}</b>{/block:Title}</h1>
  585. {Body}
  586. {/block:Text}
  587.  
  588. {block:Photo}
  589. {LinkOpenTag}
  590. <img src="{PhotoURL-250}" />
  591. {LinkCloseTag}
  592. {block:Caption}{Caption}{/block:Caption}
  593. {/block:Photo}
  594.  
  595. {block:Photoset}
  596. {Photoset-250}
  597. {block:Caption}{Caption}{/block:Caption}
  598. {/block:Photoset}
  599.  
  600. {block:Link}
  601. <h1><b><a href="{URL}" {Target}>{Name}</a></b></h1>
  602. {block:Description}{Description}{/block:Description}
  603. {/block:Link}
  604.  
  605. {block:Chat}
  606. {block:Title}<h1><b>{Title}</b></h1>{/block:Title}
  607. {block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}
  608. {/block:Chat}
  609.  
  610. {block:Video}
  611. {Video-250}
  612. {block:Caption}{Caption}{/block:Caption}
  613. {/block:Video}
  614.  
  615. {block:Quote}
  616. <div class="quote">
  617. ❝{Quote}❞
  618. </div>
  619. {block:Source}<div class="source"><b>-{Source}</b></div>{/block:Source}
  620. {/block:Quote}
  621.  
  622. {block:Answer}
  623. <div id="asker"><b>{Asker}</b></div>
  624. <div id="question">{Question}</div>
  625. <div id="answer">{Answer}</div>
  626. {/block:Answer}
  627.  
  628. {block:Audio}
  629. {block:AlbumArt}
  630. <img src="{AlbumArtURL}" class="cover" />
  631. {/block:AlbumArt}
  632.  
  633. <div class="playbox"><div class="playbutton">
  634. {block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}
  635. </div>
  636. </div>
  637.  
  638. <div class="audioinfo">
  639. {block:TrackName}<b>Title:</b> {TrackName}<br>{/block:TrackName}
  640. {block:Artist}<b>Artist:</b> {Artist}<br>{/block:Artist}
  641. {/block:ExternalAudio}<b>Played:</b> {PlayCount} times
  642. </div>
  643. {/block:Audio}
  644.  
  645. <div id="postinfo">
  646.  
  647. <div id="info">
  648.  
  649. <a href="{ReblogURL}" target="_blank" title="reblog?" style="padding:5px;" />reblog</a>
  650.  
  651. <a href="{Permalink}">{TimeAgo}</a>
  652.  
  653. {block:NoteCount}
  654. <a href="{Permalink}">
  655. <font color="{color:NoteCount}">{NoteCount}</font></a>
  656. {/block:NoteCount}
  657.  
  658.  
  659. {block:RebloggedFrom}
  660. <a href="{ReblogParentURL}">via</a>
  661. {/block:RebloggedFrom}
  662.  
  663. {block:ContentSource}
  664. <a href="{SourceURL}">source</a>
  665. {/block:ContentSource}
  666. </div> <!-- end info -->
  667.  
  668. {block:HasTags}
  669. <div id="tags">
  670. {block:Tags}<a href="{TagURL}">{Tag},</a>
  671. {/block:Tags}</div>
  672. {/block:HasTags}
  673.  
  674. </div> <!-- end post info -->
  675.  
  676. </div>
  677.  
  678. {block:PostNotes}
  679. <div id="notes">{PostNotes}</div>
  680. {/block:PostNotes}
  681. {/block:Posts}
  682.  
  683. </div>
  684.  
  685. <div id="cred"><a href="http://precioussammy.tumblr.com/"><img src="http://static.tumblr.com/d3afqhp/CYZnbyomn/tumblr_lm6ow3rkt81qfoi4t.gif">themes by liz</a></div>
  686.  
  687.  
  688. </body>
  689. </html>
Advertisement
Add Comment
Please, Sign In to add comment