prxphecygirl

Untitled

Dec 30th, 2014
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.70 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><title>{Title}</title>
  4. <link rel="shortcut icon" href="{Favicon}">
  5. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  6. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  7.  
  8. <script type="text/javascript"
  9. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  10. <script>
  11. $(document).ready(function() {
  12. //
  13. $('a.poplight[href^=#]').click(function() {
  14. var popID = $(this).attr('rel'); //Get Popup Name
  15. var popURL = $(this).attr('href'); //Get Popup href to define size
  16. var query= popURL.split('?');
  17. var dim= query[1].split('&');
  18. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  19. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  20. var popMargTop = ($('#' + popID).height() + 80) / 2;
  21. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  22. //Apply Margin to Popup
  23. $('#' + popID).css({
  24. 'margin-top' : -popMargTop,
  25. 'margin-left' : -popMargLeft
  26. });
  27. $('body').append('<div id="fade"></div>');
  28. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  29. return false;
  30. });
  31. $('a.close, #fade').live('click', function() {
  32. $('#fade , .popup_block').fadeOut(function() {
  33. $('#fade, a.close').remove(); //fade them both out
  34. });
  35. return false;
  36. });
  37. });
  38. </script>
  39.  
  40. <script type="text/javascript"
  41. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  42. <script>
  43. $(document).ready(function() {
  44. //
  45. $('a.poplight[href^=#]').click(function() {
  46. var popID = $(this).attr('rel'); //Get Popup Name
  47. var popURL = $(this).attr('href'); //Get Popup href to define size
  48. var query= popURL.split('?');
  49. var dim= query[1].split('&');
  50. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  51. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  52. var popMargTop = ($('#' + popID).height() + 80) / 2;
  53. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  54. //Apply Margin to Popup
  55. $('#' + popID).css({
  56. 'margin-top' : -popMargTop,
  57. 'margin-left' : -popMargLeft
  58. });
  59. $('body').append('<div id="fade"></div>');
  60. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  61. return false;
  62. });
  63. $('a.close, #fade').live('click', function() {
  64. $('#fade , .popup_block').fadeOut(function() {
  65. $('#fade, a.close').remove(); //fade them both out
  66. });
  67. return false;
  68. });
  69. });
  70. </script>
  71.  
  72.  
  73. <link href='http://fonts.googleapis.com/css?family=Rock+Salt' rel='stylesheet' type='text/css'>
  74.  
  75. <!---- base theme by enterprizer @ tumblr, for public use --->
  76.  
  77. <meta name="color:Background" content="#ffffff"/>
  78. <meta name="color:Text" content="#838282"/>
  79. <meta name="color:Link" content="#b8b8b8"/>
  80. <meta name="image:sidebar" content=""/>
  81. <meta name="image:background" content=""/>
  82. <meta name="image:askbg" content=""/>
  83.  
  84. <style type="text/css">
  85.  
  86. ::-webkit-scrollbar-thumb{
  87. background-color: #999999;
  88.  
  89. height:auto;
  90. }
  91.  
  92. ::-webkit-scrollbar {
  93.  
  94. height:auto;
  95. width:0px;
  96. background-color:#999999;
  97. }
  98.  
  99. body {
  100. background:{color:background};
  101. margin:0px;
  102. color:#353535;
  103. font-family:Calibri;
  104. font-size:10px;
  105. line-height:100%;
  106. background-image:url('{image:background}');
  107. background-attachment:fixed;
  108. background-repeat:no-repeat;
  109. }
  110.  
  111. small {
  112. font-size:10px;
  113. }
  114.  
  115. b, strong {
  116. text-transform:uppercase;
  117. font-size:11px;
  118. letter-spacing:2px;
  119. text-shadow:1px 1px 1px #000;
  120. }
  121.  
  122. i, em {
  123. font-family: 'Rock Salt', cursive;
  124. }
  125.  
  126. pre {
  127. font-family:georgia;
  128. font-size:20px;
  129. text-align:center;
  130. text-transform:lowercase;
  131. color:#000;
  132. }
  133.  
  134. ul{
  135. list-style: none;
  136. }
  137.  
  138. ul li:before{
  139. content:"☓";
  140. padding-right:10px;
  141. font-size:10pt;
  142. font-weight:bold;
  143. color:#32647a;
  144. text-shadow: 1px 1px #000;
  145. }
  146.  
  147.  
  148. a {
  149. text-decoration:none;
  150. outline:none;
  151. -moz-outline-style:none;
  152. color:#000;
  153. text-transform:lowercase;
  154. font-style:italic;
  155. text-shadow:1px 1px 1px #91a3ab;
  156. }
  157.  
  158. #post img{
  159.  
  160. opacity:0.6;
  161.  
  162. -webkit-transition: all 0.6s ease-in-out;
  163.  
  164. -moz-transition: all 0.6s ease-in-out;
  165.  
  166. -o-transition: all 0.6s ease-in-out;
  167.  
  168. -ms-transition: all 0.6s ease-in-out;
  169.  
  170. transition: all 0.6s ease-in-out;
  171.  
  172. }
  173.  
  174. #post img:hover{
  175.  
  176. opacity:1;
  177.  
  178. -webkit-transition: all 0.6s ease-in-out;
  179.  
  180. -moz-transition: all 0.6s ease-in-out;
  181.  
  182. -o-transition: all 0.6s ease-in-out;
  183.  
  184. -ms-transition: all 0.6s ease-in-out;
  185.  
  186. transition: all 0.6s ease-in-out;
  187.  
  188. }
  189.  
  190. blockquote {
  191. padding-left:5px;
  192. border-left:2px solid #4d4d4d;
  193. }
  194.  
  195. blockquote blockquote {
  196. padding-left:5px;
  197. border-left:2px solid #4d4d4d;
  198. }
  199.  
  200. h1 {
  201. font-size:25px;
  202. font-family: 'Rock Salt', cursive;
  203. text-align:center;
  204. }
  205.  
  206. #entries {
  207. position:absolute;
  208. width:530px;
  209. margin-left:550px;
  210. padding:10px;
  211. margin-top:120px;
  212. overflow:auto;
  213. height:300px;
  214. background-color:;
  215. background-attachment:fixed;
  216. background-image:url('');
  217. -webkit-filter:grayscale(80%);
  218. -webkit-transition: all 0.6s ease-in-out;
  219. }
  220.  
  221. #post {
  222. width:500px;
  223. padding-bottom:20px;
  224. }
  225.  
  226. #sidebar {
  227. width:250px;
  228. position:fixed;
  229. margin-left:200px;
  230. margin-top:100px;
  231. }
  232.  
  233. #title {
  234. font-size:30px;
  235. text-align:center;
  236. color:#4d4d4d;
  237. margin-top:400px;
  238. margin-left:470px;
  239. width:500px;
  240. margin-bottom:5px;
  241. font-family: 'Rock Salt', cursive;
  242. }
  243.  
  244. #sidebarimage {
  245. width 250px;
  246. }
  247.  
  248. #sidebarimage img {
  249. width:250px;
  250. }
  251.  
  252. #description {
  253. padding:5px;
  254. text-align:center;
  255. }
  256.  
  257. #pagination {
  258. font-size:20px;
  259. text-align:center;
  260. }
  261.  
  262. #info {
  263. text-align:right;
  264. border-top:1px double #4d4d4d;
  265. margin-top:10px;
  266. padding:3px;
  267. }
  268.  
  269. #tags {
  270. font-family:calibri;
  271. font-size:8px;
  272. text-transform:uppercase;
  273. letter-spacing:2px;
  274. text-align:center;
  275. padding:2px;
  276. margin-bottom:3px;
  277. }
  278.  
  279. #ask {
  280. background-color:#4d4d4d;
  281. padding:14px;
  282. font-family:calibri;
  283. font-size:9px;
  284. letter-spacing:1px;
  285. text-align:right;
  286. margin-top:0px;
  287. margin-left:0px;
  288. text-transform:lowercase;
  289. line-height:100%;
  290. color:#91a3ab;
  291. }
  292.  
  293. #ask a{
  294. color:#91a3ab;
  295. }
  296.  
  297. #asker {
  298. color:#91a3ab;
  299. padding-bottom:5px;
  300. font-family: 'Rock Salt', cursive;
  301. padding-left:5px;
  302. font-size:10px;
  303. letter-spacing:1px;
  304. padding-right:5px;
  305. width:490px;
  306. margin-top:-14px;
  307. background-image:url('{image:askbg}');
  308. margin-left:-14px;
  309. padding-top:15px;
  310. }
  311.  
  312. #asker a{
  313. color:{color:asker};
  314. }
  315.  
  316. #sunnydale {
  317. font-size:20px;
  318. width:560px;
  319. margin-top:-427px;
  320. letter-spacing:3px;
  321. padding:10px;
  322. font-style:italic;
  323. margin-left:650px;
  324. position:absolute;
  325. z-index: 9999;
  326. }
  327.  
  328. .popup_block{
  329. display:none;
  330. background:#91a3ab;
  331. padding:20px;
  332. border:1px solid #4d4d4d; /* if you want a solid white pop-up, delete this */
  333. float:left;
  334. position:fixed;
  335. top:50%;left:50%;
  336. z-index: 99999;
  337. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  338. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  339. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  340. }
  341.  
  342. *html #fade {position: absolute;}
  343. *html .popup_block {position: absolute;}
  344. #fade {
  345. display:none;
  346. position:fixed;
  347. left:0px;
  348. top:0px;
  349. width:100%;
  350. height:100%;
  351. z-index:9999;
  352. background:#000; /* change to #fff for solid white */
  353. opacity:0.5; /* change to opacity:1; */
  354. }
  355.  
  356.  
  357. {CustomCSS}</style></head><body>
  358.  
  359. <div id="sidebar">
  360.  
  361. <div id="title">A GOOD MAN</div>
  362.  
  363. <div id="sunnydale">
  364. <a href="/" title="sunnydale">☓ </a>&nbsp;
  365. <a href="#?w=300" rel="box1" class="poplight" title="information">☓ </a>&nbsp;
  366. <a href="#?w=500" rel="box2" class="poplight" title="guidelines">☓ </a>&nbsp;
  367. <a href="/ask" title="message">☓ </a>&nbsp;
  368. <a href="/nav" title="navigate">☓ </a>&nbsp;
  369. <a href="http://prxphecygirl.tumblr.com" title="emily's buffy">☓ </a>&nbsp;
  370. </div>
  371.  
  372.  
  373. <div id="description">{Description}</div>
  374.  
  375. <div id="pagination">
  376. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">«</a>{/block:PreviousPage}
  377. {block:NextPage}<a href="{NextPage}">»</a>{/block:NextPage}{/block:Pagination}
  378. </div>
  379.  
  380. </div>
  381.  
  382. <div id="entries">{block:Posts}<div id="post">
  383.  
  384. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  385.  
  386. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  387.  
  388. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  389.  
  390. {block:Quote}{Quote}{block:Source} —{Source}{/block:Source}{/block:Quote}
  391.  
  392. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  393.  
  394. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  395.  
  396. {block:Audio}{AudioPlayerWhite}{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  397.  
  398. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  399.  
  400. {block:Answer}<div id="ask"><div id="asker">{Asker} entered the initiative </div><p>{Question}</div></q>{Answer}{/block:answer}
  401.  
  402. <div id="info">
  403. {block:Date}<b>posted:</b> {TimeAgo}{/block:Date} &nbsp; &nbsp;<b>☓☓ </b>&nbsp; &nbsp; <a href="{Permalink}">
  404. {NoteCount}</a>{block:RebloggedFrom}<br>via:<a href="{ReblogParentURL}"
  405. title="{ReblogParentTitle}">{ReblogParentName}</a> source:<a href="{ReblogRootURL}"title="{ReblogRoottitle}">{ReblogRootName}</a>{/block:RebloggedFrom}<br> <div id="tags"> {block:HasTags}{block:Tags} <b>☓ </b><a href="{TagURL}">{Tag}</a>{/block:Tags}{/block:HasTags}</div>
  406.  
  407. </div>
  408. {block:PostNotes}{PostNotes}{/block:PostNotes}
  409. {/block:Posts}</div>
  410.  
  411. </body></html>
  412.  
  413. <div id="box1" class="popup_block">
  414. <pre>written by emily.</pre>
  415. <center>indie <b>semi-selective</b> riley finn<br /></b></b><b>tracking:</b> #notgoodwithgreyareas
  416. </div>
  417.  
  418. </div></div></div></div></div></div></div></div></div></div>
  419. <div id="box2" class="popup_block">
  420. <pre>one.</pre></h1>
  421. <ul><li>some guidelines here</b></ul>
  422. <pre>two.</pre>
  423. <ul><li>more guidelines </ul>
  424. <pre>three.</pre>
  425. <ul><li>even more guidelines</ul>
  426. <pre>four.</pre>
  427. <ul><li>whoa more guidelines</ul>
  428. </div>
  429.  
  430. </div></div></div></div></div></div></div></div></div></div>
Advertisement
Add Comment
Please, Sign In to add comment