Advertisement
Guest User

Untitled

a guest
May 30th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.59 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>
  5.  
  6. <script type="text/javascript"
  7. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  8.  
  9. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  10.  
  11. <script src="http://static.tumblr.com/uopakca/GVcnvdwbq/jquery.style-my-tooltips.js"></script>
  12.  
  13. <script>
  14. (function($){
  15. $(document).ready(function(){
  16. $("a[title]").style_my_tooltips({
  17. tip_follows_cursor:true,
  18. tip_delay_time:90,
  19. tip_fade_speed:700,
  20. attribute:"title"
  21. });
  22. });
  23. })(jQuery);
  24. </script>
  25.  
  26. <script>
  27. $(document).ready(function() {
  28. //
  29. $('a.poplight[href^=#]').click(function() {
  30. var popID = $(this).attr('rel'); //Get Popup Name
  31. var popURL = $(this).attr('href'); //Get Popup href to define size
  32. var query= popURL.split('?');
  33. var dim= query[1].split('&');
  34. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  35. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  36. var popMargTop = ($('#' + popID).height() + 80) / 2;
  37. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  38. //Apply Margin to Popup
  39. $('#' + popID).css({
  40. 'margin-top' : -popMargTop,
  41. 'margin-left' : -popMargLeft
  42. });
  43. $('body').append('<div id="fade"></div>');
  44. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  45. return false;
  46. });
  47. $('a.close, #fade').live('click', function() {
  48. $('#fade , .popup_block').fadeOut(function() {
  49. $('#fade, a.close').remove(); //fade them both out
  50. });
  51. return false;
  52. });
  53. });
  54. </script>
  55.  
  56. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
  57. <title>{Title}</title>
  58. <link rel="shortcut icon" href="{Favicon}">
  59. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  60. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  61.  
  62.  
  63. <meta name="color:scrollbar" content="#dcdcdc"/>
  64. <meta name="color:scrollbarBg" content="#fafafa"/>
  65. <meta name="text:title" content="blog title here">
  66. <meta name="text:url link1" content="/">
  67. <meta name="text:url link2" content="/">
  68. <meta name="text:link1" content="refresh">
  69. <meta name="text:link2" content="inquire">
  70.  
  71. <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200' rel='stylesheet' type='text/css'>
  72. <link href='https://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
  73.  
  74.  
  75. <style type="text/css">
  76.  
  77.  
  78. ::-webkit-scrollbar-thumb {
  79. height:auto;
  80. background-color:{color:Scrollbar};
  81. }
  82.  
  83. ::-webkit-scrollbar {
  84. height:9px;
  85. width:1px;
  86. background-color:{color:ScrollbarBg};
  87. }
  88.  
  89.  
  90. body {
  91. background:#000;
  92. margin:0px;
  93. color:#fff;
  94. font-family:times;
  95. line-height:100%;
  96. font-size:8pt;
  97. text-align:justify;
  98. background-image:url('');
  99. }
  100.  
  101. a {
  102. text-decoration:none;
  103. outline:none;
  104. -moz-outline-style:none;
  105. color:#264d00;
  106. font-family:arial;
  107. }
  108.  
  109. #title{
  110. color:{color:text};
  111. padding:5px;
  112. letter-spacing:1px;
  113. margin-bottom:10px;
  114. font-family:'consolas';
  115. text-align:center;
  116. text-transform:uppercase;
  117. border:1px solid {color:borders};
  118. background-color:{color:sidebar background};
  119. }
  120.  
  121. img {
  122. border:none;
  123. text-align:center;
  124. }
  125.  
  126. small{font-size:7pt;}
  127.  
  128. h1 {
  129. font-size:10px;
  130. color:{color:text};
  131. text-transform:uppercase;
  132. font-family:'consolas';
  133. background-color:{color:background};
  134. padding:10px;
  135. font-style:bold, italic;
  136. text-align:center;
  137. }
  138.  
  139. blockquote {
  140. border-left:1px solid {color:borders};
  141. padding-left:5px;
  142. margin-left:10px;
  143. }
  144.  
  145. /*CONTAINER*/
  146. #container {
  147. position:static;
  148. margin-top:10px;
  149. margin-left:-100px;
  150. margin-right:auto;
  151. margin-bottom:0px;
  152. width:420px;
  153. height:450px;
  154. overflow:auto;
  155. text-align:center;
  156. background:;
  157. -webkit-mask-image: -webkit-gradient(linear, left 22%, left bottom, from(rgba(12,12,12,1)), to(rgba(12,12,12,0)))
  158. }
  159.  
  160. /*ENTRIES*/
  161. #entries {
  162. position: absolute;
  163. height:590px;
  164. width:300px;
  165. margin-left:450px;
  166. margin-top:25px;
  167. }
  168.  
  169. #post {
  170. width: 250px;
  171. margin-left:10px;
  172. margin-top:10px;
  173. height: auto;
  174. background-color:;
  175. margin-bottom:20px;
  176. color: #fff;
  177. text-align:justify;
  178. opacity: ;
  179. -webkit-transition: all 0.5s ease;
  180. -moz-transition: all 0.5s ease;
  181. transition: all 0.5s ease;
  182. -webkit-filter: grayscale(100%);
  183. z-index: -9999999999999999999999999px;
  184. -webkit-transition: all 0.9s ease-in-out;
  185. -moz-transition: all 0.9s ease-in-out;
  186. -o-transition: all 0.9s ease-in-out;
  187. -ms-transition: all 0.9s ease-in-out;
  188. transition: all 0.9s ease-in-out;
  189. }
  190.  
  191. b {
  192. color:#477c80;
  193. }
  194.  
  195. #post:hover{
  196. -webkit-filter: grayscale(0%);
  197. -webkit-transition: all 0.6s ease-in-out;
  198. -moz-transition: all 0.6s ease-in-out;
  199. -o-transition: all 0.6s ease-in-out;
  200. -ms-transition: all 0.6s ease-in-out;
  201. transition: all 0.6s ease-in-out;
  202. }
  203.  
  204. /*SIDEBAR*/
  205.  
  206. #description {
  207. background-color:{color:Description background};
  208. border:1px solid {color:borders};
  209. padding:10px;
  210. font-family:'consolas';
  211. overflow:auto;
  212. font-size:9px;
  213. margin-top:10px;
  214. line-height:12px;
  215. height:110px;
  216. color:{color:text};
  217. }
  218.  
  219. #box{
  220. padding:10px;
  221. z-index:-9999;
  222. position:fixed;
  223. margin-top:105px;
  224. background:{color:sidebar background};
  225. font-size:10px;
  226. margin-left:60px;
  227. width:250px;
  228. height:300px;
  229. border:1px solid {color:borders};
  230. color:{color:text};
  231. font-family:'consolas';;
  232. }
  233.  
  234. /*POST INFO*/
  235.  
  236. #info {
  237. width:242px;
  238. text-align:center;
  239. font-family:'consolas';
  240. text-transform:uppercase;
  241. margin-left:0px;
  242. font-size:7px;
  243. margin-top:20px;
  244. margin-bottom:0px;
  245. font-style:none;
  246. padding:5px;
  247. line-height:10px;
  248. border-top:1px solid #000;
  249. background-color:;
  250. color:{color:Text};
  251. }
  252.  
  253. #info a {
  254. text-align:center;
  255. font-family:'consolas';
  256. color:{color:Text};
  257. }
  258.  
  259.  
  260. /*SIDELINKS*/
  261.  
  262. #link1 {
  263. border:1px solid {color:borders};
  264. background-color:{color:links background};
  265. width:58px;
  266. padding:7px;
  267. position:fixed;
  268. text-transform:uppercase;
  269. font-size:9x;
  270. text-align:center;
  271. line-height:8px;
  272. height:8px;
  273. overflow:auto;
  274. margin-top:-222px;
  275. margin-left:1px;
  276. font-family:'consolas';
  277. }
  278.  
  279. #link2 {
  280. border:1px solid {color:borders};
  281. background-color:{color:links background};
  282. width:58px;
  283. padding:7px;
  284. position:fixed;
  285. text-transform:uppercase;
  286. font-size:9px;
  287. text-align:center;
  288. line-height:8px;
  289. height:8px;
  290. overflow:auto;
  291. margin-top:-222px;
  292. margin-left:90px;
  293. font-family:'consolas';
  294. }
  295.  
  296. #link3 {
  297. border:1px solid {color:borders};
  298. background-color:{color:links background};
  299. width:58px;
  300. padding:7px;
  301. position:fixed;
  302. text-transform:uppercase;
  303. font-size:9px;
  304. text-align:center;
  305. line-height:8px;
  306. height:8px;
  307. overflow:auto;
  308. margin-top:-196px;
  309. margin-left:1px;
  310. font-family:'consolas';
  311. }
  312.  
  313. #link4 {
  314. border:1px solid {color:borders};
  315. background-color:{color:links background};
  316. width:58px;
  317. padding:7px;
  318. position:fixed;
  319. text-transform:uppercase;
  320. font-size:9px;
  321. text-align:center;
  322. line-height:8px;
  323. height:8px;
  324. overflow:auto;
  325. margin-top:-196px;
  326. margin-left:90px;
  327. font-family:'consolas';
  328. }
  329.  
  330.  
  331. /*QUESTION*/
  332.  
  333. #ask {
  334. color:{color:text};
  335. padding:15px;
  336. font-family:'consolas';
  337. font-size:10px;
  338. letter-spacing:0px;
  339. text-align:left;
  340. text-transform:lowercase;
  341. line-height:150%;
  342. border:4px double {color:borders};
  343. background-color:{color:Ask backg};
  344. }
  345.  
  346. #ask a{
  347. font-weight:none;
  348. text-transform:lowercase;
  349. color:{color:text};
  350. }
  351.  
  352. /*PAGINATION*/
  353. #pagination{
  354. background-color:;
  355. color:#fff;
  356. padding:4px;
  357. font-family:times;
  358. font-size:8pt;
  359. text-align:center;
  360. }
  361.  
  362. #pagination a{
  363. color:#fff;
  364. background-color:transparent;
  365. font-family:times;
  366. font-size:8pt;
  367. letter-spacing:2px;
  368. }
  369.  
  370. /*CREDIT*/
  371.  
  372. #cred {
  373. position:fixed;
  374. text-transform:uppercase;
  375. font-size:13px;
  376. right:9px;
  377. bottom:9px;
  378. padding:5px;
  379. text-align:center;
  380. color:{color:links};
  381. text-shadow:1px 1px 0px {color:borders};
  382. background-color:{color:background};
  383. border:3px double {color:borders};
  384. box-shadow:2px 2px 0px {color:borders};
  385. letter-spacing:1px;
  386. }
  387.  
  388. .popup_block{
  389. display:none;
  390. background:#fff;
  391. padding:20px;
  392. border:1px solid #eee; /* if you want a solid white pop-up, delete this */
  393. float:left;
  394. position:fixed;
  395. top:50%;left:50%;
  396. z-index: 99999;
  397. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  398. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  399. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  400. }
  401.  
  402. *html #fade {position: absolute;}
  403. *html .popup_block {position: absolute;}
  404. #fade {
  405. display:none;
  406. position:fixed;
  407. left:0px;
  408. top:0px;
  409. width:100%;
  410. height:100%;
  411. z-index:9999;
  412. background:#000; /* change to #fff for solid white */
  413. opacity:0.5; /* change to opacity:1; */
  414. }
  415.  
  416. #hoverbox {
  417. position:fixed;
  418. top:245px;
  419. left:770px;}
  420.  
  421. #hovercontent {
  422. margin-top:-18px;
  423. width:150px;
  424. margin-left:20px;
  425. color:#fff;
  426. opacity:0;
  427. -WEBKIT-TRANSITION: ALL 0.7S EASE;
  428. -MOZ-TRANSITION: ALL 0.7S EASE;
  429. -O-TRANSITION: ALL 0.7S EASE;
  430. }
  431.  
  432. #hoverbox:hover #hovercontent {
  433. opacity:1;
  434. -webkit-transition: all 0.7s ease;
  435. -moz-transition: all 0.7s ease;
  436. -o-transition: all 0.7s ease;}
  437.  
  438. #hovertitle {
  439. line-height: 15px;
  440. letter-spacing:2px;
  441. font-weight:normal;
  442. font-family:times;
  443. font-size:12pt;
  444. color:#999;}
  445.  
  446. #s-m-t-tooltip {
  447. max-width:300px;
  448. border-radius: 0px; /* you can add in a border radius here for curved corners if you like */
  449. padding:4px; /* space around the text */
  450. margin:5px 10px 5px 0px; /* positioning of your hover info in relation to the link */
  451. color:#fff; /* text color */
  452. border:1px solid #fff; /* optional border and border color */
  453. font-family: ‘Fjalla One’, sans-serif; /* i’ve added a custom font in here but you can remove this line if you don’t use custom fonts */
  454. font-size:10px; /* font size of your hover info */
  455. letter-spacing:2px; /* optional letter spacing */
  456. background:#000; /* change the background color of your hover info */
  457. z-index:99999;}
  458.  
  459. {CustomCSS}</style></head><body>
  460.  
  461. <div style="position:fixed;top:150px;left:150px;">
  462. <img src="http://static.tumblr.com/ugoh6sa/dNZo806uf/tjthemeback.jpg" style="width:1000px;">
  463. </div>
  464.  
  465. <div id="hoverbox">
  466. <div id="hovertitle">▀</div>
  467. <div id="hovercontent">{DESCRIPTION}</div>
  468. </div>
  469.  
  470. <div style="position:fixed;top:270px;left:770px;">
  471. <a style="font-family:times;font-size:12pt;color:#999;" href="/" title="home">▀</a>
  472. <br><br><a style="font-family:times;font-size:12pt;color:#999;" href="#?w=300" rel="box1" class="poplight" title="ask">▀</a>
  473. <br><br><a style="font-family:times;font-size:12pt;color:#999;" href="{text:url link1}" title="{text:link1}">▀</a>
  474. <br><br><a style="font-family:times;font-size:12pt;color:#999;" href="{text:url link2}" title="{text:link1}">▀</a>
  475.  
  476. </div>
  477.  
  478. <div id="entries">
  479. <div id="container">
  480.  
  481. {block:Posts}
  482. <div id="post">
  483.  
  484. {block:Text}
  485. {block:Title}<h1>{Title}</h1>{/block:Title}
  486. {Body}{/block:Text}
  487.  
  488. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}
  489. {block:Caption}{Caption}{/block:Caption}{/block:Photo}
  490.  
  491. {block:Photoset}{Photoset-400}{block:Caption}{Caption}
  492. {/block:Caption}{/block:Photoset}
  493.  
  494. {block:Quote}<h2>"{Quote}"</h2>
  495. {block:Source}<div class="qsource"> —{Source}</div>
  496. {/block:Source}{/block:Quote}
  497.  
  498. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  499.  
  500. {block:Chat}{block:Title}{Title}{/block:Title}{block:Lines}{block:Label}<b><u>{Label}</u></b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  501.  
  502. {block:Audio}<left>{block:AlbumArt}<img src="{AlbumArtURL}" width="60px" height="60px" align="left" style="margin-right:10px" />{/block:AlbumArt}<span class="audio">{AudioPlayerGrey}</left></span>
  503. {block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}
  504. {block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  505. {/block:ExternalAudio}<b>Played:</b> {PlayCount} arial <br>
  506. {/block:Audio}
  507.  
  508. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  509.  
  510. {block:Answer}<div id="ask">{Question} — <i><b>{Asker}</b></i></div>{Answer}{/block:Answer}
  511.  
  512. <div id="info">
  513. <div id="permalink">
  514. <a href="{Permalink}">{Month} {MonthNumber} {Year} </a> / {NoteCount}</div>
  515.  
  516. {block:PostNotes}<div id="notes"><left>{PostNotes}</div>{/block:PostNotes}
  517. {block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}
  518. </div></div>
  519.  
  520. {/block:Posts}{/block:Posts}</div></div></div>
  521.  
  522.  
  523. </div>
  524.  
  525.  
  526. <div style="position:fixed;top:500px;left:500px;">
  527. <div id="pagination">{block:Pagination}
  528. {block:PreviousPage}
  529. <a href="{PreviousPage}">backward</a>
  530. {/block:PreviousPage}
  531.  
  532. {block:NextPage}
  533. <a href="{NextPage}">forward</a>
  534. {/block:NextPage}
  535. {/block:Pagination}</div>
  536. </div>
  537.  
  538. </ul>
  539. </div></div>
  540.  
  541. <div style="position:fixed; top:680px; left:1100px; width:10px; height:10px;border:1px solid #999;padding:5px;">
  542. <a href="http://www.dovbleagent.tumblr.com" style="color:#999;">★</a>
  543. </div>
  544.  
  545. <div id="box1" class="popup_block">
  546. <p><iframe frameborder="0" scrolling="no" width="100%" height="190" src="http://www.tumblr.com/ask_form/beyondrepaiir.tumblr.com/" style="background-color:transparent; overflow:hidden;" id="ask_form"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('ask_form').allowTransparency=true;</script><![endif]--></p>
  547. </div>
  548.  
  549. </div></div></div></div></div></div></div></div></div></div>
  550.  
  551.  
  552. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement