Advertisement
precioussammy

avalanche

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