Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.71 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. <head>
  4. <script type="text/javascript"
  5. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  6. <script>
  7. $(document).ready(function() {
  8. //
  9. $('a.poplight[href^=#]').click(function() {
  10. var popID = $(this).attr('rel'); //Get Popup Name
  11. var popURL = $(this).attr('href'); //Get Popup href to define size
  12. var query= popURL.split('?');
  13. var dim= query[1].split('&');
  14. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  15. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  16. var popMargTop = ($('#' + popID).height() + 80) / 2;
  17. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  18. //Apply Margin to Popup
  19. $('#' + popID).css({
  20. 'margin-top' : -popMargTop,
  21. 'margin-left' : -popMargLeft
  22. });
  23. $('body').append('<div id="fade"></div>');
  24. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  25. return false;
  26. });
  27. $('a.close, #fade').live('click', function() {
  28. $('#fade , .popup_block').fadeOut(function() {
  29. $('#fade, a.close').remove(); //fade them both out
  30. });
  31. return false;
  32. });
  33. });
  34. </script>
  35. <title>{Title}</title>
  36. <link rel="shortcut icon" href="{Favicon}">
  37. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  38. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  39.  
  40. <!---- this is theme 9 by Hollywhood
  41. please don't remove the credit
  42. thank you
  43. --->
  44.  
  45. <meta name="color:Background" content="#ffffff"/>
  46. <meta name="color:Text" content="#9B9B9B"/>
  47. <meta name="color:Link" content="#b8b8b8"/>
  48. <meta name="color:sidebar links hover" content="#999999"/>
  49. <meta name="color:scrollbar" content="#D6D5D5">
  50. <meta name="color:Link Hover" content="#eeeeee"/>
  51.  
  52. <meta name="image:sidebar" content=""/>
  53.  
  54. <meta name="text:link 1" content="Link 1"/>
  55. <meta name="text:link 1 url" content="/"/>
  56. <meta name="text:link 2" content="Link 2"/>
  57. <meta name="text:link 2 url" content="/"/>
  58. <meta name="text:link 3" content="Link 3"/>
  59. <meta name="text:link 3 url" content="/"/>
  60. <meta name="text:link 4" content="Link 4"/>
  61. <meta name="text:link 4 url" content="/"/>
  62.  
  63.  
  64. <style type="text/css">
  65.  
  66. .popup_block{
  67. display:none;
  68. background:#fff;
  69. padding:20px;
  70. border:1px solid #eee; /* if you want a solid white pop-up, delete this */
  71. float:left;
  72. position:fixed;
  73. top:50%;left:50%;
  74. z-index: 99999;
  75. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  76. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  77. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  78. }
  79.  
  80. *html #fade {position: absolute;}
  81. *html .popup_block {position: absolute;}
  82. #fade {
  83. display:none;
  84. position:fixed;
  85. left:0px;
  86. top:0px;
  87. width:100%;
  88. height:100%;
  89. z-index:9999;
  90. background:#000; /* change to #fff for solid white */
  91. opacity:0.5; /* change to opacity:1; */
  92. }
  93.  
  94.  
  95.  
  96. ::-webkit-scrollbar-thumb{
  97. background-color: #000000;
  98. border: 2px solid #ffffff;
  99. height:auto;
  100. }
  101.  
  102. ::-webkit-scrollbar {
  103. height:auto;
  104. width:11px;
  105. background-color: #000000;
  106. border:5px solid #ffffff;
  107. }
  108.  
  109. iframe#tumblr_controls {
  110. top: 0% !important;
  111. right:0% !important;
  112. opacity:0.3;
  113. position: fixed !important;
  114. filter:alpha(opacity=30);
  115. -webkit-transition: all 0.7s ease;
  116. -moz-transition: all 0.7s ease;
  117. -o-transition: all 0.7s ease;
  118. }
  119. iframe#tumblr_controls:hover{
  120. top: 0% !important;
  121. right:0% !important;
  122. opacity:0.8;
  123. position: fixed !important;
  124. filter:alpha(opacity=80);
  125. -webkit-transition: all 0.7s ease;
  126. -moz-transition: all 0.7s ease;
  127. -o-transition: all 0.7s ease;
  128. }
  129.  
  130. h1 {
  131. font-weight:normal;
  132. font-size:13px;
  133. text-align:center;
  134. font-style:normal;
  135. line-height:100%;
  136. letter-spacing:1px;
  137. text-transform:normal;
  138. color:{color:text};
  139. }
  140.  
  141. h2 {
  142. font-size:10px;
  143. text-align:center;
  144. line-height:100%;
  145. letter-spacing:-0.5px;
  146. color:{color:text};
  147. font-weight:bold;
  148. text-transform:uppercase;
  149. padding:5px;
  150. padding-bottom:2px;
  151. }
  152.  
  153.  
  154. blockquote {
  155. border-left:2px solid {color:text};
  156. padding-left:5px;
  157. margin:5px;
  158. }
  159.  
  160.  
  161. body {
  162. background:{color:background};
  163. margin:0px;
  164. color:{color:text};
  165. font-family:trebuchet ms;
  166. font-size:9px;
  167. line-height:100%;
  168. background-image:url(http://static.tumblr.com/gibebjb/kZOnfqjz3/izaya.jpg);
  169. background-attachment: fixed;
  170. background-repeat: no-repeat;
  171. background-position:top left;
  172. overflow:hidden;
  173. }
  174.  
  175. a {
  176. text-decoration:none;
  177. outline:none;
  178. -moz-outline-style:none;
  179. color:{color:link};
  180. -moz-transition-duration:0.5s;
  181. -webkit-transition-duration:0.5s;
  182. -o-transition-duration:0.5s;
  183. }
  184.  
  185. a:hover {
  186. text-decoration:none;
  187. outline:none;
  188. -moz-outline-style:none;
  189. color:{color:link hover};
  190. }
  191.  
  192. img {
  193. border:none;
  194. }
  195.  
  196. blockquote {
  197. padding-left:5px;
  198. border-left:2px solid;
  199. }
  200.  
  201. blockquote blockquote {
  202. padding-left:5px;
  203. border-left:2px solid;
  204. }
  205.  
  206. #post {
  207. width:315px;
  208. padding-bottom:10px;
  209. margin-top:10px;
  210. margin-bottom:10px;
  211.  
  212. }
  213.  
  214.  
  215. #entries {
  216. position:fixed;
  217. padding:10px;
  218. width:325px;
  219. height:199px;
  220. overflow-x:hidden;
  221. overflow-y:scroll;
  222. margin-left:688px;
  223. margin-top:390px;
  224. margin-bottom:10px;
  225. }
  226.  
  227.  
  228.  
  229. #sidebar {
  230. color:{color:text};
  231. position:fixed;
  232. margin-top:150px;
  233. margin-left:0px;
  234. text-align:left;
  235. }
  236.  
  237.  
  238. #sidebarimage img {
  239. width:350px;
  240. height:775px;
  241. margin-top:-150px;
  242. opacity:0.90;
  243. }
  244.  
  245. #links {
  246. position:fixed;
  247. margin-top:-500px;
  248. margin-left:889px;
  249. text-align:center;
  250. font-size:24px;
  251. opacity:0.8;
  252. padding:7px;
  253. word-spacing: 3px;
  254. width:176px;
  255. font-family:cambria;
  256. text-align:center;
  257. }
  258.  
  259. #links a {
  260. letter-spacing: 0px;
  261. margin-left:3px;
  262. font-style:normal;
  263. }
  264.  
  265.  
  266. #links a:hover {
  267. padding:3px;
  268. font-style:normal;
  269. -moz-transition-duration:.90s;
  270. -webkit-transition-duration:.90s;
  271. -o-transition-duration:.90s;
  272. }
  273.  
  274.  
  275.  
  276. #sidebar:hover #links {
  277. opacity:0.8;
  278. -moz-transition-duration:.90s;
  279. -webkit-transition-duration:.90s;
  280. -o-transition-duration:.90s;
  281. }
  282.  
  283.  
  284. #description {
  285. position:absolute;
  286. text-align:center;
  287. width:170px;
  288. padding:10px;
  289. color: {color:text};
  290. opacity:0.8;
  291. margin-left:815px;
  292. margin-top:-200px;
  293. font-family:Cambria;
  294. text-transform:uppercase;
  295. font-style:none;
  296. font-size:14px;
  297. line-height:140%;
  298. }
  299.  
  300. #pagination {
  301. font-family:Century Gothic;
  302. width:170px;
  303. font-size:9px;
  304. text-transform:uppercase;
  305. margin-top:-300px;
  306. margin-left:300px;
  307. padding-top:5px;
  308. word-spacing:4px;
  309. font-style:normal;
  310. text-align:center;
  311. }
  312.  
  313. #pagination a {
  314. color:{color:link};
  315. }
  316.  
  317. #info {
  318. font-family:cambria;
  319. width:315px;
  320. margin-top:3px;
  321. padding:1px;
  322. padding-top:5px;
  323. font-size:7px;
  324. color:{color:text};
  325. text-transform:uppercase;
  326. font-style:normal;
  327. letter-spacing:1px;
  328. text-align:left;
  329. -moz-transition-duration:0.5s;
  330. -webkit-transition-duration:0.5s;
  331. -o-transition-duration:0.5s;
  332. }
  333.  
  334. #info a {
  335. color:{color:link};
  336. text-align:right;
  337. letter-spacing:1px;
  338. font-style:normal;
  339. }
  340.  
  341. #info a:hover {
  342. color:{color:link hover};
  343. }
  344.  
  345. .tags {
  346. font-family:trebuchet ms;
  347. font-style:normal;
  348. width:500px;
  349. text-transform:normal;
  350. color:{color:link};
  351. letter-spacing:0px;
  352. opacity:0;
  353. line-height:120%;
  354. font-size:8px;
  355. text-align:left;
  356. padding-top:5px;
  357. -moz-transition-duration:0.2s;
  358. -webkit-transition-duration:0.2s;
  359. -o-transition-duration:0.2s;
  360. }
  361.  
  362. #post:hover .tags {
  363. opacity:1;
  364. -moz-transition-duration:1s;
  365. -webkit-transition-duration:1s;
  366. -o-transition-duration:1s;
  367.  
  368. }
  369.  
  370. .audio{
  371. background-color:#e5e5e5;
  372. height:65px;
  373. overflow:hidden;
  374. }
  375.  
  376. .question {
  377. padding:10px;
  378. padding-top:13px;
  379. text-align:left;
  380. color:{color:text};
  381. background-color: #f9f9f9;
  382. }
  383.  
  384. .answer {
  385. text-align:left;
  386. padding:7px;
  387. padding-left:18px;
  388. color:{color:text};
  389. }
  390.  
  391.  
  392. #credit {
  393. font-size:9px;
  394. font-family:cambria;
  395. font-style:italic;
  396. letter-spacing:1px;
  397. -moz-transition-duration:0.5s;
  398. -webkit-transition-duration:0.5s;
  399. -o-transition-duration:0.5s;
  400. }
  401.  
  402. #credit a {
  403. background-color:#fff;
  404. padding:5px;
  405. border:1px solid #e9e9e9;
  406. position:fixed;
  407. right:15px;
  408. bottom:10px
  409. }
  410.  
  411. #credit a:hover {
  412. color:#fff;
  413. background-color:#191919;
  414. }
  415.  
  416.  
  417. {CustomCSS}
  418.  
  419. </style>
  420.  
  421.  
  422. </head><body>
  423. </div>
  424.  
  425. <div id="sidebar">
  426.  
  427. <div id="sidebarimage"><img src="{image:sidebar}"></div>
  428.  
  429. <div id="links">
  430. <a href="#?w=300" rel="box1" class="poplight">●</a>
  431. <a href="#?w=300" rel="box2" class="poplight">●</a>
  432. <a href="#?w=300" rel="box3" class="poplight">●</a>
  433. <a href="{text:link 4 url}">{text:link 4}</a>
  434. </a>
  435.  
  436. </div>
  437.  
  438. <div id="description">{description}
  439. {block:Pagination}
  440. <div id="pagination">
  441. {block:PreviousPage}
  442. <a href="{PreviousPage}">«</a>
  443. {/block:PreviousPage}
  444. {block:JumpPagination length="5"}
  445. {block:CurrentPage}
  446. <span class="current_page">{PageNumber}</span>
  447. {/block:CurrentPage}
  448. {block:JumpPage}
  449. <a class="jump_page" href="{URL}">{PageNumber}</a>
  450. {/block:JumpPage}
  451. {/block:JumpPagination}
  452. {block:NextPage}
  453. <a href="{NextPage}">»</a>
  454. {/block:NextPage}
  455. </div>
  456. {/block:Pagination}
  457. </div>
  458. </div>
  459. </div>
  460. </div>
  461.  
  462. <div id="entries">{block:Posts}<div id="post">
  463.  
  464. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  465.  
  466. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  467.  
  468. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  469.  
  470. {block:Quote}<big><big>"{Quote}"</big></big>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  471.  
  472. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  473.  
  474. {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}
  475.  
  476. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="65px" align="left">{/block:AlbumArt}<div class="audio">{AudioPlayerGrey}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  477.  
  478. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  479.  
  480. {block:Answer}<div class="question"><i>{Asker} inquired:</i> {Question}</div><div class="answer">{Answer}</div>{/block:answer}
  481.  
  482. {block:Date}<div id="info"> <a href="{Permalink}" style="background-color:#000000;padding:2px;padding-left:4px;padding-right:4px;color:#fff;">{TimeAgo}</a>
  483. {/block:Date} {block:NoteCount}with <font color=#4D71A3><big><big><big>▴</big></big></big></font> <a href="{Permalink}">{NoteCountWithLabel}</a> {/block:NoteCount} {block:RebloggedFrom} / <a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}
  484. {block:ContentSource} / <a href="{SourceURL}">source</a>{/block:ContentSource} <div style="float:right;"> — <a href="{ReblogURL}" target="_blank" class="details">Reblog</a> {/block:Date}</div></div>
  485. {block:HasTags}
  486. <div class="tags">
  487. {block:Tags} <a href="{TagURL}"> ■ {Tag}</a> {/block:Tags}</div>
  488. {/block:HasTags}
  489. <div class="postnote">
  490. {block:PostNotes}{PostNotes}{/block:PostNotes}
  491. </div>
  492. </div>
  493. {/block:Posts}
  494.  
  495. </div>
  496. <div id="credit"><a href="http://hollywhood.tumblr.com">HW</div>
  497.  
  498. </body>
  499. <div id="box1" class="popup_block">
  500. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/nilinisms.tumblr.com" width="100%"></iframe>
  501. </div>
  502. <div id="box2" class="popup_block">
  503. <p><center><a href="/i">〈 ☓ ⁞ ▪ feel ▪ 〉</center></a>
  504. <p><center><a href="/ii">〈 ☓ ⁞ ▪ free ▪ 〉</center></a>
  505. <p><center><a href="/iii">〈 ☓ ⁞ ▪ to ▪ 〉</center></a>
  506. <p><center><a href="/iv">〈 ☓ ⁞ ▪ do whatever you want▪ 〉</center></a>
  507. </div>
  508. <div id="box3" class="popup_block">
  509. <p><center>——————- ( ☓ -- ‘ ♚ ⁞ DISCLAIMER )</center></a>
  510. <p>add what you want here!
  511. </div></div></div></div></div></div></div></div></div></div>
  512. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement