Advertisement
Guest User

theme 35: untouchable; by primrosetylers

a guest
Sep 20th, 2014
2,140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.81 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!--
  5.  
  6. theme 35: untouchable;
  7. coded by irma at primrosetylers.tumblr.com
  8. do not steal, remove the credit, or use as a base
  9.  
  10. -->
  11.  
  12. <title>{Title}</title>
  13. {block:Description}<meta name="description" content="{MetaDescription}">{/block:Description}
  14. <link rel="shortcut icon" href="{Favicon}">
  15. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  16.  
  17. <!-- meta stuffs go here -->
  18.  
  19. <meta name="color:background" content="#fff">
  20. <meta name="color:scrollbar" content="#eee">
  21. <meta name="color:title" content="#000">
  22. <meta name="color:title first letter" content="#ddd">
  23. <meta name="color:container bg" content="#000">
  24. <meta name="color:popup bg" content="#ddd">
  25. <meta name="color:popup text" content="#fff">
  26. <meta name="color:tooltip text" content="#fff">
  27. <meta name="color:tooltip background" content="#000">
  28. <meta name="color:post border" content="#fff">
  29. <meta name="color:post text" content="#fff">
  30. <meta name="color:post info" content="#fff">
  31. <meta name="color:post info hover" content="#aaa">
  32. <meta name="color:posts link" content="#aaa">
  33. <meta name="color:posts link hover" content="#000">
  34. <meta name="color:pagination" content="#aaa">
  35. <meta name="color:pagination hover" content="#000">
  36. <meta name="color:blockquote" content="#aaa">
  37.  
  38. <meta name="image:background" content="http://33.media.tumblr.com/d4a2c5b0fbd50d0ccabdb00ada7859ea/tumblr_na2s86r3Cx1s0dlk2o2_250.png">
  39.  
  40. <meta name="if:background image" content="1">
  41. <meta name="if:400px posts" content="1">
  42. <meta name="if:250px posts" content="0">
  43. <meta name="if:show tags" content="1">
  44. <meta name="if:show caption" content="1">
  45. <meta name="if:tiny cursor" content="1">
  46. <meta name="if:infinite scroll" content="0">
  47.  
  48. <meta name="text:link 1" content="index">
  49. <meta name="text:link 1 url" content="/">
  50. <meta name="text:link 2" content="mssg">
  51. <meta name="text:link 2 url" content="/ask">
  52. <meta name="text:link 3" content="past">
  53. <meta name="text:link 3 url" content="/archive">
  54. <meta name="text:link 4" content="">
  55. <meta name="text:link 4 url" content="">
  56. <meta name="text:link 5" content="">
  57. <meta name="text:link 5 url" content="">
  58. <meta name="text:link 6" content="">
  59. <meta name="text:link 6 url" content="">
  60. <meta name="text:link 7" content="">
  61. <meta name="text:link 7 url" content="">
  62. <meta name="text:link 8" content="">
  63. <meta name="text:link 8 url" content="">
  64. <meta name="text:link 9" content="">
  65. <meta name="text:link 9 url" content="">
  66.  
  67. <!-- metas end-->
  68.  
  69. <!-- click effect script -->
  70. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  71. <script>
  72. $(document).ready(function(){
  73. $(".plus").click(function(){
  74. $(".popup").fadeToggle(500);
  75. });
  76. });
  77. </script>
  78.  
  79. <!-- infinite scroll script -->
  80.  
  81. {block:IfInfiniteScroll}
  82. <script type="text/javascript" src="http://codysherman.tumblr.com/tools/infinite-scrolling/code"></script>
  83. {/block:IfInfiniteScroll}
  84. {block:IfNotInfiniteScroll}{/block:IfNotInfiniteScroll}
  85.  
  86.  
  87. <link href='http://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
  88. <link href='http://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
  89.  
  90. <!-- tooltip script -->
  91. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  92. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  93. <script>
  94. (function($){
  95. $(document).ready(function(){
  96. $("a[title]").style_my_tooltips({
  97. tip_follows_cursor:true,
  98. tip_delay_time:30,
  99. tip_fade_speed:300,
  100. attribute:"title"
  101. });
  102. });
  103. })(jQuery);
  104. </script>
  105.  
  106. <style type="text/css">
  107.  
  108. /*tooltip css*/
  109. #s-m-t-tooltip {
  110. max-width:300px;
  111. position:absolute;
  112. z-index:99999;
  113. margin-top:20px;
  114. text-transform:uppercase;
  115. padding:2px 4px 2px 4px;
  116. background-color:{color:tooltip background};
  117. font-family:arial;
  118. font-size:10px;
  119. color:{color:tooltip text};
  120. }
  121.  
  122. body {
  123. {block:IfNotBackgroundImage}background-color:{color:background};{/block:IfNotBackgroundImage}
  124. {block:IfBackgroundImage}background-image:url('{image:background}');{/block:IfBackgroundImage}
  125. background-size:100px 100px;
  126. font-family:'Lato', calibri;
  127. color:{color:post text};
  128. font-size:11px;
  129. }
  130.  
  131. a {
  132. text-decoration:none;
  133. color:{color:posts link};
  134. -webkit-transition:0.5s;
  135. -moz-transition:0.5s;
  136. -ms-transition:0.5s;
  137. -o-transition:0.5s;
  138. }
  139.  
  140. blockquote {
  141. border-left:2px solid {color:blockquote};
  142. padding-left:10px;
  143. max-width:450px;
  144. }
  145.  
  146. a:hover {
  147. color:{color:posts link hover};
  148. }
  149.  
  150. pre, code, p {
  151. white-space: pre-wrap;
  152. white-space: -moz-pre-wrap;
  153. white-space: -pre-wrap;
  154. white-space: -o-pre-wrap;
  155. word-wrap: break-word;
  156. }
  157.  
  158. ::-webkit-scrollbar {
  159. width: 8px;
  160. }
  161.  
  162. ::-webkit-scrollbar-track {
  163. background-color:{color:container bg};
  164. }
  165.  
  166. ::-webkit-scrollbar-thumb {
  167. background-color:{color:scrollbar};
  168. }
  169.  
  170. ::-webkit-scrollbar:horizontal {
  171. height:8px;
  172. }
  173.  
  174. ::selection {
  175. background: {color:scrollbar};
  176. }
  177. ::-moz-selection {
  178. background: {color:scrollbar};
  179. }
  180.  
  181. h2 {
  182. text-align:center;
  183. text-transform:uppercase;
  184. }
  185.  
  186. /*sidebar*/
  187.  
  188. #sidebar {
  189. color:{color:title};
  190. width:85vh;
  191. height:550px;
  192. margin:auto;
  193. position:fixed;
  194. z-index:2;
  195. top:0; left:0; right:0; bottom:0;
  196. -ms-transform: rotate(-90deg);
  197. -webkit-transform: rotate(-90deg);
  198. transform: rotate(-90deg);
  199. text-transform:uppercase;
  200. font-size:50px;
  201. letter-spacing:1px;
  202. text-align:center;
  203. font-family:'Raleway', calibri;
  204. }
  205.  
  206. #title a {
  207. color:#000;
  208. }
  209. #title {
  210. margin-top:-70px;
  211. }
  212.  
  213. #title::first-letter {
  214. font-weight:bold;
  215. color:{color:title first letter};
  216. }
  217.  
  218. /*pag*/
  219.  
  220. #pag {
  221. font-size:14px;
  222. letter-spacing:2px;
  223. color:{color:pagination};
  224. width:100%;
  225. text-align:center;
  226. z-index:7;
  227. margin-bottom:50px;
  228. margin-top:75px;
  229. }
  230.  
  231. #pag a {color:{color:pagination};}
  232. #pag a:hover {color:{color:pagination hover};}
  233.  
  234. /*popup*/
  235.  
  236. .popup {
  237. z-index:10;
  238. width:550px;
  239. height:85vh;
  240. top:0; left:0; right:0; bottom:0;
  241. position:absolute;
  242. margin:auto;
  243. background-color:{color:popup bg};
  244. text-align:center;
  245. display:none;
  246. color:{color:popup text};
  247. }
  248.  
  249. .popup a {
  250. color:{color:popup text};
  251. }
  252. .popcorn {
  253. width:500px;
  254. margin:auto;
  255. position: relative;
  256. top: 50%;
  257. transform: translateY(-50%);
  258. }
  259.  
  260. /*posts*/
  261.  
  262. .autopagerize_page_element {
  263. z-index:7;
  264. width:550px;
  265. height:85vh;
  266. overflow-y:scroll;
  267. margin:auto;
  268. top:0; left:0; right:0; bottom:0;
  269. position:fixed;
  270. -webkit-transition:0.5s;
  271. -moz-transition:0.5s;
  272. -ms-transition:0.5s;
  273. -o-transition:0.5s;
  274. transition:0.5s;
  275. background-color:{color:container bg};
  276. }
  277.  
  278. .postage {
  279. {block:If400pxPosts}width:400px;{/block:if400pxPosts}
  280. {block:If250pxPosts}width:250px;{/block:if250pxPosts}
  281. margin-top:50px;
  282. margin-bottom:50px;
  283. padding:15px;
  284. margin-right:auto;
  285. margin-left:auto;
  286. -webkit-transition:0.5s;
  287. -moz-transition:0.5s;
  288. -ms-transition:0.5s;
  289. -o-transition:0.5s;
  290. transition:0.5s;
  291. border:1px solid {color:post border};
  292. }
  293.  
  294.  
  295. #panorama img {
  296. {block:If400pxPosts}width:400px;{/block:if400pxPosts}
  297. {block:If250pxPosts}width:250px;{/block:if250pxPosts}
  298. }
  299.  
  300. blockquote img {
  301. max-width:80%;
  302. }
  303.  
  304. #words {
  305. font-style:italic;
  306. font-size:15px;
  307. }
  308.  
  309. .source {
  310. text-align:right;
  311. padding-right:5px;
  312. }
  313.  
  314. #linkpost {
  315. text-align:center;
  316. font-size:11px;
  317. }
  318.  
  319. .linkety {
  320. font-size:15px;
  321. }
  322.  
  323. #chat ul {
  324. list-style:none;
  325. font-family:courier;
  326. margin-left:-30px;
  327. }
  328.  
  329. .label {
  330. text-transform:uppercase;
  331. font-weight:bold;
  332. }
  333.  
  334. #audioplayer {
  335. width:25px;
  336. height:25px;
  337. position:absolute;
  338. overflow:hidden;
  339. margin-top:25px;
  340. margin-left:25px;
  341. opacity:0.7;
  342. border-radius:100%;
  343. -webkit-border-radius:100%;
  344. -moz-border-radius:100%;
  345. }
  346.  
  347. #albumart {
  348. width:75px;
  349. height:75px;
  350. background-color:#e3e3e3;
  351. }
  352.  
  353. #ask span a {
  354. color:{color:post text};
  355. font-style:italic;
  356. }
  357.  
  358. .info {
  359. text-align:center;
  360. padding-top:5px;
  361. border-top:1px solid {color:post border};
  362. margin-top:5px;
  363. text-transform:uppercase;
  364. {block:If400pxPosts}width:400px;{/block:if400pxPosts}
  365. {block:If250pxPosts}width:250px;{/block:if250pxPosts}
  366. opacity:1;
  367. color:{color:post info};
  368. -webkit-transition:0.6s;
  369. -moz-transition:0.6s;
  370. -ms-transition:0.6s;
  371. -o-transition:0.6s;
  372. }
  373.  
  374. .info a {
  375. color:{color:post info};
  376. }
  377.  
  378. .info a:hover {
  379. color:{color:post info hover};
  380. }
  381.  
  382. .tags {
  383. font-size:11px;
  384. text-transform:none;
  385. -webkit-transition:0.6s;
  386. -moz-transition:0.6s;
  387. -ms-transition:0.6s;
  388. -o-transition:0.6s;
  389. }
  390.  
  391. #postnotes {
  392. line-height:200%;
  393. }
  394.  
  395. #postnotes li {
  396. list-style:none;
  397. }
  398.  
  399. #postnotes img {
  400. margin-right:5px;
  401. }
  402.  
  403. #credit {
  404. right:10px;
  405. bottom:15px;
  406. font-size:11px;
  407. padding:2px 5px 2px 5px;
  408. text-transform:uppercase;
  409. text-align:center;
  410. background-color:#000;
  411. position:fixed;
  412. font-family:arial;
  413. opacity:0.8;
  414. }
  415.  
  416. #credit a {
  417. color:#fff;
  418. }
  419.  
  420. #credit a:hover {
  421. text-shadow:0 0 2px #fff;
  422. color:#000;
  423. opacity:1;
  424. }
  425.  
  426. {block:IfTinyCursor}
  427. /* Start http://www.cursors-4u.com */ body, a:hover {cursor: url(http://cur.cursors-4u.net/cursors/cur-9/cur817.cur), progress !important;} /* End http://www.cursors-4u.com */
  428. {/block:IfTinyCursor}
  429.  
  430. {CustomCSS}
  431. </style>
  432. </head>
  433. <body>
  434.  
  435. <!-- sidebar -->
  436. <div id="sidebar">
  437. <div id="title">
  438. <a class="plus" title="click">
  439. {Title}
  440. </a>
  441. </div>
  442. </div>
  443.  
  444. <!-- popup -->
  445. <div class="popup">
  446.  
  447. <div class="popcorn">
  448. <span style="font-size:16px">
  449. {block:iflink1}<a title="{text:link 1}" href="{text:link 1 url}">1.</a>{/block:iflink1}
  450. {block:iflink2}<a title="{text:link 2}" href="{text:link 2 url}">2.</a>{/block:iflink2}
  451. {block:iflink3}<a title="{text:link 3}" href="{text:link 3 url}">3.</a>{/block:iflink3}
  452. {block:iflink4}<a title="{text:link 4}" href="{text:link 4 url}">4.</a>{/block:iflink4}
  453. {block:iflink5}<a title="{text:link 5}" href="{text:link 5 url}">5.</a>{/block:iflink5}
  454. {block:iflink6}<a title="{text:link 6}" href="{text:link 6 url}">6.</a>{/block:iflink6}
  455. {block:iflink7}<a title="{text:link 7}" href="{text:link 7 url}">7.</a>{/block:iflink7}
  456. {block:iflink8}<a title="{text:link 8}" href="{text:link 8 url}">8.</a>{/block:iflink8}
  457. {block:iflink9}<a title="{text:link 9}" href="{text:link 9 url}">9.</a>{/block:iflink9}
  458. <br />
  459. </span>
  460. {Description}
  461. </div>
  462.  
  463. </div>
  464. <!-- posts -->
  465. <div class = "autopagerize_page_element" >
  466. {block:Posts}
  467. <div class="postage">
  468.  
  469. {block:Text}
  470. <div id="text">
  471. <h2>{Title}</h2>
  472. {Body}
  473. </div> <!--text post-->
  474. {/block:Text}
  475.  
  476. {block:Photo}
  477. <div id="photo">
  478. {block:If400pxPosts}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{/block:if400pxPosts}
  479. {block:If250pxPosts}<img src="{PhotoURL-250}" alt="{PhotoAlt}"/>{/block:if250pxPosts}
  480. {block:IfShowCaption}
  481. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  482. {/block:IfShowCaption}
  483. {block:IfNotShowCaption}
  484. {block:PermalinkPage}
  485. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  486. {/block:PermalinkPage}
  487. {/block:IfNotShowCaption}
  488. </div> <!--photo post-->
  489. {/block:Photo}
  490.  
  491. {block:Panorama}
  492. <div id="panorama">
  493. {LinkOpenTag}
  494. <img src="{PhotoURL-Panorama}" alt="{PhotoAlt}"/>
  495. {LinkCloseTag}
  496. {block:IfShowCaption}
  497. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  498. {/block:IfShowCaption}
  499. {block:IfNotShowCaption}
  500. {block:PermalinkPage}
  501. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  502. {/block:PermalinkPage}
  503. {/block:IfNotShowCaption}
  504. </div> <!--panorama post-->
  505. {/block:Panorama}
  506.  
  507. {block:Photoset}
  508. <div id="photoset">
  509. {block:If400pxPosts}{Photoset-400}{/block:if400pxPosts}
  510. {block:If250pxPosts}{Photoset-250}{/block:if250pxPosts}
  511. {block:IfShowCaption}
  512. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  513. {/block:IfShowCaption}
  514. {block:IfNotShowCaption}
  515. {block:PermalinkPage}
  516. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  517. {/block:PermalinkPage}
  518. {/block:IfNotShowCaption}
  519. </div> <!--photoset-->
  520. {/block:Photoset}
  521.  
  522. {block:Quote}
  523. <div id="quote">
  524. <div id="words">{Quote}</div>
  525. {block:Source}<div class="source">- {Source}</div>{/block:Source}
  526. </div> <!--quote-->
  527. {/block:Quote}
  528.  
  529. {block:Link}
  530. <div id="linkpost">
  531. {block:PostTitle}<h2><a href="{Permalink}">{PostTitle}</a></h2>{/block:PostTitle}
  532. <a href="{URL}" class="linkety" {Target}>{Name}</a>
  533. {block:Description}
  534. <div class="linkdesc">{Description}</div>
  535. {/block:Description}
  536. </div> <!--link-->
  537. {/block:Link}
  538.  
  539. {block:Chat}
  540. <div id="chat">
  541. <h2><a href="{Permalink}">{Title}</a></h2>
  542. <ul>
  543. {block:Lines}
  544. <li class="{Alt} user_{UserNumber}">
  545. {block:Label}
  546. <span class="label">{Label}</span>
  547. {/block:Label}{Line}
  548. </li>
  549. {/block:Lines}
  550. </ul>
  551. </div> <!--chat-->
  552. {/block:Chat}
  553.  
  554. {block:Video}
  555. <div id="video">
  556. {block:PostTitle}<h2><a href="{Permalink}">{PostTitle}</a></h2>{/block:PostTitle}
  557. {block:If400pxPosts}{Video-400}{/block:if400pxPosts}
  558. {block:If250pxPosts}{Video-250}{/block:if250pxPosts}
  559. {block:IfShowCaption}
  560. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  561. {/block:IfShowCaption}
  562. {block:IfNotShowCaption}
  563. {block:PermalinkPage}
  564. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  565. {/block:PermalinkPage}
  566. {/block:IfNotShowCaption}
  567. </div> <!--video-->
  568. {/block:Video}
  569.  
  570. {block:Audio}
  571. <div id="audio">
  572. <table style="padding:5px; background-color:#fff;margin-bottom:5px;">
  573. <tr>
  574. <td style="vertical-align:top;padding-right:10px;"><div id="audioplayer">{AudioPlayerBlack}</div>
  575. <div id="albumart">
  576. {block:AlbumArt}
  577. <img src="{AlbumArtURL}" style="width:75px;">
  578. {/block:AlbumArt}</div></td>
  579. <td style="vertical-align:top; font-size:12px;"> {block:TrackName}<i>title:</i> {TrackName} <br />{/block:TrackName}
  580. {block:Artist}<i>artist:</i> {Artist} <br />{/block:Artist}
  581. {block:Album}<i>album:</i> {Album} <br />{/block:Album}
  582. {block:PlayCount}<i>played:</i> {FormattedPlayCount} times{/block:PlayCount}
  583. </td>
  584. </tr>
  585. </table>
  586. {block:IfShowCaption}
  587. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  588. {/block:IfShowCaption}
  589. {block:IfNotShowCaption}
  590. {block:PermalinkPage}
  591. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  592. {/block:PermalinkPage}
  593. {/block:IfNotShowCaption}
  594. </div> <!--audio-->
  595. {/block:Audio}
  596.  
  597. {block:Answer}
  598. <div id="ask">
  599. <p style="padding:10px; background-color:#aaa;">— <span>{Asker}</span>: {Question}</p>
  600. <p>{block:Answerer}— <span>{Answerer}</span> replied: {/block:Answerer}{Answer}</p>
  601. {block:Answerer}<blockquote>{Replies}</blockquote>{/block:Answerer}
  602. </div> <!--ask-->
  603. {/block:Answer}
  604.  
  605. <div class="info">
  606. {block:IndexPage}
  607. {block:Date}<a title="{NoteCountWithLabel}" href="{Permalink}">{MonthNumberWithZero}.{DayOfMonthWithZero}.{ShortYear}</a>{/block:Date} - <a href="{ReblogURL}" target="_blank">reblog</a>
  608. {/block:IndexPage}
  609.  
  610. {block:PermalinkPage}
  611. {block:Date}Posted on {Month} {DayOfMonth}, {Year} with {NoteCountWithLabel}{/block:Date} <br>
  612. {block:RebloggedFrom} VIA <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom} {block:ContentSource}, created by <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource}
  613. {block:IfNotShowTags}
  614. {block:HasTags}
  615. <div class="tags">
  616. {block:Tags} <a href="{TagURL}">#{Tag}</a>{/block:Tags}
  617. </div>
  618. {/block:HasTags}
  619. {/block:IfNotShowTags}
  620. {/block:PermalinkPage}
  621.  
  622. {block:IfShowTags}
  623. {block:HasTags}
  624. <div class="tags">
  625. {block:Tags} <a href="{TagURL}">#{Tag}</a>{/block:Tags}
  626. </div>
  627. {/block:HasTags}
  628. {/block:IfShowTags}
  629. </div> <!--info-->
  630.  
  631. {block:PermalinkPage}
  632. <div id="postnotes">
  633. {PostNotes}
  634. </div>
  635. {/block:PermalinkPage}
  636.  
  637. </div> <!--postage-->
  638. {/block:Posts}
  639.  
  640. {block:IfNotInfiniteScroll}
  641. {block:Pagination}
  642. <div id="pag">
  643. {block:PreviousPage}<a href="{PreviousPage}">BACK</a> - {/block:PreviousPage}
  644. {block:JumpPagination length="5"}
  645. {block:CurrentPage}[{PageNumber}]{/block:CurrentPage}
  646. {block:JumpPage}<a href="{URL}">{PageNumber}</a>{/block:JumpPage}
  647. {/block:JumpPagination}
  648. {block:NextPage} - <a href="{NextPage}">GO</a>{/block:NextPage}
  649. </div>
  650. {/block:Pagination}
  651. {/block:IfNotInfiniteScroll}
  652. {block:IfInfiniteScroll}{/block:IfInfiniteScroll}
  653.  
  654. </div> <!-- autopagerize page element thing -->
  655.  
  656.  
  657. <div id="credit"><a href="http://primrosetylers.tumblr.com">✿THEME</a></div>
  658.  
  659. </body>
  660. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement