Advertisement
jennadew

xnferiority theme

Jul 4th, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.94 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.  
  4. <head><title>{Title}</title>
  5. <link rel="shortcut icon" href="{Favicon}">
  6. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  7. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  8.  
  9. <!---- this is theme 53 by Hollywhood
  10. please don't remove the credit
  11. thank you
  12. --->
  13.  
  14.  
  15. <script type="text/javascript"
  16. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  17. <script>
  18. $(document).ready(function() {
  19. //
  20. $('a.poplight[href^=#]').click(function() {
  21. var popID = $(this).attr('rel'); //Get Popup Name
  22. var popURL = $(this).attr('href'); //Get Popup href to define size
  23. var query= popURL.split('?');
  24. var dim= query[1].split('&');
  25. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  26. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://upload.wikimedia.org/wikipedia/commons/f/f8/Tooltip-CloseButton.png" class="btn_close" title="escape" alt="escape" /></a>');
  27. var popMargTop = ($('#' + popID).height() + 80) / 2;
  28. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  29. //Apply Margin to Popup
  30. $('#' + popID).css({
  31. 'margin-top' : -popMargTop,
  32. 'margin-left' : -popMargLeft
  33. });
  34. $('body').append('<div id="fade"></div>');
  35. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  36. return false;
  37. });
  38. $('a.close, #fade').live('click', function() {
  39. $('#fade , .popup_block').fadeOut(function() {
  40. $('#fade, a.close').remove(); //fade them both out
  41. });
  42. return false;
  43. });
  44. });
  45. </script>
  46.  
  47.  
  48.  
  49. <meta name="color:Background" content="#ffffff"/>
  50. <meta name="color:Text" content="#9B9B9B"/>
  51. <meta name="color:Link" content="#b8b8b8"/>
  52. <meta name="color:Link Hover" content="#eeeeee"/>
  53. <meta name="color:sidebar links" content="#DDDDDD"/>
  54. <meta name="color:scrollbar" content="#999999">
  55.  
  56. <meta name="image:sidebar" content=""/>
  57.  
  58. <meta name="text:link 0" content="" />
  59. <meta name="text:link 0 url" content="/">
  60. <meta name="text:link 1" content="" />
  61. <meta name="text:link 1 url" content="/">
  62. <meta name="text:link 2" content="" />
  63. <meta name="text:link 2 url" content="/">
  64. <meta name="text:link 3" content="" />
  65. <meta name="text:link 3 url" content="/">
  66. <meta name="text:link 4" content="" />
  67. <meta name="text:link 4 url" content="/">
  68.  
  69. <style type="text/css">
  70.  
  71.  
  72.  
  73.  
  74. #fade { /*--Transparent background layer--*/
  75. display: none; /*--hidden by default--*/
  76. background: #000;
  77. background-image: url('');
  78. position: fixed; left: 0; top: 0;
  79. width: 100%; height: 100%;
  80. opacity: .80;
  81. z-index: 9999;
  82. }
  83.  
  84. .popup_block{
  85. display: none; /*--hidden by default--*/
  86. background: #131313;
  87. padding: 20px;
  88. border: 2px solid #ddd;
  89. float: left;
  90. font-size: 12px;
  91. position: fixed;
  92. top: 50%; left: 50%;
  93. z-index: 99999;
  94. /*--CSS3 Box Shadows--*/
  95. -webkit-box-shadow: 0px 0px 20px #000;
  96. -moz-box-shadow: 0px 0px 20px #000;
  97. box-shadow: 0px 0px 20px #000;
  98. /*--CSS3 Rounded Corners--*/
  99. -webkit-border-radius: 10px;
  100. -moz-border-radius: 10px;
  101. border-radius: 10px;
  102. }
  103. img.btn_close {
  104. float: right;
  105. margin: -5px -5px 0 0;
  106. }
  107. /*--Making IE6 Understand Fixed Positioning--*/
  108. *html #fade {
  109. position: absolute;
  110. }
  111. *html .popup_block {
  112. position: absolute;
  113. }
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122. ::-webkit-scrollbar-thumb{
  123. background-color: {color:scrollbar};
  124. border: 2px solid {color:background};
  125. height:auto;
  126. }
  127.  
  128. ::-webkit-scrollbar {
  129. height:auto;
  130. width:11px;
  131. background-color: {color:scrollbar};
  132. border:5px solid {color:background};
  133. }
  134.  
  135.  
  136. iframe#tumblr_controls {
  137. white-space:nowrap;
  138. -webkit-filter: invert(100%);
  139. -moz-filter: invert(100%);
  140. -o-filter: invert(100%);
  141. -ms-filter: invert(100%);
  142. filter: invert(100%);
  143. opacity:.2;transition: .8s ease-in-out;
  144. -webkit-transition: .8s ease-in-out;
  145. -moz-transition: .8s ease-in-out;
  146. -o-transition: .8s ease-in-out;
  147. }
  148.  
  149. h1 {
  150. font-weight:normal;
  151. font-family:'Wet Arial';
  152. font-size:15px;
  153. text-align:center;
  154. font-style:normal;
  155. line-height:100%;
  156. letter-spacing:1px;
  157. text-transform:normal;
  158. color:{color:text};
  159. text-shadow:color: white; text-shadow: black 0.1em 0.1em 0.2em;
  160. }
  161.  
  162. h2 {
  163. font-size:14px;
  164. text-align:center;
  165. line-height:100%;
  166. letter-spacing:-0.5px;
  167. color:{color:text};
  168. font-weight:bold;
  169. text-transform:uppercase;
  170. padding:5px;
  171. padding-bottom:2px;
  172. font-family:'Wet Arial';
  173. text-shadow:color: {color:text}; text-shadow: black 0.1em 0.1em 0.2em;
  174. }
  175.  
  176. h3 {
  177. font-size:25px;
  178. text-align:center;
  179. line-height:100%;
  180. letter-spacing:-0.5px;
  181. color:{color:text};
  182. font-weight:bold;
  183. text-transform:uppercase;
  184. padding:5px;
  185. padding-bottom:2px;
  186. }
  187.  
  188. blockquote {
  189. border-left:1px solid #ccc;
  190. padding:6px;
  191. margin:9px 2px 0px 9px
  192. }
  193.  
  194. body {
  195. background: url(http://static.tumblr.com/3gppgbc/EZmnqait4/jacksontheme.gif) #000;
  196. background-position: fixed;
  197. background-repeat:no-repeat;
  198. background-position:top left;
  199. margin:0px;
  200. color:{color:text};
  201. font-family:'lao ui';
  202. font-size:12px;
  203. line-height:100%;
  204. }
  205.  
  206. sub, sup, small {
  207. font-size: 9px;
  208. }
  209.  
  210. b {
  211. font-size:11px;
  212. color: #427ea3;
  213. text-shadow:color: {color:text}; text-shadow: #427ea3 0.1em 0.1em 0.2em;
  214. }
  215.  
  216. i {
  217. color: #bad8eb;
  218. }
  219.  
  220. a {
  221. text-decoration:none;
  222. outline:none;
  223. -moz-outline-style:none;
  224. color:{color:link};
  225. -moz-transition-duration:0.5s;
  226. -webkit-transition-duration:0.5s;
  227. -o-transition-duration:0.5s;
  228. }
  229.  
  230. a:hover {
  231. outline:none;
  232. -moz-outline-style:none;
  233. color:{color:link hover};
  234. }
  235.  
  236. .post img, iframe.photoset {
  237. opacity: {block:IfPostImageFade}0.7{/block:IfPostImageFade} {block:IfNotPostImageFade}1{/block:IfNotPostImageFade};
  238. -webkit-transition: all 0.5s ease;
  239. -moz-transition: all 0.5s ease;
  240. transition: all 0.5s ease;
  241. -webkit-filter: grayscale(80%);
  242. z-index: -9999999999999999999999999px;
  243. -webkit-transition: all 0.9s ease-in-out;
  244. -moz-transition: all 0.9s ease-in-out;
  245. -o-transition: all 0.9s ease-in-out;
  246. -ms-transition: all 0.9s ease-in-out;
  247. transition: all 0.9s ease-in-out;
  248. }
  249.  
  250. img:hover,.photoset:hover{
  251. -WEBKIT-FILTER: GRAYSCALE(0%);
  252. -webkit-transition: all 0.6s ease-in-out;
  253. -moz-transition: all 0.6s ease-in-out;
  254. -o-transition: all 0.6s ease-in-out;
  255. }
  256.  
  257.  
  258. img {
  259. max-width: 100%;
  260. -webkit-filter: grayscale(80%);
  261. z-index: -9999999999999999999999999px;
  262. -webkit-transition: all 0.9s ease-in-out;
  263. -moz-transition: all 0.9s ease-in-out;
  264. -o-transition: all 0.9s ease-in-out;
  265. -ms-transition: all 0.9s ease-in-out;
  266. transition: all 0.9s ease-in-out;
  267. }
  268.  
  269. img:hover {
  270. -webkit-filter: grayscale(0%);
  271. z-index: -9999999999999999999999999px;
  272. -webkit-transition: all 0.9s ease-in-out;
  273. -moz-transition: all 0.9s ease-in-out;
  274. -o-transition: all 0.9s ease-in-out;
  275. -ms-transition: all 0.9s ease-in-out;
  276. transition: all 0.9s ease-in-out;
  277. }
  278.  
  279.  
  280. .post img {
  281. width:350px;
  282. height:auto;
  283. padding:2px;
  284. -webkit-filter: grayscale(80%);
  285. z-index: -9999999999999999999999999px;
  286. -webkit-transition: all 0.9s ease-in-out;
  287. -moz-transition: all 0.9s ease-in-out;
  288. -o-transition: all 0.9s ease-in-out;
  289. -ms-transition: all 0.9s ease-in-out;
  290. transition: all 0.9s ease-in-out;
  291.  
  292. }
  293.  
  294. .post img:hover {
  295. -webkit-filter: grayscale(0%);
  296. z-index: -9999999999999999999999999px;
  297. -webkit-transition: all 0.9s ease-in-out;
  298. -moz-transition: all 0.9s ease-in-out;
  299. -o-transition: all 0.9s ease-in-out;
  300. -ms-transition: all 0.9s ease-in-out;
  301. transition: all 0.9s ease-in-out;
  302. }
  303.  
  304. #post {
  305. width:345px;
  306. margin-top:40px;
  307. margin-bottom:5px;
  308. }
  309.  
  310.  
  311.  
  312. #entries {
  313. position: fixed;
  314. font-size: 10px;
  315. overflow-x: hidden;
  316. overflow-y: scroll;
  317. text-align: justify
  318. margin: auto;
  319. padding:2px;
  320. background-color:transparent;
  321. width:345px;
  322. height:480px;
  323. margin-left:550px;
  324. margin-top:210px;
  325. margin-bottom:0px;
  326. }
  327.  
  328. #line {
  329. width:345px;
  330. height:1px;
  331. margin-top:-6px;
  332. background-color:#e8e8e8;
  333. }
  334.  
  335.  
  336. #sidebar {
  337. color:{color:text};
  338. position:fixed;
  339. width:130px;
  340. height:auto;
  341. margin-top:160px;
  342. margin-left:210px;
  343. text-align:left;
  344. }
  345.  
  346. .links {
  347. display:inline-block;
  348. position:fixed;
  349. font-family:cambria;
  350. width:130px;
  351. margin-top:-20px;
  352. margin-left:450px;
  353. font-size:7px;
  354. text-transform:uppercase;
  355. text-align:center;
  356. line-height:330%;
  357. -webkit-transition: all .5s linear;
  358. }
  359.  
  360. .links a{
  361. display:inline-block;
  362. width:10px;
  363. border-radius:90px;
  364. height:10px;
  365. background:#dddddd;
  366. line-height:330%;
  367. border-right:1px solid #888;
  368. border-bottom:1px solid #888;
  369. border-left:1px solid #ccc;
  370. border-top:1px solid #ccc;
  371. margin-left:5px;
  372. margin-right:5px;
  373. text-decoration:none;
  374. text-shadow:1px 1px 15px #d3d3d3;
  375. -moz-transition-duration:.2s;
  376. -webkit-transition-duration:.2s;
  377. -o-transition-duration:.2s;
  378.  
  379. }
  380.  
  381. .links a:hover {
  382. border-left:1px solid #888;
  383. Border-top:1px solid #888;
  384. border-right:1px solid #ccc;
  385. border-bottom:1px solid #ccc;
  386. background:#fff;
  387. text-shadow:1px 1px 15px #d3d3d3;
  388. width:10px;
  389. height:10px;
  390. -moz-transition-duration:0.2s;
  391. -webkit-transition-duration:0.2s;
  392. -o-transition-duration:0.2s;
  393.  
  394. }
  395.  
  396. #pagination {
  397. font-family:cambria;
  398. width:140px;
  399. font-size:9px;
  400. margin-top:525px;
  401. margin-left:450px;
  402. padding-left:5px;
  403. letter-spacing:1px;
  404. font-style:italic;
  405. text-align:center;
  406. }
  407.  
  408. #pagination a {
  409. color:{color:link};
  410. }
  411.  
  412. #info {
  413. font-family:arial;
  414. background-image: url(http://static.tumblr.com/3gppgbc/EZmnqait4/jacksontheme.gif);
  415. width:345px;
  416. margin-top:5px;
  417. padding-top:7px;
  418. font-size:7px;
  419. color:{color:text};
  420. text-transform:uppercase;
  421. letter-spacing:1px;
  422. font-style:normal;
  423. text-align:center;
  424. -moz-transition-duration:0.2s;
  425. -webkit-transition-duration:0.2s;
  426. -o-transition-duration:0.2s;
  427. }
  428.  
  429. #info a {
  430. color:#131313;
  431. background:#fff;
  432. padding:3px;
  433. font-style:normal;
  434. }
  435.  
  436. #info a:hover {
  437. color:{color:link hover};
  438. -moz-transition-duration:0.2s;
  439. -webkit-transition-duration:0.2s;
  440. -o-transition-duration:0.2s;
  441. }
  442.  
  443. .tags {
  444. font-family:'Wet Arial';
  445. font-style:normal;
  446. width:345px;
  447. text-transform:normal;
  448. font-style:normal;
  449. line-height:120%;
  450. margin-top:15px;
  451. font-size:10px;
  452. text-align:center;
  453. -moz-transition-duration:0.5s;
  454. -webkit-transition-duration:0.5s;
  455. -o-transition-duration:0.5s;
  456. }
  457. .tags a{
  458. color:{color:link};
  459. -moz-transition-duration:0.2s;
  460. -webkit-transition-duration:0.2s;
  461. -o-transition-duration:0.2s;
  462. }
  463. .tags a:hover{
  464. color:{color:link hover};
  465. -moz-transition-duration:0.2s;
  466. -webkit-transition-duration:0.2s;
  467. -o-transition-duration:0.2s;
  468. }
  469.  
  470. .audio{
  471. background-color:#e5e5e5;
  472. height:65px;
  473. overflow:hidden;
  474. }
  475.  
  476. #ask {
  477. background: #f8f8f8;
  478. width: {block:If250pxPosts}200px{/block:If250pxPosts} {block:If400pxPosts}350px{/block:If400pxPosts} {block:If500pxPosts}450px{/block:If500pxPosts};
  479. text-align: justify;
  480. padding: 15px 30px 15px 20px;
  481. }
  482.  
  483. #ask a {
  484. color: #aeaeae;
  485. }
  486.  
  487. #credit {
  488. font-size:9px;
  489. font-family:cambria;
  490. font-style:italic;
  491. letter-spacing:1px;
  492. -moz-transition-duration:0.5s;
  493. -webkit-transition-duration:0.5s;
  494. -o-transition-duration:0.5s;
  495. }
  496.  
  497. #credit a {
  498. background-color:#131313;
  499. padding:5px;
  500. border:1px solid #e9e9e9;
  501. position:fixed;
  502. right:15px;
  503. bottom:10px
  504. }
  505.  
  506. #credit a:hover {
  507. color:#fff;
  508. background-color:#191919;
  509. }
  510.  
  511. #music{
  512. position: fixed;
  513. left: 401px;
  514. top: 544px;
  515. }
  516.  
  517.  
  518.  
  519.  
  520.  
  521.  
  522.  
  523.  
  524.  
  525.  
  526.  
  527.  
  528. {CustomCSS}</style></head><body>
  529.  
  530.  
  531.  
  532.  
  533.  
  534.  
  535.  
  536.  
  537. <div id="sidebar">
  538.  
  539. <div id="sidebarimage">
  540. <a title="{text:homelink title}" href="/"><img src="{image:sidebar}"> </a></div>
  541.  
  542.  
  543. <div id="description">
  544. {Description}</div>
  545. <div class="links">
  546. <a href="{text:link 0 url}"title="{text:link 0}"></a>
  547. <a href="{text:link 1 url}"title="{text:link 1}"></a>
  548. <a href="{text:link 2 url}"title="{text:link 2}"></a>
  549. <a href="{text:link 3 url}"title="{text:link 3}"></a>
  550. <a href="{text:link 4 url}"title="{text:link 4}"></a>
  551. </div>
  552. <p></p><br><br><br>
  553.  
  554. <div id="pagination">
  555. <center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">back</a>{/block:PreviousPage} &nbsp;&nbsp;&nbsp; {block:NextPage}<a href="{NextPage}">next</a><br />{/block:NextPage}{/block:Pagination}</div></center></div>
  556. </div>
  557.  
  558. </div>
  559.  
  560. <div id="entries">{block:Posts}<div id="post">
  561.  
  562. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  563.  
  564. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-250}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  565.  
  566. {block:Photoset}{Photoset-250}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  567.  
  568. {block:Quote}<big><big>"{Quote}"</big></big>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  569.  
  570. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  571.  
  572. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}{hw}
  573.  
  574. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="65px" align="left">{/block:AlbumArt}<div class="audio">{AudioPlayerGrey}<br>{block:TrackName}&nbsp;&nbsp;&nbsp;&nbsp; {TrackName}{/block:TrackName}
  575. {block:Artist} &nbsp;—&nbsp; {Artist} {/block:Artist}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  576.  
  577. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  578.  
  579. {block:Answer}
  580. <div id="ask">
  581. <div style="text-align: center; padding-bottom: 5px; font-size: 9px;">
  582. <span style="text-shadow: 1px 1px #e1e1e1; text-transform: uppercase;letter-spacing: 2px; font-weight: bold;">{Asker}:</span></div><br />
  583. <div style="text-align: center; margin-top: -10px;">{Question}</div>
  584. </div>
  585. {Answer}
  586. {/block:Answer}
  587.  
  588. {block:Date}<div id="info"> <a title="{TimeAgo}" href="{Permalink}">{Month} &nbsp;{DayOfMonth}</a>
  589. {/block:Date} {block:NoteCount}&nbsp; <a href="{Permalink}">( {NoteCount} )</a> {/block:NoteCount}
  590.  
  591. &nbsp;{block:RebloggedFrom} <a title="{ReblogParentName}" href="{ReblogParentURL}">via</a> {/block:RebloggedFrom}{block:ContentSource} &nbsp; <a title="{SourceTitle}" href="{SourceURL}">source</a>{/block:ContentSource} {/block:RebloggedFrom} </br>
  592. </div>
  593.  
  594. <div id="line"></div>
  595.  
  596. {block:HasTags}
  597. <div class="tags">
  598. {block:Tags} <a href="{TagURL}"> <big>#</big> {Tag} &nbsp; </a> {/block:Tags}</div>
  599. {/block:HasTags}
  600. <div class="postnote">
  601. {block:PostNotes}{PostNotes}{/block:PostNotes}
  602. </div>
  603.  
  604. </div>
  605.  
  606. {/block:Posts}
  607.  
  608.  
  609. </div>
  610. <div id="credit"><a href="http://hollywhood.tumblr.com">HW</a></div></div>
  611.  
  612.  
  613.  
  614.  
  615.  
  616. <div id="02" class="popup_block">
  617.  
  618. <h3>. . . Do you still?</h3>
  619.  
  620. if you want to write anything in your ask here it is.
  621. <br />
  622. <br />
  623. <iframe id="ask_form" style="background-color: transparent; overflow: hidden;" src="http://www.tumblr.com/ask_form/qxill.tumblr.com" frameborder="0" scrolling="no" width="100%" height="180"></iframe>
  624. </div></div>
  625.  
  626.  
  627. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement