Advertisement
satanchan

lucas friar edit

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