Advertisement
redfez

Theme 08

Apr 26th, 2015
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.44 KB | None | 0 0
  1. <!--- PLEASE DO NOT TOUCH THE CREDIT UNLESS IT IS TO MOVE IT. DO NOT FULLY REMOVE IT THOUGH. --->
  2. <!--- THANK. --->
  3. <!--- THEME 08 --->
  4. <!--- BY EDVARDELRIC // RUNETHEMES --->
  5.  
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  7. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  8. <head><title>{Title}</title>
  9. <link rel="shortcut icon" href="{Favicon}">
  10. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  11. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  12.  
  13. <!---- base theme by enterprizer @ tumblr, for public use --->
  14.  
  15. <meta name="color:Text" content="#838282"/>
  16. <meta name="color:Link" content="#b8b8b8"/>
  17. <meta name="color:LinkHov" content="#b8b8b8"/>
  18. <meta name="color:Border" content="ededed"/>
  19. <meta name="color:Ask" content="#ffffff"/>
  20. <meta name="color:Scroller" content="#000000"/>
  21. <meta name="color:Link" content="#b8b8b8"/>
  22. <meta name="color:Background" content="#ffffff"/>
  23. <meta name="color:Sidebar" content="#ffffff"/>
  24.  
  25. <meta name="text:Home Link" content="index"/>
  26. <meta name="text:Ask Link" content ="message"/>
  27. <meta name="text:Ask Title" content ="mail"/>
  28. <meta name="text:Link1" content="link"/>
  29. <meta name="text:Link1 URL" content ="/"/>
  30. <meta name="text:Link2" content="link"/>
  31. <meta name="text:Link2 URL" content ="/"/>
  32. <meta name="text:Link3" content="link"/>
  33. <meta name="text:Link3 URL" content ="/"/>
  34.  
  35. <meta name="image:Background" content="https://38.media.tumblr.com/b5c5ab66d8331513696fe3ec992187a0/tumblr_n910t1XydC1tha9i5o1_400.png"/>
  36.  
  37. <meta name="if:SmallCursor" content=""/>
  38.  
  39. <script type="text/javascript"
  40. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  41.  
  42. <script>
  43. $(document).ready(function() {
  44. //
  45. //When you click on a link with class of poplight and the href starts with a #
  46. $('a.poplight[href^=#]').click(function() {
  47. var popID = $(this).attr('rel'); //Get Popup Name
  48. var popURL = $(this).attr('href'); //Get Popup href to define size
  49. //Pull Query & Variables from href URL
  50. var query= popURL.split('?');
  51. var dim= query[1].split('&');
  52. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  53. //Fade in the Popup and add close button
  54. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('');
  55. //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
  56. var popMargTop = ($('#' + popID).height() + 80) / 2;
  57. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  58. //Apply Margin to Popup
  59. $('#' + popID).css({
  60. 'margin-top' : -popMargTop,
  61. 'margin-left' : -popMargLeft
  62. });
  63. //Fade in Background
  64. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  65. $('#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
  66. return false;
  67. });
  68. //Close Popups and Fade Layer
  69. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  70. $('#fade , .popup_block').fadeOut(function() {
  71. $('#fade, a.close').remove(); //fade them both out
  72. });
  73. return false;
  74. });
  75. });
  76. </script>
  77.  
  78. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  79. <script>
  80. $(document).ready(function(){
  81.  
  82. $(".linki").hide();
  83. $(".show_hide1").show();
  84.  
  85. $('.show_hide1').toggle(function(){
  86. $(".linki").slideDown();
  87. },function(){
  88. $(".linki").slideUp();
  89. });
  90. });
  91. </script>
  92. <script src="http://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  93. <script>
  94. (function($){
  95. $(document).ready(function(){
  96. $("[title]").style_my_tooltips({
  97. tip_follows_cursor:true,
  98. tip_delay_time:100,
  99. tip_fade_speed:50
  100. }
  101. );
  102. });
  103. })(jQuery);
  104. </script>
  105.  
  106. <style type="text/css">
  107.  
  108. {block:IfSmallCursor}*, body, a, a:hover {cursor: url(http://media.tumblr.com/tumblr_mem9zjUXhw1rqv2lu.png), auto;}{/block:IfSmallCursor}
  109.  
  110. #s-m-t-tooltip {
  111. position: absolute;
  112. background-color:#000000;
  113. color:#ffffff;
  114. text-transform:lowercase;
  115. line-height:100%;
  116. letter-spacing:2px;
  117. font-family:Helvetica;
  118. max-width:250px;
  119. font-size:10px;
  120. margin:15px;
  121. padding:3px;
  122. z-index:999999999999999999999;
  123. -moz-transition-duration:0.5s;
  124. -webkit-transition-duration:0.5s;
  125. -o-transition-duration:0.5s;
  126. }
  127.  
  128. ::-webkit-scrollbar{
  129. background:{color:background};
  130. width:3px;
  131. }
  132.  
  133. ::-webkit-scrollbar-thumb{
  134. background:{color:Scroller};
  135. width:3px;
  136. height:auto;
  137. }
  138.  
  139. ::selection {
  140. color:#ffffff;
  141. background-color:{color:link};
  142. }
  143. body {
  144. background-color:{color:background};
  145. margin:0px;
  146. color:{color:text};
  147. font-family:Calibri;
  148. font-size:11px;
  149. line-height:100%;
  150. background-image:url('{Image:background}');
  151. background-attachment:fixed;
  152. }
  153.  
  154. a {
  155. text-decoration:none;
  156. outline:none;
  157. color:{color:link};
  158. -moz-outline-style:none;
  159. -moz-transition-duration:0.7s;
  160. -webkit-transition-duration:0.7s;
  161. -o-transition-duration:0.7s;
  162. }
  163.  
  164. a:hover {
  165. color:{color:linkhov};
  166. }
  167.  
  168. img {
  169. border:none;
  170. }
  171.  
  172. blockquote {
  173. padding-left:5px;
  174. border-left:2px solid;
  175. }
  176.  
  177. blockquote blockquote {
  178. padding-left:5px;
  179. border-left:2px solid;
  180. }
  181.  
  182. h1 {
  183. font-size:15px;
  184. }
  185.  
  186. #entries {
  187. padding:10px;
  188. width:400px;
  189. margin-left:125px;
  190. margin-top:50px;
  191. }
  192.  
  193. #post {
  194. width:400px;
  195. margin-bottom:50px;
  196. padding:20px;
  197. border:1px solid {color:border};
  198. background:{color:sidebar};
  199. }
  200.  
  201. #sidebar {
  202. width:250px;
  203. position:fixed;
  204. right:100px;
  205. bottom:100px;
  206. padding:15px;
  207. border:1px solid {color:border};
  208. background:{color:sidebar};
  209. }
  210.  
  211. #title {
  212. font-size:15px;
  213. text-align:center;
  214. margin-bottom:5px;
  215. text-transform:uppercase;
  216. font-family:helvetica;
  217. }
  218.  
  219. #description {
  220. padding:5px;
  221. font-size:10px;
  222. text-align:center;
  223. }
  224.  
  225. #navi {
  226. font-family:arial;
  227. font-size:9.5px;
  228. text-transform:lowercase;
  229. text-align:center;
  230. padding:5px;
  231. letter-spacing:2px;
  232. }
  233.  
  234. #pagination {
  235. font-size:10px;
  236. text-align:center;
  237. padding-top:5px;
  238. }
  239.  
  240. #info {
  241. border-top:1px solid {color:border};
  242. text-align:right;
  243. padding-left:5px;
  244. padding-right:5px;
  245. margin-top:10px;
  246. padding-top:10px;
  247. }
  248.  
  249. #tags {
  250. margin-top:10px;
  251. text-align:left;
  252. text-transform:lowercase;
  253. font-style:normal;
  254. }
  255.  
  256. #quest {
  257. background-color:{color:ask};
  258. text-align:left;
  259. padding:5px;
  260. }
  261.  
  262. /* don't touch this i stg*/
  263. #tumblr_controls {
  264. display:none;
  265. }
  266. /*alright you can mess with it again*/
  267.  
  268. .controllf {
  269. top:30px;
  270. right:40px;
  271. text-align:center;
  272. text-transform:uppercase;
  273. font-family:helvetica;
  274. font-size:10px;
  275. background-color:{color:sidebar};
  276. width:47px;
  277. position:fixed;
  278. }
  279.  
  280. .controlld {
  281. top:30px;
  282. right:110px;
  283. text-align:center;
  284. text-transform:uppercase;
  285. font-family:helvetica;
  286. font-size:10px;
  287. background-color:{color:sidebar};
  288. width:66px;
  289. position:fixed;
  290. }
  291.  
  292. #controll a {
  293. padding:5px;
  294. color:{color:link};
  295. background-color:{color:sidebar};
  296. }
  297.  
  298. #controll a:hover {
  299. padding:5px;
  300. color:{color:sidebar};
  301. background-color:{color:link};
  302. }
  303.  
  304. ol.notes {
  305. display:block;
  306. list-style-type:lower-roman;
  307. width:400px;
  308. padding:0px;
  309. }
  310.  
  311. ol.notes li.note{
  312. padding:10px;
  313. border-bottom:1px solid {color:border};
  314. }
  315.  
  316. .pagenotes {
  317. text-align:left;
  318. background:transparent;
  319. text-transform:lowercase;
  320. font-size:10px;
  321. }
  322.  
  323. ol.notes img{
  324. display:none;
  325. }
  326.  
  327. #fade {
  328. display: none;
  329. background-image:url('{Image:background}');
  330. position: fixed;
  331. left: 0;
  332. top: 0;
  333. width: 100%;
  334. height: 100%;
  335. opacity: 1
  336. z-index: 9999;
  337. }
  338.  
  339. .popup_block{
  340. display: none;
  341. background: #FFFFFF;
  342. padding: 20px;
  343. float: left;
  344. position: fixed;
  345. top: 50%;
  346. left: 50%;
  347. z-index: 99999;
  348. }
  349.  
  350. img.btn_close {
  351. float: right;
  352. margin: -55px -55px 0 0;
  353. }
  354.  
  355. *html #fade {
  356. position: absolute;
  357. }
  358.  
  359. *html .popup_block {
  360. position: absolute;
  361. }
  362.  
  363. .playerbuttonbg {
  364. position: absolute;
  365. left: 20px;
  366. top: 20px;
  367. width: 19px;
  368. height: 19px;
  369. background-color: #ffffff;
  370. padding: 10px;
  371. -webkit-border-radius: 40px;
  372. -moz-border-radius: 40px;
  373. border-radius: 40px;
  374. opacity: .4;
  375. filter: alpha(opacity=40);
  376. -moz-opacity: 0.4;
  377. -khtml-opacity: 0.4;
  378. transition: opacity .7s ease-in-out;
  379. -moz-transition: opacity .7s ease-in-out;
  380. -webkit-transition: opacity .7s ease-in-out;
  381. }
  382.  
  383. .playerbuttonbg:hover {
  384. opacity: 1;
  385. filter: alpha(opacity=100);
  386. -moz-opacity: 1;
  387. -khtml-opacity: 1;
  388. }
  389.  
  390. .newplayerbutton {
  391. position: relative;
  392. width: 19px;
  393. height: 19px;
  394. overflow: hidden;
  395. }
  396.  
  397. .playerbuttonhug {
  398. position: absolute;
  399. top: -35px;
  400. left: -15px;
  401. height: 10px;
  402. width: 10px;
  403. }
  404.  
  405. .tumblr_audio_player {
  406. height: 90px;
  407. width: 270px;
  408. -moz-transform: scale(0.60, 0.60);
  409. -webkit-transform: scale(0.60, 0.60);
  410. -o-transform: scale(0.60, 0.60);
  411. -ms-transform: scale(0.60, 0.60);
  412. transform: scale(0.60, 0.60);
  413. -moz-transform-origin: top left;
  414. -webkit-transform-origin: top left;
  415. -o-transform-origin: top left;
  416. -ms-transform-origin: top left;
  417. transform-origin: top left;
  418. }
  419.  
  420. .audioimgwrapper {
  421. position: absolute;
  422. left: 0px;
  423. top: 0px;
  424. -webkit-border-radius: 40px;
  425. -moz-border-radius: 40px;
  426. border-radius: 40px;
  427. overflow: hidden;
  428. width: 79px;
  429. height: 79px;
  430. }
  431.  
  432. .audioimgwrapper img {
  433. width: 100%;
  434. height: auto;
  435. -webkit-border-radius: 40px;
  436. -moz-border-radius: 40px;
  437. border-radius: 40px;
  438. }
  439.  
  440. .trackdetails {
  441. width: auto;
  442. display:inline-block;
  443. margin-left: 90px;
  444. min-height: 85px;
  445. }
  446.  
  447. .audiowrapper {
  448. position: relative;
  449. display:inline-block;
  450. }
  451.  
  452. #credit a {
  453. background-color:{color:background};
  454. color:{color:scroller};
  455. font-size:10px;
  456. font-family:georgia;
  457. padding:5px;
  458. padding-right:6px;
  459. left:20px;
  460. bottom:20px;
  461. position:fixed;
  462. text-align:center;
  463. border:1px solid {color:scroller};
  464. }
  465.  
  466. #credit a:hover {
  467. background-color:{color:scroller};
  468. color:{color:background};
  469. }
  470.  
  471. {CustomCSS}</style></head><body>
  472.  
  473. <div id="controll">
  474. <div class="controllf"><a href="https://www.tumblr.com/follow/{Name}">follow</a></div>
  475. <div class="controlld"><a href="https://www.tumblr.com/dashboard">dashboard</a></div>
  476. </div>
  477.  
  478. <div id="popup_name" class="popup_block">
  479. <div class="main">
  480. <big><big><center>{text:Ask Title}</center></big></big><br><br>
  481. <iframe frameborder="0" height="190" id="ask_form" scrolling="no" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%" style="background-color: transparent; overflow: hidden;"></iframe>
  482. </div>
  483. </div>
  484.  
  485. <div id="sidebar">
  486.  
  487. <div id="title">{Title};</div>
  488.  
  489. <div id="description">{Description}</div>
  490.  
  491. <div id="navi">
  492. <a href="/">{text:home link}</a>
  493. . <a href="#?w=350" rel="popup_name" class="poplight">{text:ask link}</a>
  494. {block:IfLink1} . <a href="{text:link1 url}">{text:link1}</a>{/block:IfLink1}
  495. {block:IfLink2} . <a href="{text:link2 url}">{text:link2}</a>{/block:IfLink2}
  496. {block:IfLink3} . <a href="{text:link3 url}">{text:link3}</a>{/block:IfLink3}
  497. </div>
  498.  
  499. {block:Pagination}<div id="pagination">
  500. {block:PreviousPage}<a href="{PreviousPage}">prev</a>{/block:PreviousPage} /
  501. {block:NextPage}<a href="{NextPage}">next</a>{/block:NextPage}
  502. </div>{/block:Pagination}
  503.  
  504. </div>
  505.  
  506. <div id="entries">{block:Posts}<div id="post">
  507.  
  508. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  509.  
  510. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  511.  
  512. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  513.  
  514. {block:Quote}<big><big>{Quote}</big></big>{block:Source}<br><div style="text-align:right"><br><big>{Source}</big></div>{/block:Source}{/block:Quote}
  515.  
  516. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  517.  
  518. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  519.  
  520. {block:AudioPlayer}
  521. <div class="audiowrapper">
  522. {block:AlbumArt}
  523. <div class="audioimgwrapper"><img src="{AlbumArtURL}"></div>
  524. {/block:AlbumArt}
  525.  
  526. <div class="playerbuttonbg">
  527. <div class="newplayerbutton">
  528. <div class="playerbuttonhug">
  529.  
  530. {AudioPlayerWhite}
  531.  
  532. </div>
  533. </div>
  534. </div>
  535.  
  536. <div class="trackdetails">
  537.  
  538. {block:TrackName}<big>{TrackName}</big>{/block:TrackName}<br/>
  539. {block:Artist}<b>Artist</b>: {Artist}{/block:Artist}<br/>
  540. {block:Album}<b>Album</b>: {Album}{/block:Album}<br/>
  541.  
  542. </div>
  543. </div>{Caption}
  544. {/block:AudioPlayer}
  545.  
  546. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  547.  
  548. {block:Answer}<div id="quest"><i>{Asker}</i>: {Question}</div>{Answer}{/block:Answer}
  549.  
  550. <div id="info">
  551. {block:Date}{TimeAgo}&nbsp;with&nbsp;<a href="{Permalink}">{NoteCount} notes</a>{/block:Date}{block:RebloggedFrom}<br><a href="{ReblogParentURL}" title="{ReblogParentTitle}">via</a>{block:ContentSource}&nbsp;//&nbsp;<a href="{SourceURL}"title="{ReblogRootTitle}">source</a>{/block:ContentSource}{/block:RebloggedFrom}{block:PermalinkPage}{block:Date}<br>+<a href="{ReblogURL}" target="_blank">reblog</a>{/block:Date}{/block:PermalinkPage}<br></div><div id="tags">{block:HasTags}{block:Tags}<a href="{TagURL}">{Tag}</a>,&nbsp;&nbsp;{/block:Tags}{/block:HasTags}</div>
  552.  
  553. </div>
  554. {block:PostNotes}{PostNotes}{/block:PostNotes}
  555. {/block:Posts}</div>
  556.  
  557. <div id="credit"><a href="http://royed.tk/" title="credit">BN</a></div>
  558.  
  559. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement