Advertisement
vasoulaerene

Theme 07

Apr 19th, 2013
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.58 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.  
  3. <!-- THEME 07 BY WAYBACKS
  4. DO NOT STEAL OR CLAIM AS YOUR OWN -->
  5.  
  6.  
  7. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  8.  
  9.  
  10. <head>
  11.  
  12. <script type="text/javascript"
  13. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  14.  
  15. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  16.  
  17.  
  18. <script>
  19.  
  20. (function($){
  21.  
  22. $(document).ready(function(){
  23.  
  24. $("a[title]").style_my_tooltips({
  25.  
  26. tip_follows_cursor:true,
  27.  
  28. tip_delay_time:90,
  29.  
  30. tip_fade_speed:600,
  31.  
  32. attribute:"title"
  33.  
  34. });
  35.  
  36. });
  37.  
  38. })(jQuery);
  39.  
  40. </script>
  41.  
  42. <script>
  43.  
  44.  
  45.  
  46. $(document).ready(function() {
  47.  
  48. //
  49.  
  50.  
  51.  
  52. //When you click on a link with class of poplight and the href starts with a #
  53.  
  54. $('a.poplight[href^=#]').click(function() {
  55.  
  56. var popID = $(this).attr('rel'); //Get Popup Name
  57.  
  58. var popURL = $(this).attr('href'); //Get Popup href to define size
  59.  
  60.  
  61.  
  62. //Pull Query & Variables from href URL
  63.  
  64. var query= popURL.split('?');
  65.  
  66. var dim= query[1].split('&');
  67.  
  68. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  69.  
  70.  
  71.  
  72. //Fade in the Popup and add close button
  73.  
  74. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://tiny.cc/closeimg" class="btn_close" title="Close Window" alt="Close" /></a>');
  75.  
  76.  
  77. //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
  78.  
  79. var popMargTop = ($('#' + popID).height() + 80) / 2;
  80.  
  81. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  82.  
  83.  
  84.  
  85. //Apply Margin to Popup
  86.  
  87. $('#' + popID).css({
  88.  
  89. 'margin-top' : -popMargTop,
  90.  
  91. 'margin-left' : -popMargLeft
  92.  
  93. });
  94.  
  95.  
  96.  
  97. //Fade in Background
  98.  
  99. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  100.  
  101. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  102.  
  103.  
  104.  
  105. return false;
  106.  
  107. });
  108.  
  109.  
  110.  
  111. //Close Popups and Fade Layer
  112.  
  113. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  114.  
  115. $('#fade , .popup_block').fadeOut(function() {
  116.  
  117. $('#fade, a.close').remove(); //fade them both out
  118.  
  119. });
  120.  
  121. return false;
  122.  
  123. });
  124.  
  125.  
  126.  
  127.  
  128.  
  129. });
  130.  
  131. </script>
  132.  
  133. <meta name="color:bg" content="#FFFFFF">
  134. <meta name="color:link" content="#A5A5A5">
  135. <meta name="color:hover" content="#636363">
  136. <meta name="color:infobg" content="#FCFCFC">
  137. <meta name="color:text" content="#9A9A9A">
  138. <meta name="color:tags" content="#EDEDED">
  139. <meta name="color:border" content="#FAFAFA">
  140.  
  141. <meta name="image:sidebar" content=""/>
  142.  
  143. <meta name="text:linkA" content="">
  144. <meta name="text:linkA url" content="/">
  145. <meta name="text:linkB" content="">
  146. <meta name="text:linkB url" content="/">
  147. <meta name="text:linkC" content="">
  148. <meta name="text:linkC url" content="/">
  149. <meta name="text:linkD" content="">
  150. <meta name="text:linkD url" content="/">
  151. <meta name="text:linkE" content="">
  152. <meta name="text:linkE url" content="/">
  153. <meta name="text:linkF" content="">
  154. <meta name="text:linkF url" content="/">
  155. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  156. <title>{Title}</title> {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  157. <link rel="shortcut icon" href="{Favicon}" />
  158. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  159.  
  160.  
  161. <style type="text/css">
  162.  
  163. #bite
  164. #bite a{ color:#fff;
  165. display:block
  166. }
  167. #bite .death {
  168. margin-right:0px;filter: alpha(opacity = 0);
  169. opacity:0;-webkit-transition: all 0.5s ease-out;
  170. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  171. }
  172.  
  173. #bite:hover .death {
  174. margin-left:0px;
  175.  
  176. -webkit-transition: all 0.8s ease-out;
  177. -moz-transition: all 0.8s ease-out;
  178. transition: all 0.8s ease-out;
  179. filter: alpha(opacity = 100);
  180. filter: alpha(opacity = 100);
  181. opacity:1;
  182. }
  183.  
  184. a {
  185. color:{color:link};
  186. text-decoration:none;
  187. -moz-transition-duration:0.5s;
  188. -webkit-transition-duration:0.5s;
  189. -o-transition-duration:0.5s;
  190. }
  191.  
  192. a:hover {
  193. color:{color:hover};
  194. text-decoration:underline;
  195. -moz-transition-duration:0.5s;
  196. -webkit-transition-duration:0.5s;
  197. -o-transition-duration:0.5s;
  198. }
  199.  
  200.  
  201. ::-webkit-scrollbar {background-color:{color:infobg}; height:8px; width:3px}
  202. ::-webkit-scrollbar-thumb:vertical {background-color:#eee; height:50px}
  203. ::-webkit-scrollbar-thumb:horizontal {background-color:{color:scrollbar}; height:8px!important}
  204.  
  205. body {
  206. background-color:{color:bg};
  207. font-family:cambria;
  208. font-weight:normal;
  209. }
  210.  
  211.  
  212.  
  213.  
  214. h1 {
  215. font-weight:normal;
  216. font-size:10px;
  217. text-align:center;
  218. font-style:normal;
  219. line-height:80%;
  220. letter-spacing:1px;
  221. text-transform:uppercase;
  222. color:{color:text};
  223. }
  224.  
  225. h2 {
  226. font-family:cambria;
  227. font-size:15px;
  228. text-align:center;
  229. line-height:100%;
  230. letter-spacing:-1px;
  231. color:{color:text};
  232. font-style:italic;
  233. font-weight:normal;
  234. padding-bottom:2px;
  235. }
  236.  
  237.  
  238. blockquote {
  239. border-left:2px solid {color:text};
  240. padding-left:5px;
  241. margin:5px;
  242. }
  243.  
  244. #theme {
  245. background-color:{color:bg};
  246. width:700px;
  247. margin: 0 auto -12px auto;
  248. text-align: center;
  249. }
  250.  
  251. #topbar {
  252. margin-top:0px;
  253. position:fixed;
  254. background-color:#fff;
  255. opacity:1;
  256. width:520px;
  257. height:80px;
  258. margin-left:-110px;
  259. border-bottom:1px solid #f1f1f1;
  260. }
  261.  
  262. #title {
  263. position:fixed;
  264. color:{color:text};
  265. letter-spacing:0px;
  266. text-align:center;
  267. margin-top:10px;
  268. width:500px;
  269. z-index:100;
  270. font-size:20px;
  271. letter-spacing:-1px;
  272. font-family: georgia;
  273. text-transform:lowercase;
  274. font-family:georgia;
  275. padding:5px;
  276. line-height:23px;
  277. margin-left:-105px;
  278. font-style:italic;
  279. }
  280.  
  281. #sidebar {
  282. margin-left:500px;
  283. color:{color:text};
  284. position:fixed;
  285. width:150px;
  286. height:auto;
  287. margin-top:230px;
  288. text-align:left;
  289. }
  290.  
  291. #sidebar img {
  292. border:1px solid #fafafa;
  293. padding:5px;
  294. width:105px;
  295. height:105px;
  296. margin-bottom:10px;
  297. border-radius:500px;
  298. }
  299.  
  300.  
  301. .links {
  302. position:fixed;
  303. width:500PX;
  304. font-family:cambria;
  305. margin-left:-105px;
  306. margin-top:40px;
  307. font-size:12px;
  308. text-transform:lowercase;
  309. font-style:italic;
  310. text-align:center;
  311. letter-spacing:0px;
  312. line-height:100%;
  313. }
  314.  
  315. .links a{
  316. width:40px;
  317. opacity:1;
  318. display:inline-block;
  319. border:1px dotted #f1f1f1;
  320. background:#fff;
  321. padding:2px;
  322. color:{color:text};
  323. letter-spacing:0px;
  324. text-decoration:none;
  325. -moz-transition-duration:1s;
  326. -webkit-transition-duration:1s;
  327. -o-transition-duration:1s;
  328. }
  329.  
  330. .links a:hover{
  331. background-color:#000;
  332. text-decoration:underline;
  333. color:#fff;
  334. -moz-transition-duration:1s;
  335. -webkit-transition-duration:1s;
  336. -o-transition-duration:1s;
  337. }
  338.  
  339. .desc {
  340. width:100px;
  341. margin-top:-10px;
  342. margin-left:10px;
  343. text-align:center;
  344. font-family:cambria;
  345. font-style:italic;
  346. font-size:8px;
  347. color:{color:text};
  348. letter-spacing:0px;
  349. line-height:150%;
  350. }
  351.  
  352. .desc a {
  353. color:{color:link};
  354. }
  355.  
  356. .pagi {
  357. margin-left:-25px;
  358. margin-top:10px;
  359. color:#9a9a9a;
  360. font-family:cambria;
  361. font-size:8px;
  362. text-transform:lowercase;
  363. letter-spacing:0px;
  364. font-style:italic;
  365. text-align:center;
  366. }
  367.  
  368. .pagi a {
  369. color:{color:text};
  370. }
  371.  
  372. #stuffcontainer {
  373. float:left;
  374. margin-left:-100px;
  375. margin-top:95px;
  376. text-align:justify;
  377. background-color:{color:bg};
  378. color:{color:text};
  379. margin-bottom: 35px;
  380. }
  381.  
  382.  
  383. #stuff {
  384. width:500px;
  385. margin-top:35px;
  386. text-align:justify;
  387. font-size:11px;
  388. line-height:90%;
  389. letter-spacing:0x;
  390. color:{color:text};
  391. }
  392.  
  393. .caption {
  394. width:500px;
  395. text-align:justify;
  396. line-height:120%;
  397. }
  398.  
  399. .ask {
  400. padding:1px;
  401. text-align:left;
  402. color:{color:text};
  403. }
  404.  
  405. .ans {
  406. text-align:left;
  407. padding:10px;
  408. color:{color:text};
  409. }
  410.  
  411. .audio {
  412. width:500px;
  413. padding-bottom:10px;
  414. }
  415.  
  416. .albumart {
  417. float:left;
  418. padding:0px 10px 10px 0px;
  419. }
  420.  
  421. .albumart img {
  422. border:1px solid #fafafa;
  423. padding:5px;
  424. width:100px;
  425. height:100px;
  426. }
  427.  
  428. .playercontainer {
  429. text-align:left;
  430. padding:10px;
  431. background-color:#ffffff;
  432. width:480px;
  433. }
  434.  
  435. .audioinfo {
  436. padding:10px;
  437. color:{color:text};
  438. }
  439.  
  440. #postinfo {
  441. color:{color:text};
  442. text-align:right;
  443. font-family:calibri;
  444. font-size: 8px;
  445. letter-spacing:0px;
  446. font-style: normal;
  447. margin-top:10px;
  448. border-top: 1px solid #fafafa;
  449. padding:3px;
  450. text-transform:uppercase;
  451. }
  452.  
  453. #postinfo a {
  454. color:{color:text};
  455. text-align:center;
  456. letter-spacing:0px;
  457. font-style:normal;
  458. }
  459.  
  460. #postinfo a:hover {
  461. color:{color:hover};
  462. }
  463.  
  464. .note {
  465. text-transform:uppercase;
  466. font-style:normal;
  467. letter-spacing:0px;
  468. font-size: 9px;
  469. text-align:left;
  470. line-height:90%;
  471. margin-left:-40px;
  472. }
  473.  
  474. .note li {
  475. list-style-type:none;
  476. border-bottom:1px solid {color:border};
  477. padding:10px 25px 10px 25px;
  478. text-align:left;
  479. margin:0px;
  480. -moz-transition-duration:0.5s;
  481. -webkit-transition-duration:0.5s;
  482. -o-transition-duration:0.5s;
  483. }
  484.  
  485. .tags {
  486. margin-top:-5px;
  487. font-family:calibri;
  488. font-style:italic;
  489. width:500px;
  490. text-transform:lowercase;
  491. color:{color:text};
  492. letter-spacing:0px;
  493. line-height:120%;
  494. font-size:8px;
  495. text-align:right;
  496. padding:2px;
  497. -moz-transition-duration:0.5s;
  498. -webkit-transition-duration:0.5s;
  499. -o-transition-duration:0.5s;
  500. }
  501.  
  502. .tags a {
  503. color:{color:text};
  504. letter-spacing:0px;
  505. padding:1px;
  506. }
  507.  
  508. .tags a:hover {
  509. color:{color:hover};
  510. }
  511.  
  512. ul.chat, .chat ol, .chat li {
  513. list-style:none;
  514. margin:0px;
  515. padding:2px;
  516. }
  517.  
  518. .label {
  519. text-decoration:underline;
  520. font-weight:700;
  521. background-color:{color:infobg};
  522. margin-right:5px;
  523. }
  524.  
  525.  
  526. #s-m-t-tooltip {
  527. max-width:300px;
  528. padding:2px;
  529. margin:10px 0px 0px 10px;
  530. border:1px dashed #f1f1f1;
  531. background-color:#fff; /* change the background color */
  532. font-family:cambria; /* change the font */
  533. font-size:8px;/* change the font size */
  534. font-style:italic;
  535. letter-spacing:1px; /* change the letter spacing */
  536. text-transform:lowercase; /* can be uppercase, lowercase, none*/
  537. color:#9a9a9a; /* change the text color */
  538. z-index:999999999999999999999999999999999999;
  539. }
  540.  
  541. #num {
  542. font-family:georgia;
  543.  
  544.  
  545. {CustomCSS}
  546.  
  547. </style></head>
  548.  
  549.  
  550. <body>
  551. <div id="theme">
  552. <div id="topbar"></div>
  553. <div id="title">{Title}</div>
  554. <div class="links">
  555. {block:IfLinkA}
  556. <a title="{text:linkA}"href="{text:linkA url}">un</a>
  557. {/block:IfLinkA}
  558. {block:IfLinkB}
  559. <a title="{text:linkB}"href="{text:linkB url}">deux</a>
  560. {/block:IfLinkB}
  561. {block:IfLinkC}
  562. <a title="{text:linkC}"href="{text:linkC url}">trois</a>
  563. {/block:IfLinkC}
  564. {block:IfLinkD}
  565. <a title="{text:linkD}"href="{text:linkD url}">quatre</a>
  566. {/block:IfLinkD}
  567. {block:IfLinkE}
  568. <a title="{text:linkE}"href="{text:linkE url}">cinq</a>
  569. {/block:IfLinkE}
  570. {block:IfLinkF}
  571. <a title="{text:linkF}"href="{text:linkF url}">six</a>
  572. {/block:IfLinkF}
  573. <a title="waybacks themes"href="http://lightweststhemes.tumblr.com">©</a>
  574. </div>
  575. <div id="sidebar">
  576. <img src="{image:sidebar}">
  577. <div class="desc">
  578. {Description}
  579. </div>
  580. {block:Pagination}
  581. <div class="pagi">
  582. {block:PreviousPage}
  583. <a href="{PreviousPage}">back</a>
  584. {/block:PreviousPage}
  585. {block:NextPage}
  586. <a href="{NextPage}">next</a>
  587. {/block:NextPage}
  588. </div>
  589. {/block:Pagination}
  590. </div>
  591.  
  592. <div id="stuffcontainer">
  593.  
  594. {block:Posts}
  595. <div id="bite">
  596.  
  597. <div id="stuff">
  598.  
  599. {block:Text}{block:Title}<h2>{Title}</h2>{/block:Title}{Body}{/block:Text}
  600.  
  601. {block:Quote}<h2>“{Quote}”</h2><h1>{Source}</h1>{/block:Quote}
  602.  
  603. {block:Link}<a href="{URL}"><h2>{Name}</h2></a>
  604. {block:Description}<p>{Description}</p>{/block:Description}{/block:Link}
  605.  
  606. {block:Photo}<center><img src="{PhotoURL-500}"/></center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  607.  
  608. {block:Photoset}<center>{Photoset-500}</center>
  609. {block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  610.  
  611. {block:Chat}<ul class="chat">{block:Title}<h2>{Title}</h2>{/block:Title}{block:Lines}<li>{block:Label}<span class="label">{Label}</span>{/block:Label}&nbsp;{Line}</li>{/block:Lines}</ul>{/block:Chat}
  612.  
  613. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  614.  
  615. {block:Answer}<div class="ask"><div style="font-family:georgia; font-size:14px;font-style:italic;line-height:14px;letter-spacing:-1px;">"{Question}"</div></div><p>—{Asker}<div class="ans">{Answer}</div>{/block:answer}
  616.  
  617. {block:Audio}<div class="audio">{block:AlbumArt}<div class="albumart"><img src="{AlbumArtURL}"/></div>{/block:AlbumArt}
  618. <div class="audioinfo">{block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}{block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  619. {/block:ExternalAudio}<b>Played:</b> {PlayCount} times</div>
  620. <br><div class="playercontainer">{AudioPlayerWhite}</div></div>
  621. {block:Caption}{Caption}{/block:Caption}<br>{/block:Audio}
  622.  
  623.  
  624.  
  625. {block:Date}<div id="postinfo">posted <a href="{Permalink}">{TimeAgo}</a>{block:NoteCount} with <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}{block:RebloggedFrom} via <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}
  626. {block:ContentSource} ( ©<a href="{SourceURL}">{SourceLink}</a> ){/block:ContentSource}</div>{/block:Date}
  627. <div class="death">
  628. {block:HasTags}
  629. <div class="tags">
  630. {block:Tags}<a href="{TagURL}">#{Tag}</a>{/block:Tags}</div>
  631. {/block:HasTags}</div></div>
  632. <div class="note">
  633. {block:PostNotes}{PostNotes}{/block:PostNotes}
  634. </div>
  635. </div>
  636. {/block:Posts}
  637.  
  638. </div>
  639.  
  640. </div>
  641. </div>
  642. </div>
  643. </body>
  644. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement