Advertisement
precioussammy

woods

Oct 20th, 2014
2,993
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.09 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:SidebarBackground" content="#000000" />
  29. <meta name="color:Body" content="#000000" />
  30. <meta name="color:Title" content="#000000" />
  31. <meta name="color:Description" content="#ffffff" />
  32. <meta name="color:Info" content="#000000" />
  33. <meta name="color:Border" content="#eeeeee" />
  34. <meta name="color:Italic" content="#faacd7" />
  35. <meta name="color:NoteCount" content="#000000" />
  36. <meta name="color:Bold" content="#000000" />
  37. <meta name="color:Tags" content="#000000" />
  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.  
  58. <!-- tooltips -->
  59.  
  60. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  61. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  62. <script>
  63. (function($){
  64. $(document).ready(function(){
  65. $("[title]").style_my_tooltips({
  66. tip_follows_cursor:true,
  67. tip_delay_time:90,
  68. tip_fade_speed:600,
  69. attribute:"title"
  70. });
  71. });
  72. })(jQuery);
  73. </script>
  74.  
  75. <!-- fonts (if you use them) -->
  76. <script type="text/javascript">
  77. WebFontConfig = {
  78. google: { families: [ 'Amatic+SC::latin' ] }
  79. };
  80. (function() {
  81. var wf = document.createElement('script');
  82. wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  83. '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  84. wf.type = 'text/javascript';
  85. wf.async = 'true';
  86. var s = document.getElementsByTagName('script')[0];
  87. s.parentNode.insertBefore(wf, s);
  88. })(); </script>
  89.  
  90.  
  91. <style type="text/css">
  92.  
  93. /* scroll bar */
  94.  
  95. ::-webkit-scrollbar-thumb {
  96. background:{color:SidebarBackground};
  97. border: 2px solid white;
  98. height:auto;
  99. }
  100.  
  101. ::-webkit-scrollbar {
  102. height:9px;
  103. width:9px;
  104. background:{color:SidebarBackground};
  105. border:4px solid white;
  106. }
  107.  
  108. ::selection {
  109. background:white;
  110. }
  111.  
  112. /* body/post defaults */
  113.  
  114. h1 {
  115. font-size: 7px;
  116. text-transform: uppercase;
  117. font-family: Century Gothic;
  118. letter-spacing: 1px;
  119. color:{color:Body};
  120. }
  121.  
  122. body {
  123. background:{color:Background};
  124. {block:ifbackgroundimage}background-image:url('{image:background}');{/block:ifbackgroundimage}
  125. color:{color:Body};
  126. margin:0px;
  127. font-family:Calibri;
  128. font-style:none;
  129. font-size:9px;
  130. line-height:100%;
  131. cursor: url(http://i.imgur.com/ZOrzC.png), progress;
  132. }
  133.  
  134. a:link, a:active {
  135. text-decoration:none;
  136. color:{color:Links};
  137. }
  138.  
  139. a:visited {
  140. text-decoration:none;
  141. color:{color:Links};
  142. }
  143.  
  144. a:hover {
  145. text-decoration:none;
  146. color:{color:LinksHover};
  147. cursor: url(http://cur.cursors-4u.net/others/oth-6/oth589.cur), progress;
  148. -webkit-transition: all .8s linear;
  149. }
  150.  
  151. b, strong, .strong {
  152. color:{color:Bold};
  153. }
  154.  
  155. i, em, .em {
  156. color:{color:Italic};
  157. }
  158.  
  159. small{
  160. font-size:7px;
  161. }
  162.  
  163. big{
  164. font-size:12px;
  165. }
  166.  
  167. blockquote {
  168. padding-left:5px;
  169. border-left:2px solid {color:Body};
  170. }
  171.  
  172. img {
  173. border:none;
  174. }
  175.  
  176. /* tumblr controls */
  177.  
  178. iframe#tumblr_controls{
  179. white-space:nowrap;
  180. -webkit-filter: invert(100%);
  181. -moz-filter: invert(100%);
  182. -o-filter: invert(100%);
  183. -ms-filter: invert(100%);
  184. filter: invert(100%);
  185. opacity:.7;
  186. -webkit-transition: all .8s linear;
  187. }
  188.  
  189. /* posts */
  190.  
  191. .container {
  192. width: 620px;
  193. height: 590px;
  194. margin: 0 auto;
  195. left: 500px;
  196. position:fixed;
  197. top: 7%;
  198. overflow:auto;
  199. border: 20px solid {color:SidebarBackground};
  200. }
  201.  
  202. #entries {
  203. width:400px;
  204. height:auto;
  205. margin: 0 auto;
  206. margin-bottom:50px;
  207. }
  208.  
  209. #post {
  210. width:400px;
  211. height:auto;
  212. margin-top:20px;
  213. padding:10px;
  214. background:white;
  215. }
  216.  
  217. /* sidebar */
  218.  
  219. #sidebar {
  220. width:250px;
  221. height:630px;
  222. position:fixed;
  223. margin-left:255px;
  224. top:7%;
  225. background-color:{color:SidebarBackground};
  226. }
  227.  
  228. #photo img {
  229. width:200px;
  230. height:100px;
  231. margin-top:10px;
  232. margin-left:20px;
  233. position:fixed;
  234. border: 10px solid {color:Border};
  235. }
  236.  
  237. #title {
  238. font-size:30px;
  239. width:220px;
  240. margin-top:80px;
  241. margin-left:20px;
  242. margin-bottom:10px;
  243. background-color:{color:Border};
  244. padding-top:20px;
  245. padding-bottom:20px;
  246. letter-spacing:3px;
  247. text-align:center;
  248. color:{color:Title};
  249. font-family: 'Amatic SC', cursive;
  250. }
  251.  
  252. /* links */
  253.  
  254. #links {
  255. position:fixed;
  256. background-color:{color:Border};
  257. width:220px;
  258. height:auto;
  259. text-align:center;
  260. margin-top:20px;
  261. margin-left:20px;
  262. padding-top:20px;
  263. padding-bottom:20px;
  264. -webkit-transition: all .8s linear;
  265. }
  266.  
  267. #links a{
  268. background-color:{color:SidebarBackground};
  269. color:{color:SidebarLinks};
  270. padding:5px;
  271. padding-left:10px;
  272. padding-right:10px;
  273. font-size:8px;
  274. -webkit-transition: all .8s linear;
  275. }
  276.  
  277. #links a:hover {
  278. color:{color:SidebarLinksHover};
  279. -webkit-transition: all .8s 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: Century Gothic;
  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. font-size:9px;
  307. background-color:{color:Border};
  308. color:{color:Description};
  309. margin-top:155px;
  310. margin-left:20px;
  311. width:200px;
  312. height:auto;
  313. padding:10px;
  314. }
  315.  
  316. #description a {
  317. color:{color:Description};
  318. }
  319.  
  320. /* pagi */
  321.  
  322. #pagination {
  323. width:210px;
  324. margin-top:90px;
  325. margin-left:20px;
  326. text-align:left;
  327. position:fixed;
  328. padding:5px;
  329. font-size: 8px;
  330. text-align:center;
  331. font-family: Consolas;
  332. background-color:{color:Border};
  333. color:{color:Pagination};
  334. }
  335.  
  336. #pagination a {
  337. color:{color:Pagination};
  338. }
  339.  
  340. #pagination a:hover {
  341. color:{color:PaginationHover};
  342. }
  343.  
  344. /* post info */
  345.  
  346. #postinfo {
  347. margin-top:5px;
  348. padding:5px;
  349. color:{color:Info};
  350. border-top:1px solid {color:Border};
  351. }
  352.  
  353. /* via & source */
  354.  
  355. #info {
  356. margin-bottom:5px;
  357. text-align:right;
  358. text-transform:uppercase;
  359. font-size:8px;
  360. font-style:none;
  361. color:{color:Body};
  362. border-bottom:1px solid {color:SidebarBackground};
  363. }
  364.  
  365. /* tags */
  366.  
  367. #tags {
  368. width:390px;
  369. height:auto;
  370. color:{color:Tags};
  371. margin-top:0px;
  372. text-align:left;
  373. -webkit-transition: all .8s linear;
  374. }
  375.  
  376. #tags a {
  377. display:inline;
  378. text-transform:none;
  379. font-family:cambria;
  380. font-style:italic;
  381. color:{color:Tags};
  382. font-size:8px;
  383. letter-spacing:1px;
  384. line-height:10%;
  385. -webkit-transition: all .8s linear;
  386. }
  387.  
  388. #tags a:hover {
  389. color:{color:LinksHover};
  390. }
  391. /* asks */
  392.  
  393. #question {
  394. font-size:10px;
  395. display:block;
  396. height:auto;
  397. width:auto;
  398. padding:10px;
  399. background:{color:SidebarBackground};
  400. text-align:left;
  401. }
  402.  
  403. #question a{
  404. text-transform:none;
  405. font-style:none;
  406. }
  407.  
  408. #answer {
  409. text-transform:none;
  410. font-style:none;
  411. text-align:center;
  412. padding:1px;
  413. font-size:9px;
  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: Century Gothic;
  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: Century Gothic;
  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: Century Gothic;
  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: Century Gothic;
  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. <div id="title">{Title}</div>
  538. <div id="photo"><img src="{image:sidebar}"></div>
  539. <div id="description">{Description}</div>
  540.  
  541. <div id="links">
  542. <a href="/">home</a>
  543. <a href="/ask">mail</a>
  544. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}
  545. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2}
  546. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3}
  547. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a>{/block:ifLink4}
  548. </div>
  549.  
  550.  
  551. {block:Pagination}
  552. <div id="pagination">
  553. {block:PreviousPage}
  554. <a href="{PreviousPage}">-</a>
  555. {/block:PreviousPage}
  556.  
  557. {block:JumpPagination length="5"}
  558. {block:CurrentPage}
  559. <span class="current_page">{PageNumber}</span>
  560. {/block:CurrentPage}
  561.  
  562. {block:JumpPage}
  563. <a class="jump_page" href="{URL}">{PageNumber}</a>
  564. {/block:JumpPage}
  565. {/block:JumpPagination}
  566.  
  567. {block:NextPage}
  568. <a href="{NextPage}">+</a>
  569. {/block:NextPage}
  570. </div>
  571. {/block:Pagination}
  572.  
  573. </div>
  574.  
  575. <div class="container">
  576.  
  577.  
  578. <div id="entries">
  579.  
  580. {block:Posts}
  581.  
  582. <div id="post">
  583.  
  584. {block:Text}
  585. <h1>{block:Title}<b>{Title}</b>{/block:Title}</h1>
  586. {Body}
  587. {/block:Text}
  588.  
  589. {block:Photo}
  590. {LinkOpenTag}
  591. <img src="{PhotoURL-400}" />
  592. {LinkCloseTag}
  593. {block:Caption}{Caption}{/block:Caption}
  594. {/block:Photo}
  595.  
  596. {block:Photoset}
  597. {Photoset-400}
  598. {block:Caption}{Caption}{/block:Caption}
  599. {/block:Photoset}
  600.  
  601. {block:Link}
  602. <h1><b><a href="{URL}" {Target}>{Name}</a></b></h1>
  603. {block:Description}{Description}{/block:Description}
  604. {/block:Link}
  605.  
  606. {block:Chat}
  607. {block:Title}<h1><b>{Title}</b></h1>{/block:Title}
  608. {block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}
  609. {/block:Chat}
  610.  
  611. {block:Video}
  612. {Video-400}
  613. {block:Caption}{Caption}{/block:Caption}
  614. {/block:Video}
  615.  
  616. {block:Quote}
  617. <div class="quote">
  618. ❝{Quote}❞
  619. </div>
  620. {block:Source}<div class="source"><b>-{Source}</b></div>{/block:Source}
  621. {/block:Quote}
  622.  
  623. {block:Answer}
  624. <div id="question"><b>{Asker}:</b> {Question}</div>
  625. <div id="answer">{Answer}</div>
  626. {/block:Answer}
  627.  
  628.  
  629. {block:Audio}
  630. {block:AlbumArt}
  631. <img src="{AlbumArtURL}" class="cover" />
  632. {/block:AlbumArt}
  633.  
  634. <div class="playbox"><div class="playbutton">
  635. {block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}
  636. </div>
  637. </div>
  638.  
  639. <div class="audioinfo">
  640. {block:TrackName}<b>Title:</b> {TrackName}<br>{/block:TrackName}
  641. {block:Artist}<b>Artist:</b> {Artist}<br>{/block:Artist}
  642. {/block:ExternalAudio}<b>Played:</b> {PlayCount} times
  643. </div>
  644. {/block:Audio}
  645.  
  646. <div id="postinfo">
  647.  
  648. <div id="info">
  649.  
  650. {block:NoteCount}
  651. posted <a href="{Permalink}">{TimeAgo}</a> with <a href="{Permalink}">{NoteCountWithLabel}</a>
  652. {/block:NoteCount}
  653.  
  654.  
  655. {block:RebloggedFrom}
  656. <a href="{ReblogParentURL}">via</a>
  657. {/block:RebloggedFrom}
  658.  
  659. {block:ContentSource}
  660. <a href="{SourceURL}">source</a>
  661. {/block:ContentSource}
  662. </div> <!-- end info -->
  663.  
  664. {block:HasTags}
  665. <div id="tags">
  666. {block:Tags}<a href="{TagURL}">{Tag},</a>
  667. {/block:Tags}</div>
  668. {/block:HasTags}
  669.  
  670. </div> <!-- end post info -->
  671.  
  672. </div>
  673.  
  674. {block:PostNotes}
  675. <div id="notes">{PostNotes}</div>
  676. {/block:PostNotes}
  677. {/block:Posts}
  678.  
  679. </div>
  680. </div>
  681.  
  682. <div id="cred"><a href="http://precioussammy.tumblr.com/"><img src="http://static.tumblr.com/d3afqhp/CYZnbyomn/tumblr_lm6ow3rkt81qfoi4t.gif">precioussammy</a></div>
  683.  
  684. </body>
  685. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement