Advertisement
257px

Lisztomania

Dec 12th, 2014
2,601
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.14 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!-- Code by 257pxthemes. -->
  5.  
  6. <title>{Title}</title>
  7.  
  8. <link rel="shortcut icon" href="{Favicon}">
  9. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  10. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  11.  
  12. <!--Default Variables-->
  13.  
  14. <meta name="color:Background" content="#ffffff"/>
  15. <meta name="color:Text" content="#aaaaaa"/>
  16. <meta name="color:Link" content="#000000"/>
  17. <meta name="color:Accent" content="#F9E4E9"/>
  18. <meta name="color:title" content="#bbe2f1">
  19.  
  20. <meta name="image:Sidebar" content=""/>
  21. <meta name="image:Transparent Image" content=""/>
  22. <meta name="image:Post Bg" content=""/>
  23. <meta name="image:Background" content=""/>
  24.  
  25. <meta name="if:Post Border" content=""/>
  26. <meta name="if:Background Full" content=""/>
  27. <meta name="if:Background Repeat" content=""/>
  28. <meta name="if:250px Posts" content=""/>
  29. <meta name="if:400px Posts" content=""/>
  30.  
  31. <meta name="text:png height" content="70%" />
  32. <meta name="text:png across" content="70%" />
  33. <meta name="text:Link 1 URL" content="" />
  34. <meta name="text:Home Title" content="Index" />
  35. <meta name="text:Ask Title" content="Inquire" />
  36. <meta name="text:Link 1" content="" />
  37. <meta name="text:Link 2 URL" content="" />
  38. <meta name="text:Link 2" content="" />
  39. <meta name="text:Link 3 URL" content="" />
  40. <meta name="text:Link 3" content="" />
  41.  
  42. <link href='http://fonts.googleapis.com/css?family=Raleway:300' rel='stylesheet' type='text/css'>
  43. <!-- jquery for tooltips-->
  44.  
  45.  
  46. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  47.  
  48. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  49.  
  50. <script>
  51.  
  52. (function($){
  53.  
  54. $(document).ready(function(){
  55.  
  56. $("a[title]").style_my_tooltips({
  57.  
  58. tip_follows_cursor:true,
  59.  
  60. tip_delay_time:30,
  61.  
  62. tip_fade_speed:300,
  63.  
  64. attribute:"title"
  65.  
  66. });
  67.  
  68. });
  69.  
  70. })(jQuery);
  71.  
  72. </script>
  73.  
  74.  
  75.  
  76.  
  77. <!--CSS customization here. -->
  78.  
  79. <style type="text/css">
  80.  
  81. #s-m-t-tooltip{
  82. position:absolute;
  83. margin-top: 15px;
  84. z-index:9999;
  85. background:{color:background};
  86. }
  87.  
  88.  
  89.  
  90. /*basics*/
  91. blockquote {padding:5px 0 5px 30px;
  92. border-left:2px solid {color:accent};
  93. margin-left:30px;
  94. }
  95.  
  96. body {
  97. background-color:{color:background};
  98. color:{color:text};
  99. font-family:arial;
  100. font-size:11px;
  101. text-align:justify;
  102. margin:0;
  103. line-height:16px;
  104. position: relative;
  105. overflow-y: scroll;
  106. overflow-x:hidden;
  107. {block:ifBackgroundRepeat}
  108. background: url("{image:background}") repeat left top fixed;
  109. {/block:ifBackgroundRepeat}
  110. {block:ifBackgroundFull}
  111. background: url("{image:background}") no-repeat center center fixed;
  112. -webkit-background-size: cover;
  113. -moz-background-size: cover;
  114. -o-background-size: cover;
  115. background-size: cover;
  116. {block:ifBackgroundFull}
  117. }
  118.  
  119.  
  120. a {
  121. color:{color:link};
  122. text-decoration:none;
  123. -moz-transition-duration:0.3s;
  124. -webkit-transition-duration:0.3s;
  125. -o-transition-duration:0.3s;
  126. }
  127.  
  128. a:hover {
  129. font-style:italic;
  130. color:{color:accent};
  131. -moz-transition-duration:0.3s;
  132. -webkit-transition-duration:0.3s;
  133. -o-transition-duration:0.3s;
  134. }
  135.  
  136. i {
  137. color:{color:accent};
  138. }
  139.  
  140. b {
  141. color:{color:accent};
  142. }
  143. img{opacity:1;
  144. border:none;
  145. text-decoration:none}
  146.  
  147.  
  148. small {
  149. font-size:9px;}
  150.  
  151. big {
  152. font-size:12px;}
  153.  
  154.  
  155. #title {font-size:12px;
  156. line-height:18px;
  157. font-weight:bold;
  158. margin-bottom:10px;
  159. text-transform:uppercase;
  160. text-align:left;}
  161.  
  162.  
  163. /*sidebar*/
  164. .sidebar {
  165. left:-301px;
  166. text-align:left;
  167. position:fixed;
  168. width:300px;
  169. height:100%;
  170. background: url("{image:sidebar}") no-repeat center center fixed;
  171. -webkit-background-size: cover;
  172. -moz-background-size: cover;
  173. -o-background-size: cover;
  174. background-size: cover;
  175. border:1px solid {color:text};
  176. -webkit-box-shadow: 7px 0px 0px 0px {color:accent};
  177. -moz-box-shadow: 7px 0px 0px 0px {color:accent};
  178. box-shadow: 7px 0px 0px 0px {color:accent};
  179. }
  180.  
  181.  
  182. #blogt {
  183. font-size:25px;
  184. margin-top:15px;
  185. font-family: 'Raleway', sans-serif;
  186. text-transform:lowercase;
  187. color:{color:title};
  188. text-align:right;
  189. padding-right:15px;
  190. text-shadow: 4px 4px 15px {color:accent};
  191. }
  192.  
  193. #blogt:hover{
  194. cursor:help
  195. }
  196.  
  197.  
  198. #links {
  199. margin-top:25px;
  200. line-height:20px;
  201. text-transform:lowercase;
  202. margin-left:30px;
  203. width:200px;
  204. }
  205.  
  206.  
  207. #links a {
  208. width:200px;
  209. font-size:15px;
  210. margin-right:5px;
  211. display:block;
  212. margin-bottom:5px;
  213. font-family: 'Raleway', sans-serif;
  214. text-transform:lowercase;
  215. color:{color:title};
  216. background: url({image:Post Bg});
  217. padding:10px;
  218. {block:ifPostBorder}
  219. border:1px solid {color:text};
  220. -webkit-box-shadow: 7px 7px 0px 0px {color:accent};
  221. -moz-box-shadow: 7px 7px 0px 0px {color:accent};
  222. box-shadow: 7px 7px 0px 0px {color:accent};
  223. {/block:ifPostBorder}
  224. -moz-transition-duration:0.3s;
  225. -webkit-transition-duration:0.3s;
  226. -o-transition-duration:0.3s;
  227. }
  228.  
  229. #links a:hover{
  230. color:{color:accent};
  231. -moz-transition-duration:0.3s;
  232. -webkit-transition-duration:0.3s;
  233. -o-transition-duration:0.3s;
  234. }
  235.  
  236. #description {
  237. width:200px;
  238. text-align:right;
  239. margin:20px 30px;
  240. padding:10px;
  241. {block:ifPostBorder}
  242. border:1px solid {color:text};
  243. -webkit-box-shadow: 7px 7px 0px 0px {color:accent};
  244. -moz-box-shadow: 7px 7px 0px 0px {color:accent};
  245. box-shadow: 7px 7px 0px 0px {color:accent};
  246. {/block:ifPostBorder}
  247. }
  248.  
  249.  
  250. /*pagination*/
  251. #pagination {
  252. margin:50px 0;
  253. text-transform:lowercase;
  254. font-weight:bold;
  255. }
  256. #pagination a {
  257. padding:0 15px;
  258. }
  259.  
  260. /*container*/
  261. #con {
  262. left:50%;
  263. margin-left:-250px;
  264. position:absolute;
  265. }
  266.  
  267.  
  268.  
  269. /*posts*/
  270.  
  271. #entries {
  272. margin-top:75px;
  273. {block:if250pxPosts}
  274. width:250px;
  275. {/block:if250pxPosts}
  276. {block:if400pxPosts}
  277. width:400px;
  278. {/block:if400pxPosts}
  279. }
  280.  
  281.  
  282.  
  283. #posts {
  284. {block:if250pxPosts}
  285. width:250px;
  286. {/block:if250pxPosts}
  287. {block:if400pxPosts}
  288. width:400px;
  289. {/block:if400pxPosts}
  290. {block:IndexPage}
  291. margin-bottom:75px;
  292. {/block:IndexPage}
  293. {block:PermalinkPage}
  294. margin-bottom:50px;
  295. {/block:PermalinkPage}
  296. background: url({image:Post Bg});
  297. padding:25px;
  298. {block:ifPostBorder}
  299. border:1px solid {color:text};
  300. -webkit-box-shadow: 7px 7px 0px 0px {color:accent};
  301. -moz-box-shadow: 7px 7px 0px 0px {color:accent};
  302. box-shadow: 7px 7px 0px 0px {color:accent};
  303. {/block:ifPostBorder}
  304. }
  305. #posts img {
  306. max-width:250px;
  307. }
  308.  
  309. #posts img, #posts li, #posts blockquote {max-width: 100%;}
  310. .caption {width:100%;
  311. margin-top:10px;
  312.  
  313. }
  314.  
  315. /*quote*/
  316.  
  317. #titlequote{text-align:left;
  318. font-size:14px;
  319. line-height:18px;
  320. font-weight:bold;
  321. }
  322. #source {
  323. margin-top:15px;
  324. margin-left:15px;}
  325.  
  326. /*audio*/
  327.  
  328. .player {
  329. width:25px;
  330. height:25px;
  331. overflow:hidden;
  332. position:absolute;
  333. background:white;}
  334.  
  335. .audioinfo {
  336. margin-left:50px;
  337. }
  338.  
  339.  
  340. /*asks*/
  341. .q {
  342. background:{color:accent};
  343. padding:5px;
  344. border:1px solid {color:text};
  345. font-family: 'Raleway', sans-serif;
  346. }
  347. .as {
  348. font-weight:bold;}
  349.  
  350. .a {
  351. padding:5px;
  352. border-bottom:1px solid {color:text};
  353. border-left:1px solid {color:text};
  354. border-right:1px solid {color:text};
  355. }
  356.  
  357.  
  358. /*chat*/
  359.  
  360. .chat ol {
  361. padding:0;
  362. list-style:none;
  363. }
  364. .line {padding:5px 0;}
  365.  
  366. .label {font-weight:bold;
  367. }
  368.  
  369.  
  370.  
  371.  
  372.  
  373. /*permalink and notes*/
  374.  
  375. #permalink {
  376. margin-top:15px;
  377. font-size:9px;
  378. text-transform:uppercase;
  379. }
  380. #permalink a {margin-right:10px;
  381. }
  382.  
  383.  
  384. .tags {
  385. word-break:break-all;
  386. font-size:9px;
  387. }
  388.  
  389. .pagenotes {
  390. {block:IndexPage}
  391. display: none!important;
  392. {/block:IndexPage}
  393. width:400px;
  394. text-align:left;
  395.  
  396. }
  397. .pagenotes img {
  398. display:none!important;}
  399. .pagenotes li {
  400. list-style-type:none;
  401. padding:5px 0px;
  402. text-align:left;
  403. margin:0 0 0 -40px;
  404. }
  405.  
  406. .transparent{
  407. top:{text:png height};
  408. left:{text:png across};
  409. position:fixed;
  410. }
  411.  
  412. .transparent img{
  413. max-height:500px;
  414. max-width:300px;
  415. }
  416.  
  417. .icon-menu{
  418. width:50px;
  419. margin-left:50px;
  420. margin-top:15px;
  421. position:fixed;
  422. }
  423.  
  424. .icon-menu img{
  425. width:50px;
  426. }
  427.  
  428. .icon-menu img:hover{
  429. cursor:help
  430. }
  431.  
  432.  
  433. {CustomCSS}
  434.  
  435.  
  436. </style>
  437.  
  438.  
  439.  
  440. </head>
  441.  
  442. <body>
  443.  
  444.  
  445. <div class="icon-menu"><img src="https://38.media.tumblr.com/1eaff39576cbca8b046d37e600adf869/tumblr_ngg2bgLoHQ1sbb9pwo1_1280.png"></div>
  446. <div class="transparent"><img src="{image:Transparent Image}"></div>
  447.  
  448.  
  449. <div class="sidebar">
  450. <div class="icon-close"><div id="blogt">{Title}</div></div>
  451. <div id="links">
  452. <a href="/">{text:home title}</a><br>
  453. <a href="/ask">{text:ask title}</a><br>
  454. {block:ifLink1}<a href="{text:Link 1 URL}">{text:Link 1}</a>{/block:ifLink1}<br>
  455. {block:ifLink2}<a href="{text:Link 2 URL}" >{text:Link 2}</a>{/block:ifLink2}<br>
  456. {block:ifLink3}<a href="{text:Link 3 URL}">{text:Link 3}</a> {/block:ifLink3}
  457.  
  458. </div>
  459.  
  460. <div id="description">{Description} <br><a href="http://257pxthemes.tumblr.com/" >thm</a>.&nbsp;&nbsp;</div>
  461. </div>
  462. <div id="con">
  463.  
  464.  
  465. <div id="entries">
  466.  
  467. {block:Posts}
  468. <div id="posts">
  469.  
  470.  
  471. {block:Quote}
  472.  
  473.  
  474. <div id="titlequote">“{Quote}”</div>
  475. {block:Source}<div id="source">&mdash; {Source}</div>{/block:Source}
  476. {/block:Quote}
  477.  
  478.  
  479.  
  480. {block:Text}
  481.  
  482. {block:Title}
  483. <div style="font-family: 'Raleway', sans-serif; font-size:20px; color:{color:accent};"><u>{Title}</u></div>{/block:Title}
  484. <div style="background-color:{color:background}; padding:5px; padding-left:10px;">{Body} </div>
  485. {/block:Text}
  486.  
  487. {block:Link}
  488. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  489. {/block:Link}
  490.  
  491. {block:Chat}
  492. {block:Title}
  493. <h1>{Title}</h1>
  494. {/block:Title}
  495. <div class="chat">
  496. <ol>{block:Lines}
  497. <li class="line {Alt}">
  498. {block:Label}
  499. <span class="label">
  500. {Label}</span>
  501. {/block:Label}{Line}</li>
  502. {/block:Lines}
  503. </ol></div>
  504. {/block:Chat}
  505.  
  506. {block:Photo}
  507. {LinkOpenTag}<img src="{block:if400pxPosts}{PhotoUrl-400}{/block:if400pxPosts}{block:if250pxPosts}{PhotoURL-250}{/block:if250pxPosts}" alt="{PhotoAlt}"/>{LinkCloseTag}
  508. {/block:Photo}
  509.  
  510. {block:Photoset}
  511. {block:if400pxPosts}
  512. {Photoset-400}
  513. {/block:if400pxPosts}
  514. {block:if250pxPosts}
  515. {Photoset-250}
  516. {/block:if250pxPosts}
  517. {/block:Photoset}
  518.  
  519. {block:Video}
  520. {Video-250}
  521. {/block:Video}
  522.  
  523. {block:Audio}
  524. <div class="player">{AudioPlayerWhite}</div>
  525. <div class="audioinfo">
  526. {block:TrackName}{TrackName}{/block:TrackName}{block:Artist}<br>{Artist}{/block:Artist}
  527. </div>
  528. {/block:Audio}
  529.  
  530. {block:Answer}
  531. <div class="q">
  532. <div class="as">{Asker} said: </div>
  533. {Question}</div>
  534. <div class="a">{Answer}</div>
  535. {/block:Answer}
  536.  
  537. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  538.  
  539. {block:Date}
  540. <div id="permalink">
  541. <a href="{Permalink}" >{12Hour}:{Minutes} {AmPm}</a>{block:NoteCount}<a href="{Permalink}">+ {NoteCount}</a>{/block:NoteCount}{block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{block:ContentSource}<a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:ContentSource}{/block:RebloggedFrom}
  542. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">#{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  543. </div>
  544. {/block:Date}
  545.  
  546.  
  547.  
  548. </div>
  549.  
  550.  
  551. {block:PostNotes}
  552. <div class="pagenotes">
  553. {PostNotes}
  554. </div>
  555. {/block:PostNotes}
  556.  
  557.  
  558. {/block:Posts}
  559.  
  560. <div id="pagination">
  561. {block:Pagination}
  562. {block:PreviousPage}
  563. <a href="{PreviousPage}">&larr; previous </a>
  564. {/block:PreviousPage}
  565.  
  566.  
  567. {block:NextPage}
  568. <a href="{NextPage}">next &rarr;</a>
  569. {/block:NextPage}
  570. {/block:Pagination}
  571. </div>
  572.  
  573.  
  574.  
  575. </div>
  576.  
  577. </div>
  578.  
  579.  
  580. {block:ContentSource}
  581. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  582. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  583. {/block:SourceLogo}
  584. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  585. {/block:ContentSource}
  586.  
  587.  
  588.  
  589. <script>
  590. var main = function() {
  591. $('.icon-menu').click( function() {
  592. $('.sidebar').animate( {
  593. left: '0px'
  594. }, 200);
  595.  
  596. $('body').animate({
  597. left:'300px'
  598. }, 200);
  599.  
  600. });
  601.  
  602. $('.icon-close').click( function() {
  603. $('.sidebar').animate( {
  604. left: '-300px'
  605. }, 200);
  606.  
  607. $('body').animate({
  608. left: "0px"
  609. }, 200);
  610.  
  611. });
  612. };
  613.  
  614.  
  615. $(document).ready(main);
  616. </script>
  617.  
  618.  
  619. <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
  620. </body>
  621. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement