Advertisement
ewzayns

Rapunzel

Jun 7th, 2015
437
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.79 KB | None | 0 0
  1. <html>
  2.  
  3. <!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN"
  4. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6.  
  7.  
  8.  
  9. <!--Rapunzel theme by tvmblrharry--->
  10.  
  11.  
  12.  
  13.  
  14. <head>
  15.  
  16. <script type="text/javascript"
  17. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  18. <script>
  19. $(document).ready(function() {
  20. //
  21. $('a.poplight[href^=#]').click(function() {
  22. var popID = $(this).attr('rel');
  23. var popURL = $(this).attr('href');
  24. var query= popURL.split('?');
  25. var dim= query[1].split('&');
  26. var popWidth = dim[0].split('=')[1];
  27. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  28. var popMargTop = ($('#' + popID).height() + 80) / 2;
  29. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  30. $('#' + popID).css({
  31. 'margin-top' : -popMargTop,
  32. 'margin-left' : -popMargLeft
  33. });
  34. $('body').append('<div id="fade"></div>');
  35. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn();
  36. return false;
  37. });
  38. $('a.close, #fade').live('click', function() {
  39. $('#fade , .popup_block').fadeOut(function() {
  40. $('#fade, a.close').remove();
  41. });
  42. return false;
  43. });
  44. });
  45. </script>
  46.  
  47. <title>{Title}</title>
  48. {block:description}<meta name="description" content="{MetaDescription}"/>{/block:description}
  49. <link rel="shortcut icon" href="{Favicon}"/>
  50. <link rel="alternate" type="application/rss+xml" href="{RSS}"/>
  51.  
  52. <!--color metas-->
  53. <meta name="color:text" content="#B8B8B8 "/>
  54. <meta name="color:link" content="#a0a0a0"/>
  55. <meta name="color:hover" content="#F0F0F0 "/>
  56. <meta name="color:background" content="#ffffff"/>
  57. <meta name="color:caption background" content="#f0f0f0"/>
  58. <meta name="color:caption border" content="#c8c8c8"/>
  59. <meta name="color:scrollbar" content="#c8c8c8"/>
  60.  
  61. <!--image metas-->
  62. <meta name="image:sidebar" content=""/>
  63. <meta name="image:background" content=""/>
  64.  
  65. <meta name="text:sidebar title" content="here ya go"/>
  66. <meta name="text:URL" content="URL here"/>
  67.  
  68. <!--link metas-->
  69. <meta name="text:link 1" content="link"/>
  70. <meta name="text:link 1 url" content="/"/>
  71. <meta name="text:link 2" content="link"/>
  72. <meta name="text:link 2 url" content="/"/>
  73. <meta name="text:link 3" content="link"/>
  74. <meta name="text:link 3 url" content="/"/>
  75.  
  76. <meta name="if:sidebar image" content=""/>
  77. <meta name="if:tiny cursor" content=""/>
  78.  
  79. <style type="text/css">
  80.  
  81. ::-webkit-scrollbar{height: 5px;
  82. width: 3px;
  83. -webkit-border-radius: 0px;
  84. background-color:inherit}
  85. ::-webkit-scrollbar-thumb{background-color:{color:scrollbar};}
  86. ::-webkit-scrollbar-track{background-color:{color:background};}
  87.  
  88. /*--body--*/
  89. body {
  90. background: {color:Background} url({image:background})top left fixed repeat;
  91. background-size: cover;
  92. font-family:sans-serif;
  93. word-wrap:break-word;
  94. letter-spacing:1px;
  95. color:{color:text};
  96. font-size:11px;
  97. {block:iftinycursor}cursor:url(http://i.imgur.com/ZOrzC.png), auto{/block:iftinycursor}
  98. }
  99.  
  100. blockquote, ol, ul, p, pre {
  101. margin-top:.4em;
  102. margin-bottom:.4em;
  103. }
  104.  
  105. blockquote {
  106. border-left: 3px solid;
  107. margin-left: 3%;
  108. padding:3px;
  109. }
  110.  
  111. pre {
  112. white-space:normal;
  113. font-family:sans-serif;
  114. letter-spacing:0px;
  115. }
  116. img {
  117. border:0px;
  118. }
  119.  
  120. ol, ul {
  121. list-style-image: url('http://static.tumblr.com/0f73705c8fa32043ffd00942aed97b89/l1x8tig/6lemt8e6c/tumblr_static_tinyflower.gif');
  122. padding-left:8px;
  123. list-style-position:inside;
  124. }
  125. strong, b {
  126. font-weight:bold;
  127. color:#383838;
  128. }
  129. small, sub {
  130. font-size:1em;
  131. vertical-align:baseline;
  132. }
  133. h1, h2, h3, h4, h5, h6 {
  134. font-size:1em;
  135. font-weight:normal;
  136. }
  137.  
  138.  
  139. a {
  140. color:{color:link};
  141. text-decoration:none;
  142. -moz-transition-duration:0.7s;
  143. -o-transition-duration:0.7s;
  144. -webkit-transition-duration:0.7s;
  145. }
  146.  
  147. a:hover {
  148. color:{color:hover};
  149. text-decoration:none;
  150. cursor:help;
  151. -moz-transition-duration:0.7s;
  152. -o-transition-duration:0.7s;
  153. -webkit-transition-duration:0.7s;
  154. }
  155.  
  156. h1 {
  157. font-size:14px;
  158. font-family:sans-serif;
  159. letter-spacing:1px;
  160. text-align:center;
  161. }
  162.  
  163. #sidebar {
  164. width:200px;
  165. height:200px;
  166. margin-left:100px;
  167. margin-top:125px;
  168. position:fixed;
  169. }
  170.  
  171. #sidebarimage {
  172. position:relative;
  173. margin-left:16px;
  174. width:200px;
  175. height:100px;
  176. padding:5px;
  177. }
  178.  
  179. #sidebarimage img {
  180. width:200px;
  181. height:110px;
  182. margin-top:-8px;
  183. }
  184.  
  185. #title {
  186. font:10px sans-serif;
  187. width:200px;
  188. margin-left:21px;
  189. margin-top:5px;
  190. text-transform:uppercase;
  191. letter-spacing:3px;
  192. font-weight:bold;
  193. text-align:left;
  194. color:{color:link};
  195. }
  196.  
  197. #description {
  198. width:200px;
  199. margin-left:11px;
  200. position:relative;
  201. text-align:left;
  202. padding:10px;
  203. font-size:9px;
  204. }
  205.  
  206. #links {
  207. width:210px;
  208. margin-left:16px;
  209. margin-top:10px;
  210. text-transform:lowercase;
  211. font-size:10px;
  212. padding:5px;
  213. text-align:left;
  214. }
  215.  
  216. #navi {
  217. font-size:10px;
  218. text-transform:lowercase;
  219. margin-top:-10px;
  220. margin-bottom:4px;
  221. text-align:center;
  222. color:{color:link};
  223. width:210px;
  224. padding:5px;
  225. }
  226.  
  227. /*--posts--*/
  228. #entries {
  229. padding:20px;
  230. width:400px;
  231. margin-left:500px;
  232. margin-top:40px;
  233. }
  234.  
  235. #post {
  236. padding:15px;
  237. width:400px;
  238. padding-bottom:75px;
  239. padding:10px;
  240. margin-bottom:25px;
  241. }
  242.  
  243. #info{
  244. padding-top:5px;
  245. display:block;
  246. padding-bottom:5px;
  247. width:auto;
  248. text-align:left;
  249. font-size:10px;
  250. font-family:sans-serif;
  251. letter-spacing:1px;
  252. text-transform:lowercase;
  253. }
  254.  
  255. .caption,
  256. .cont {
  257. font-size:9px;
  258. padding:10px;
  259. margin-top:10px;
  260. background-color:{color:caption background};
  261. border:1px solid {color:caption border};
  262. }
  263. .caption a,
  264. {
  265. font-style:italic;
  266. color:{color:link};
  267. border-bottom:1px solid transparent;
  268. }
  269. .caption a:hover,
  270. {
  271. color:{color:link hover};
  272. border-color:{color:link hover};
  273. }
  274. .caption *:first-child,
  275. {
  276. margin-top:0px;
  277. }
  278. .caption *:last-child,
  279. margin-bottom:0px;
  280. }
  281. .caption {
  282. display:none;
  283. }
  284. .caption .caption {
  285. border:0;
  286. margin:0;
  287. padding:0;
  288. }
  289.  
  290. .newplayerbutton {
  291. position: relative;
  292. width: 28px;
  293. height: 27px;
  294. overflow: hidden;
  295. background-color: #ccc;
  296. }
  297.  
  298. .playerbuttonhug {
  299. position: absolute;
  300. top: -11px;
  301. left: -12px;
  302. }
  303.  
  304.  
  305. .tumblr_audio_player {
  306. border: none;
  307. padding: 0px;
  308. margin: 0px;
  309. height: 50px;
  310. width: 500px;
  311. background-color: #ccc;
  312. }
  313.  
  314. .playerbuttonbg {
  315. position: absolute;
  316. left: 15px;
  317. top: 15px;
  318. width: 28px;
  319. height: 28px;
  320. background-color: white;
  321. padding: 10px;
  322. -webkit-border-radius: 40px;
  323. -moz-border-radius: 40px;
  324. border-radius: 40px;
  325. opacity: .4;
  326. filter: alpha(opacity=40);
  327. -moz-opacity: 0.4;
  328. -khtml-opacity: 0.4;
  329. transition: opacity .7s ease-in-out;
  330. -moz-transition: opacity .7s ease-in-out;
  331. -webkit-transition: opacity .7s ease-in-out;
  332. }
  333.  
  334. .playerbuttonbg:hover {
  335. opacity: 1;
  336. filter: alpha(opacity=100);
  337. -moz-opacity: 1;
  338. -khtml-opacity: 1;
  339. }
  340.  
  341. .audioimgwrapper {
  342. position: absolute;
  343. left: 0px;
  344. top: 0px;
  345. -webkit-border-radius: 50px;
  346. -moz-border-radius: 50px;
  347. border-radius: 50px;
  348. overflow: hidden;
  349. width: 75px;
  350. height: 75px;
  351. }
  352.  
  353. .audioimgwrapper img {
  354. width: 100%;
  355. height: auto;
  356. -webkit-border-radius: 50px;
  357. -moz-border-radius: 50px;
  358. border-radius: 50px;
  359. }
  360.  
  361. .trackdetails {
  362. width: auto;
  363. display:inline-block;
  364. margin-left: 100px;
  365. min-height: 85px;
  366. }
  367.  
  368. .audiowrapper {
  369. position: relative;
  370. display:inline-block;
  371. }
  372.  
  373. .chat ol {
  374. padding:0;
  375. line-height:180%;
  376. list-style:none;
  377. }
  378.  
  379. .line.odd {
  380. background-color:transparent;
  381. border-radius:2px;
  382. padding:5px;
  383. }
  384.  
  385. .line.even {
  386. background-color:transparent;
  387. padding:5px;
  388. }
  389.  
  390. .label {font-weight:bold;
  391. padding-right:1px;
  392. letter-spacing:1px;
  393. text-transform:lowercase;
  394. color:{color:link};
  395. }
  396.  
  397. .quote {
  398. margin:0;
  399. padding:10px;
  400. font:italic 1.3em/1.4em sans-serif;
  401. text-align:center;
  402. color:{color:text};
  403. }
  404.  
  405. #ask {
  406. margin-top:-55px;
  407. margin-left:80px;
  408. }
  409.  
  410. #askimg {
  411. }
  412.  
  413. #askimg img {
  414. height:64px;
  415. width:64px;
  416. border-radius:50%;
  417. }
  418.  
  419. #ask2 {
  420. margin-top:50px;
  421. }
  422.  
  423. #s-m-t-tooltip{
  424. max-width:300px;
  425. margin:15px;
  426. padding:2px 8px;
  427. border:1px solid #DDD;
  428. border-radius:4px;
  429. background:#FFF;
  430. color:#AAA;
  431. z-index:999999;
  432. font-size:8px;
  433. font-style:italic;
  434. text-transform:lowercase;
  435. box-shadow:1px 1px 3px rgba(0,0,0,.1);}
  436.  
  437. #ewzayns{
  438. position:fixed;
  439. font-family:arial;
  440. font-size:18px;
  441. line-height:50%;
  442. right:10px;
  443. bottom:15px;
  444. text-transform:uppercase;
  445. }
  446.  
  447. #ewzayns a {
  448. color:{color:link};
  449. }
  450.  
  451. #fade {
  452. display: none;
  453. position: fixed;
  454. left: 0;
  455. top: 0;
  456. width: 100%;
  457. height: 100%;
  458. z-index: 9999;
  459. background:#000;
  460. opacity: .5;
  461. }
  462.  
  463. .popup_block{
  464. display: none;
  465. background:transparent;
  466. padding: 20px;
  467. float: left;
  468. position: fixed;
  469. top: 50%;
  470. left: 50%;
  471. z-index: 99999;
  472. font-family:sans-serif;
  473. font-size:11px;
  474. color:{color:text};
  475. }
  476.  
  477. .popup_block a {
  478. color:#eee;
  479. }
  480.  
  481. *html #fade {
  482. position: absolute;
  483. }
  484.  
  485. *html .popup_block {
  486. position: absolute;
  487. }
  488.  
  489. .showhide_element {
  490. display: none;
  491. }
  492.  
  493. .popup_block{
  494. display:none;
  495. background:#fff;
  496. padding:20px;
  497. border:1px solid #eee;
  498. float:left;
  499. position:fixed;
  500. top:50%;left:50%;
  501. z-index: 99999;
  502. -webkit-box-shadow: 0px 0px 20px #000;
  503. -moz-box-shadow: 0px 0px 20px #000;
  504. box-shadow: 0px 0px 20px #000;
  505. }
  506.  
  507. *html #fade {position: absolute;}
  508. *html .popup_block {position: absolute;}
  509. #fade {
  510. display:none;
  511. position:fixed;
  512. left:0px;
  513. top:0px;
  514. width:100%;
  515. height:100%;
  516. z-index:9999;
  517. background:#000;
  518. opacity:0.5;
  519. }
  520.  
  521. </style>
  522.  
  523. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  524.  
  525. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  526.  
  527. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  528.  
  529. <script>
  530.  
  531. (function($){
  532.  
  533. $(document).ready(function(){
  534.  
  535. $("a[title]").style_my_tooltips({
  536.  
  537. tip_follows_cursor:true,
  538.  
  539. tip_delay_time:90,
  540.  
  541. tip_fade_speed:600,
  542.  
  543. attribute:"title"
  544.  
  545. });
  546.  
  547. });
  548.  
  549. })(jQuery);
  550.  
  551. </script>
  552.  
  553. <style>
  554. .tooltip{
  555. display: inline;
  556. position: relative;
  557. }
  558. #s-m-t-tooltip{
  559. font-size:9px;
  560. position:absolute;
  561. margin-top: 15px;
  562. letter-spacing:1px;
  563. z-index:9999;
  564. background:rgba(255,255,255,1);
  565. border-radius:2px;
  566. color:black;
  567. padding:2px 3px 2px 3px;
  568. -webkit-transition:all 0.3s;
  569. -moz-transition:all 0.3s;
  570. -ms-transition:all 0.3s;
  571. -o-transition:all 0.3s;
  572. transition:all 0.3s;
  573. }
  574.  
  575. </style>
  576.  
  577. </head>
  578.  
  579. <body>
  580.  
  581.  
  582. <div id="sidebar">
  583. {block:ifsidebarimage}<div id="sidebarimage"><a href="/" title="home"><img src="{image:sidebar}"></a></div>{/block:ifsidebarimage}
  584. <div id="title"><a href="/">{text:sidebar title}</a></div>
  585. <div id="links">
  586. <a href="/">home</a> <img src="http://static.tumblr.com/0f73705c8fa32043ffd00942aed97b89/l1x8tig/6lemt8e6c/tumblr_static_tinyflower.gif">
  587. <a href="#?w=300" rel="box1" class="poplight">mail</a> <img src="http://static.tumblr.com/0f73705c8fa32043ffd00942aed97b89/l1x8tig/6lemt8e6c/tumblr_static_tinyflower.gif">
  588. <a href="{text:link 1 url}">{text:link 1}</a> <img src="http://static.tumblr.com/0f73705c8fa32043ffd00942aed97b89/l1x8tig/6lemt8e6c/tumblr_static_tinyflower.gif">
  589. <a href="{text:link 2 url}">{text:link 2}</a> <img src="http://static.tumblr.com/0f73705c8fa32043ffd00942aed97b89/l1x8tig/6lemt8e6c/tumblr_static_tinyflower.gif">
  590. <a href="{text:link 3 url}">{text:link 3}</a>
  591. </div>
  592. <div id="description">{Description}</div>
  593. <div id="navi">
  594. {block:Pagination}
  595. {block:PreviousPage}<a href="{PreviousPage}"><b><big>– </big></b></a>{/block:PreviousPage}{block:NextPage}<a href="{NextPage}"><b><big>+</big></b></a>
  596. {/block:NextPage}
  597. {/block:Pagination}
  598. </div>
  599. </div>
  600.  
  601. <div id="entries">{block:Posts}
  602. <div id="post">
  603.  
  604.  
  605. {block:Text}<h1>{block:Title}<big><big>{Title}</big></big>{/block:Title}</h1>{Body}{/block:Text}
  606.  
  607.  
  608. {block:Photo}{LinkOpenTag}<center><img src="{PhotoURL-400}"></center>{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  609. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  610.  
  611.  
  612. {block:Quote}<!-- quote --><div class="quote">"{Quote}"</div>{block:Source}<div class="caption"><b>~</b> {Source}</div>{/block:Source}{/block:Quote}
  613.  
  614.  
  615. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  616.  
  617.  
  618. {block:Chat}
  619. {block:Title}
  620. <h1>{Title}</h1>
  621. {/block:Title}
  622. <div class="chat">
  623. <ol>{block:Lines}
  624. <li class="line {Alt}">
  625. {block:Label}
  626. <span class="label">
  627. {Label}</span>
  628. {/block:Label}{Line}</li>
  629. {/block:Lines}
  630. </ol></div>
  631. {/block:Chat}
  632.  
  633.  
  634. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  635.  
  636.  
  637. {block:Answer}
  638. <div id="askimg"><a href="{AskerURL}"><img src="{AskerPortraitURL-64}"></a></div>
  639. <div id="ask">
  640. <div style="font-size:14px; font-weight:lighter; font-style:italic;">{Asker}</div>
  641. {Question}
  642. </div>
  643. <div id="ask2">
  644. {Answer}</div>{/block:Answer}
  645.  
  646.  
  647. {block:AudioPlayer}
  648. <div class="audiowrapper">
  649. {block:AlbumArt}
  650. <div class="audioimgwrapper"><img src="{AlbumArtURL}"></div>
  651. {/block:AlbumArt}
  652.  
  653. <div class="playerbuttonbg">
  654. <div class="newplayerbutton">
  655. <div class="playerbuttonhug">
  656.  
  657. {AudioPlayerWhite}
  658.  
  659. </div>
  660. </div>
  661. </div>
  662.  
  663. <div class="trackdetails">
  664.  
  665. {block:TrackName}{TrackName}{/block:TrackName}<br/>
  666. {block:Artist}Artist: {Artist}{/block:Artist}<br/>
  667. {block:Album}Album: {Album}{/block:Album}<br/>
  668. {PlayCountWithLabel}
  669.  
  670. </div>
  671. </div>
  672. {/block:AudioPlayer}
  673.  
  674.  
  675. <center><div id="info">{block:Date}<a href="{Permalink}"> <a href="{ReblogURL}" target="_blank" class="details"> +Reblog</a><a href="{ReblogParentURL}"> {TimeAgo}</a>{/block:Date}{block:NoteCount} <i>with</i> <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}{block:RebloggedFrom}<br><i>reblogged from</i> <a href="{ReblogParentURL}">{ReblogParentName}</a> – {/block:RebloggedFrom}{block:ContentSource} <i>originally from</i> <a href="{SourceURL}">{SourceLink}</a>{/block:ContentSource}<p>
  676.  
  677. {block:HasTags}<u>filed under:</u>{block:Tags} <img src="http://static.tumblr.com/0f73705c8fa32043ffd00942aed97b89/l1x8tig/6lemt8e6c/tumblr_static_tinyflower.gif"> <a href="{TagURL}">{Tag} </a> {/block:Tags}{/block:HasTags}</center>
  678. <br /></div>
  679.  
  680.  
  681.  
  682. {block:PermalinkPage}
  683. {/block:PermalinkPage}
  684. <div id="pagenotes">
  685. {block:NoteCount}<div class="t"></div>{/block:NoteCount}
  686. {PostNotes}
  687. </ol>
  688.  
  689.  
  690.  
  691. </div>
  692. {/block:PostNotes}
  693. {/block:Posts}
  694.  
  695. </div></div></div></div>
  696. </div>
  697.  
  698. </div>
  699.  
  700. </div>
  701.  
  702. <script type="text/javascript">
  703. function blockquote_colors(){
  704. var colors = ["#e45c5c", "#ffcc66", "#d7e972", "#76e2c2", "#5dc6cd", "#be7ce4", "#e45c5c", "#ffcc66", "#d7e972"];
  705. $('body').find('blockquote').each( function (i) {
  706. $(this).css("border-left-color", colors[i % colors.length]);
  707. });
  708. }
  709.  
  710. blockquote_colors();
  711.  
  712. $( document ).ajaxComplete(function() {
  713. blockquote_colors();
  714. });
  715.  
  716. </script>
  717.  
  718.  
  719.  
  720. </body>
  721.  
  722. <div id="box1" class="popup_block">
  723. <!--write your FAQ here! or leave it blank if you don't want one!-->
  724. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{text:URL}.tumblr.com" width="100%"></iframe>
  725. </div>
  726.  
  727. </div></div></div></div></div></div></div></div></div></div>
  728.  
  729. <!--PLEASE DON'T REMOVE THIS-->
  730. <div id="ewzayns">
  731. <a title="tvmblrharry"href="http://tvmblrharry.tumblr.com/">♚</a>
  732. </div>
  733.  
  734. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement