precioussammy

sugarcube

Jan 8th, 2015
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.35 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:SidebarLeft" content="#9EDFFF" />
  29. <meta name="color:SidebarRight" content="#CC99FF" />
  30. <meta name="color:Body" content="#000000" />
  31. <meta name="color:Title" content="#000000" />
  32. <meta name="color:Description" content="#ffffff" />
  33. <meta name="color:Info" content="#000000" />
  34. <meta name="color:Border" content="#eeeeee" />
  35. <meta name="color:Italic" content="#faacd7" />
  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: [ 'Poiret+One::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. -webkit-transition: all .8s linear;
  138. }
  139.  
  140. a:visited {
  141. text-decoration:none;
  142. color:{color:Links};
  143. -webkit-transition: all .8s linear;
  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. .container {
  194. width: 660px;
  195. height: 590px;
  196. margin: 0 auto;
  197. left: 300px;
  198. background:white;
  199. position:fixed;
  200. top: 92px;
  201. overflow:auto;
  202. border: 1px solid {color:Border};
  203. box-shadow:0px 0px 5px rgba(0,0,0,.2);
  204. }
  205.  
  206. #entries {
  207. width:400px;
  208. height:auto;
  209. margin: 0 auto;
  210. margin-bottom:50px;
  211. }
  212.  
  213. #post {
  214. width:400px;
  215. height:auto;
  216. margin-top:20px;
  217. padding:10px;
  218. background:white;
  219. border: 1px solid {color:Border};
  220. box-shadow:0px 0px 5px rgba(0,0,0,.2);
  221. }
  222.  
  223. /* sidebar */
  224.  
  225. #sidebar {
  226. width:662px;
  227. height:62px;
  228. position:fixed;
  229. margin-left:300px;
  230. top:684px;
  231. background: -webkit-linear-gradient(left top,{color:SidebarLeft},{color:SidebarRight});
  232. box-shadow:3px 3px 1px rgba(0,0,0,.4);
  233. }
  234.  
  235. #photo img {
  236. width:60px;
  237. height:60px;
  238. margin-top:585px;
  239. margin-left:0px;
  240. border: 1px solid {color:Border};
  241. position:fixed;
  242. border: 1px solid {color:Border};
  243. box-shadow:3px 3px 1px rgba(0,0,0,.4);
  244. }
  245.  
  246. #title {
  247. font-size:47px;
  248. width:660px;
  249. margin-top:-645px;
  250. margin-left:10px;
  251. margin-bottom:10px;
  252. padding-top:20px;
  253. padding-bottom:20px;
  254. letter-spacing:6px;
  255. text-align:left;
  256. color:{color:Title};
  257. font-family: 'Poiret One', cursive;
  258. -webkit-transition: all .8s linear;
  259. }
  260.  
  261. #title:hover {
  262. letter-spacing:9px;
  263. -webkit-transition: all .8s linear;
  264. }
  265.  
  266. /* links */
  267.  
  268. #links {
  269. position:fixed;
  270. width:400px;
  271. height:auto;
  272. margin-top:610px;
  273. margin-left:300px;
  274. -webkit-transition: all .8s linear;
  275. }
  276.  
  277. #links a{
  278. font-size:0px;
  279. background:{color:SidebarLinks};
  280. border:1px solid {color:SidebarLinks};
  281. box-shadow:1px 1px 5px rgba(0,0,0,.7);
  282. padding:5px;
  283. margin-left:40px;
  284. -webkit-transition: all .8s linear;
  285. }
  286.  
  287. #links a:hover {
  288. background:{color:SidebarLinksHover};
  289. border:1px solid {color:SidebarLinksHover};
  290. -webkit-transition: all .8s linear;
  291. }
  292.  
  293. /* tooltips appearance */
  294.  
  295. #s-m-t-tooltip {
  296. display:inline-block;
  297. text-align:center;
  298. color:black;
  299. font-style:bold;
  300. background:white;
  301. font-size: 6px;
  302. text-transform: uppercase;
  303. font-family: Century Gothic;
  304. letter-spacing: 1px;
  305. border-radius:2px;
  306. max-width:100px;
  307. padding:2px 3px 3px 2px;
  308. margin:20px 0px 0px 20px;
  309. z-index:9999999999999;
  310. border:1px solid {color:Border};
  311. box-shadow:1px 1px 3px rgba(0,0,0,.1);
  312. }
  313.  
  314. /* description */
  315.  
  316. #description {
  317. font-size:9px;
  318. color:{color:Description};
  319. margin-top:590px;
  320. margin-left:70px;
  321. text-align:justify;
  322. width:200px;
  323. height:auto;
  324. padding:10px;
  325. }
  326.  
  327. #description a {
  328. color:{color:Description};
  329. }
  330.  
  331. /* pagi */
  332.  
  333. #pagination {
  334. width:660px;
  335. margin-top:10px;
  336. margin-left:0px;
  337. text-align:center;
  338. position:fixed;
  339. padding:5px;
  340. font-size: 10px;
  341. text-align:center;
  342. font-family: Consolas;
  343. color:{color:Pagination};
  344. }
  345.  
  346. #pagination a {
  347. color:{color:Pagination};
  348. }
  349.  
  350. #pagination a:hover {
  351. color:{color:PaginationHover};
  352. }
  353.  
  354. /* post info */
  355.  
  356. #postinfo {
  357. margin-top:5px;
  358. padding:5px;
  359. color:{color:Info};
  360. border-top:1px solid {color:Border};
  361. }
  362.  
  363. /* via & source */
  364.  
  365. #info {
  366. margin-bottom:5px;
  367. text-align:right;
  368. text-transform:uppercase;
  369. font-size:8px;
  370. font-style:none;
  371. color:{color:Body};
  372. }
  373.  
  374. /* tags */
  375.  
  376. #tags {
  377. width:390px;
  378. height:auto;
  379. color:{color:Tags};
  380. margin-top:0px;
  381. text-align:left;
  382. -webkit-transition: all .8s linear;
  383. }
  384.  
  385. #tags a {
  386. display:inline;
  387. text-transform:none;
  388. font-family:cambria;
  389. font-style:italic;
  390. color:{color:Tags};
  391. font-size:8px;
  392. letter-spacing:1px;
  393. line-height:10%;
  394. -webkit-transition: all .8s linear;
  395. }
  396.  
  397. #tags a:hover {
  398. letter-spacing:2px;
  399. -webkit-transition: all .8s linear;
  400. }
  401. /* asks */
  402.  
  403. #question {
  404. font-size:10px;
  405. display:block;
  406. height:auto;
  407. width:auto;
  408. padding:10px;
  409. background:{color:SidebarBackground};
  410. text-align:left;
  411. border-bottom:1px solid {color:Border};
  412. }
  413.  
  414. #question a{
  415. text-transform:none;
  416. font-style:none;
  417. }
  418.  
  419. #answer {
  420. text-transform:none;
  421. font-style:none;
  422. text-align:center;
  423. padding:1px;
  424. font-size:9px;
  425. height:auto;
  426. }
  427.  
  428. #answer a{
  429. text-align:left;
  430. }
  431.  
  432. /* audio player */
  433.  
  434. .cover {
  435. width:80px;
  436. height:80px;
  437. padding:5px;
  438. margin-top:0px;
  439. border:1px solid {color:Border};
  440. }
  441.  
  442. .playbox {
  443. background:white;
  444. position: absolute;
  445. z-index: 1000;
  446. margin-top: -65px;
  447. margin-left: 26px;
  448. border-radius:100%;
  449. opacity:.5;
  450. -webkit-transition: all .8s linear;
  451. }
  452.  
  453. .playbox:hover {
  454. opacity:1;
  455. -webkit-transition: all .8s linear;
  456. }
  457.  
  458. .playbutton {
  459. width: 20px;
  460. height: 30px;
  461. overflow: hidden;
  462. position: relative;
  463. z-index: 1000;
  464. margin: 5px 14px 3px 6px;
  465. }
  466.  
  467. .audioinfo {
  468. display:inline;
  469. float:right;
  470. width:auto;
  471. height:auto;
  472. text-align:center;
  473. padding:10px;
  474. font-size: 7px;
  475. text-transform: uppercase;
  476. font-family: Century Gothic;
  477. letter-spacing: 1px;
  478. border:1px solid {color:Border};
  479. }
  480.  
  481. /* quotes */
  482.  
  483. .quote{
  484. text-align:right;
  485. font-size: 7px;
  486. text-transform: uppercase;
  487. font-family: Century Gothic;
  488. letter-spacing: 1px;
  489. border:1px solid {color:Border};
  490. padding:5px;
  491. }
  492.  
  493. .source {
  494. text-align:left;
  495. font-size: 7px;
  496. text-transform: uppercase;
  497. font-family: Century Gothic;
  498. letter-spacing: 1px;
  499. padding:5px;
  500. margin-left:30px;
  501. margin-top:5px;
  502. }
  503.  
  504. /* credit */
  505.  
  506. #cred {
  507. position:fixed;
  508. right:-160px;
  509. bottom:10px;
  510. padding:5px;
  511. width:auto;
  512. height:auto;
  513. background:white;
  514. color:{color:Body};
  515. border: 1px solid {color:Border};
  516. -webkit-transition: all 1s linear;
  517. }
  518.  
  519. #cred a{
  520. text-align:center;
  521. color:{color:Body};
  522. font-style:bold;
  523. font-size: 6px;
  524. text-transform: uppercase;
  525. font-family: Century Gothic;
  526. letter-spacing: 1px;
  527. border-radius:2px;
  528. }
  529.  
  530. #cred img {
  531. height:auto;
  532. width:auto;
  533. position:fixed;
  534. bottom:10px;
  535. right:10px;
  536. -webkit-transition: all 1s linear;
  537. }
  538.  
  539. #cred:hover {
  540. right:30px;
  541. -webkit-transition: all 1s linear;
  542. }
  543.  
  544. </style>
  545.  
  546.  
  547.  
  548. <div id="sidebar">
  549.  
  550. <div id="title">{Title}</div>
  551.  
  552. <div id="links">
  553. <a href="/" title="home"></a>
  554. <a href="/ask" title="mail"></a>
  555. {block:ifLink1}<a href="{text:Link1}" title="{text:Link1 Title}"></a>{/block:ifLink1}
  556. {block:ifLink2}<a href="{text:Link2}" title="{text:Link2 Title}"></a>{/block:ifLink2}
  557. {block:ifLink3}<a href="{text:Link3}" title="{text:Link3 Title}"></a>{/block:ifLink3}
  558. {block:ifLink4}<a href="{text:Link4}" title="{text:Link4 Title}"></a>{/block:ifLink4}
  559. </div>
  560.  
  561. <div id="photo"><img src="{image:sidebar}"></div>
  562.  
  563. <div id="description">{Description}</div>
  564.  
  565. {block:Pagination}
  566. <div id="pagination">
  567. {block:PreviousPage}
  568. <a href="{PreviousPage}"> ←back</a>
  569. {/block:PreviousPage}
  570.  
  571. {block:NextPage}
  572. <a href="{NextPage}">next→</a>
  573. {/block:NextPage}
  574. </div>
  575. {/block:Pagination}
  576.  
  577.  
  578.  
  579. </div>
  580.  
  581. <div class="container">
  582.  
  583.  
  584. <div id="entries">
  585.  
  586. {block:Posts}
  587.  
  588. <div id="post">
  589.  
  590. {block:Text}
  591. <h1>{block:Title}<b>{Title}</b>{/block:Title}</h1>
  592. {Body}
  593. {/block:Text}
  594.  
  595. {block:Photo}
  596. {LinkOpenTag}
  597. <img src="{PhotoURL-400}" />
  598. {LinkCloseTag}
  599. {block:Caption}{Caption}{/block:Caption}
  600. {/block:Photo}
  601.  
  602. {block:Photoset}
  603. {Photoset-400}
  604. {block:Caption}{Caption}{/block:Caption}
  605. {/block:Photoset}
  606.  
  607. {block:Link}
  608. <h1><b><a href="{URL}" {Target}>{Name}</a></b></h1>
  609. {block:Description}{Description}{/block:Description}
  610. {/block:Link}
  611.  
  612. {block:Chat}
  613. {block:Title}<h1><b>{Title}</b></h1>{/block:Title}
  614. {block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}
  615. {/block:Chat}
  616.  
  617. {block:Video}
  618. {Video-400}
  619. {block:Caption}{Caption}{/block:Caption}
  620. {/block:Video}
  621.  
  622. {block:Quote}
  623. <div class="quote">
  624. ❝{Quote}❞
  625. </div>
  626. {block:Source}<div class="source"><b>-{Source}</b></div>{/block:Source}
  627. {/block:Quote}
  628.  
  629. {block:Answer}
  630. <div id="question"><b>{Asker}:</b> {Question}</div>
  631. <div id="answer">{Answer}</div>
  632. {/block:Answer}
  633.  
  634.  
  635. {block:Audio}
  636. {block:AlbumArt}
  637. <img src="{AlbumArtURL}" class="cover" />
  638. {/block:AlbumArt}
  639.  
  640. <div class="playbox"><div class="playbutton">
  641. {block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}
  642. </div>
  643. </div>
  644.  
  645. <div class="audioinfo">
  646. {block:TrackName}<b>Title:</b> {TrackName}<br>{/block:TrackName}
  647. {block:Artist}<b>Artist:</b> {Artist}<br>{/block:Artist}
  648. {/block:ExternalAudio}<b>Played:</b> {PlayCount} times
  649. </div>
  650. {/block:Audio}
  651.  
  652. <div id="postinfo">
  653.  
  654. <div id="info">
  655.  
  656. {block:NoteCount}
  657. posted <a href="{Permalink}">{TimeAgo}</a> with <a href="{Permalink}">{NoteCountWithLabel}</a>
  658. {/block:NoteCount}
  659.  
  660.  
  661. {block:RebloggedFrom}
  662. <a href="{ReblogParentURL}">via</a>
  663. {/block:RebloggedFrom}
  664.  
  665. {block:ContentSource}
  666. <a href="{SourceURL}">source</a>
  667. {/block:ContentSource}
  668. </div> <!-- end info -->
  669.  
  670. {block:HasTags}
  671. <div id="tags">
  672. {block:Tags}<a href="{TagURL}">{Tag},</a>
  673. {/block:Tags}</div>
  674. {/block:HasTags}
  675.  
  676. </div> <!-- end post info -->
  677.  
  678. </div>
  679.  
  680. {block:PostNotes}
  681. <div id="notes">{PostNotes}</div>
  682. {/block:PostNotes}
  683. {/block:Posts}
  684.  
  685. </div>
  686. </div>
  687.  
  688. <div id="cred"><a href="http://precioussammy.tumblr.com/"><img src="http://static.tumblr.com/d3afqhp/CYZnbyomn/tumblr_lm6ow3rkt81qfoi4t.gif">precioussammy</a></div>
  689.  
  690. </body>
  691. </html>
Advertisement
Add Comment
Please, Sign In to add comment