radiantvictor

sakura !

Mar 22nd, 2016
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.19 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3.  
  4. <!-- Theme 24; the dark side by ~winchestheart.
  5. // http://winchestheart.tumblr.com © //
  6.  
  7. This work is licensed under a Creative Commons Attribution-NonCommercial 3.0 Unported License.
  8. > http://creativecommons.org/licenses/by-nc/3.0/
  9.  
  10. Read the rules before using any of my themes:
  11. > http://winchestheart.tumblr.com/rules
  12.  
  13. Do not remove the credit or use as your own work.
  14. Thank you.
  15.  
  16. -->
  17.  
  18.  
  19. <html><head>
  20. <script type="text/javascript">
  21. // <![CDATA[
  22. var colour="#a65866"; // what colour are the blobs
  23. var speed=40; // speed of animation, lower is faster
  24. var blobs=6; // how many blobs are in the jar
  25. var charc=String.fromCharCode(9679); // a blob - can be changed to charc='hello' or charc='*' for a different effect
  26.  
  27. /***************************\
  28. * Blobs in a Jar Effect *
  29. *(c)2012-13 mf2fm web-design*
  30. * http://www.mf2fm.com/rv *
  31. * DON'T EDIT BELOW THIS BOX *
  32. \***************************/
  33.  
  34. var div;
  35. var xpos=new Array();
  36. var ypos=new Array();
  37. var zpos=new Array();
  38. var dx=new Array();
  39. var dy=new Array();
  40. var dz=new Array();
  41. var blob=new Array();
  42. var swide=800;
  43. var shigh=600;
  44. var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
  45.  
  46. function addLoadEvent(funky) {
  47. var oldonload=window.onload;
  48. if (typeof(oldonload)!='function') window.onload=funky;
  49. else window.onload=function() {
  50. if (oldonload) oldonload();
  51. funky();
  52. }
  53. }
  54.  
  55. addLoadEvent(fill_the_jar);
  56.  
  57. function fill_the_jar() {
  58. var i, dvs;
  59. div=document.createElement('div');
  60. dvs=div.style;
  61. dvs.position='fixed';
  62. dvs.left='0px';
  63. dvs.top='0px';
  64. dvs.width='1px';
  65. dvs.height='1px';
  66. document.body.appendChild(div);
  67. set_width();
  68. for (i=0; i<blobs; i++) {
  69. add_blob(i);
  70. jamjar(i);
  71. }
  72. }
  73.  
  74. function add_blob(ref) {
  75. var dv, sy;
  76. dv=document.createElement('div');
  77. sy=dv.style;
  78. sy.position='absolute';
  79. sy.textAlign='center';
  80. if (ie_version && ie_version<10) {
  81. sy.fontSize="30px";
  82. sy.width="100px";
  83. sy.height="100px";
  84. sy.paddingTop="45px";
  85. sy.color=colour;
  86. dv.appendChild(document.createTextNode(charc));
  87. }
  88. else if (ie_version) {
  89. sy.fontSize="1px";
  90. sy.width="0px";
  91. sy.height="0px";
  92. }
  93. else {
  94. dv.appendChild(document.createTextNode(charc));
  95. sy.color='rgba(0,0,0,0)';
  96. }
  97. ypos[ref]=Math.floor(shigh*Math.random());
  98. dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  99. xpos[ref]=Math.floor(swide*Math.random());
  100. dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  101. zpos[ref]=Math.random()*20;
  102. dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
  103. blob[ref]=dv;
  104. div.appendChild(blob[ref]);
  105. set_blob(ref);
  106. }
  107.  
  108. function rejig(ref, xy) {
  109. if (xy=='y') {
  110. dx[ref]=(0.5+Math.random())*sign(dx[ref]);
  111. dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
  112. }
  113. else {
  114. dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
  115. dy[ref]=(0.5+Math.random())*sign(dy[ref]);
  116. }
  117. }
  118.  
  119. function sign(a) {
  120. if (a<0) return (-2);
  121. else if (a>0) return (2);
  122. else return (0);
  123. }
  124.  
  125. function set_blob(ref) {
  126. var sy;
  127. sy=blob[ref].style;
  128. sy.top=ypos[ref]+'px';
  129. sy.left=xpos[ref]+'px';
  130. if (ie_version && ie_version<10) {
  131. sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
  132. sy.fontSize=30-zpos[ref]+"px";
  133. }
  134. else if (ie_version) {
  135. sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
  136. }
  137. else {
  138. sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
  139. sy.fontSize=40+zpos[ref]+'px';
  140. }
  141. }
  142.  
  143. function jamjar(ref) {
  144. if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
  145. ypos[ref]+=dy[ref];
  146. if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
  147. xpos[ref]+=dx[ref];
  148. if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
  149. zpos[ref]+=dz[ref];
  150. set_blob(ref);
  151. setTimeout("jamjar("+ref+")", speed);
  152. }
  153.  
  154. window.onresize=set_width;
  155. function set_width() {
  156. var sw_min=999999;
  157. var sh_min=999999;
  158. if (document.documentElement && document.documentElement.clientWidth) {
  159. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  160. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  161. }
  162. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  163. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  164. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  165. }
  166. if (document.body.clientWidth) {
  167. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  168. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  169. }
  170. if (sw_min==999999 || sh_min==999999) {
  171. sw_min=800;
  172. sh_min=600;
  173. }
  174. swide=sw_min;
  175. shigh=sh_min;
  176. }
  177. // ]]>
  178. </script>
  179. <!--coded by wonderfullythemes for Updates Tab #4
  180. please don't remove this credit thank you -->
  181. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  182. <script>
  183. $(document).ready(function(){
  184. $(".convo").click(function(){
  185. $(".content").slideToggle('slow');
  186. });
  187. });
  188. </script>
  189. <script type="text/javascript"
  190. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  191. <script>
  192. $(document).ready(function() {
  193. //
  194. $('a.poplight[href^=#]').click(function() {
  195. var popID = $(this).attr('rel'); //Get Popup Name
  196. var popURL = $(this).attr('href'); //Get Popup href to define size
  197. var query= popURL.split('?');
  198. var dim= query[1].split('&');
  199. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  200. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://upload.wikimedia.org/wikipedia/commons/f/f8/Tooltip-CloseButton.png" class="btn_close" title="escape" alt="escape" /></a>');
  201. var popMargTop = ($('#' + popID).height() + 80) / 2;
  202. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  203. //Apply Margin to Popup
  204. $('#' + popID).css({
  205. 'margin-top' : -popMargTop,
  206. 'margin-left' : -popMargLeft
  207. });
  208. $('body').append('<div id="fade"></div>');
  209. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  210. return false;
  211. });
  212. $('a.close, #fade').live('click', function() {
  213. $('#fade , .popup_block').fadeOut(function() {
  214. $('#fade, a.close').remove(); //fade them both out
  215. });
  216. return false;
  217. });
  218. });
  219. </script>
  220. <style>*, body{ cursor:url("http://31.media.tumblr.com/tumblr_lqs4idHqTZ1qfoi4t.png"), auto; }
  221. a, a:hover { cursor:url("http://31.media.tumblr.com/tumblr_m2umdbsfpJ1qfamg6.gif"), auto; }
  222. </style>
  223. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  224.  
  225. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  226.  
  227. <script>
  228.  
  229. (function($){
  230.  
  231. $(document).ready(function(){
  232.  
  233. $("a[title]").style_my_tooltips({
  234.  
  235. tip_follows_cursor:true,
  236.  
  237. tip_delay_time:50,
  238.  
  239. tip_fade_speed:600,
  240.  
  241. attribute:"title"
  242.  
  243. });
  244.  
  245. });
  246.  
  247. })(jQuery);
  248.  
  249. </script>
  250. <!--basic tooltip from tutorial-baby! Enjoy-->
  251. <style>
  252.  
  253. .tooltip{
  254. display: inline;
  255. position: relative;
  256. }
  257. #s-m-t-tooltip {
  258. max-width:300px; /*how big the tooltip can be at most*/
  259. border-radius: 0px; /*change your border radius*/
  260. padding:3px 4px 3px 3px; /*padding inside tooltip*/
  261. margin:20px 7px -2px 20px; /*distance from word*/
  262. background-color:#fff7db; /*background color*/
  263. border-top:2px solid #b06b79; /*border info*/
  264. border-bottom:2px solid #b06b79; /*border info*/
  265. font-family:"determination"; /*tooltip font*/
  266. font-size:16px; /*tooltip font size*/
  267. letter-spacing:2px; /*tooltip letter spacing*/
  268. text-transform:uppercase; /*makes the tooltip title uppercase*/
  269. color:#b06b79; /*tooltip font color*/
  270. z-index:999999999999999999999999999999999999;
  271. -moz-transition-duration:.5s;
  272. -webkit-transition-duration:.5s;
  273. -o-transition-duration:.5s;
  274. box-shadow:-1px 1px 3px 0px #6e6e6e;
  275. }
  276. </style>
  277. <title>{Title}</title>
  278. <link rel="shortcut icon" href="http://33.media.tumblr.com/tumblr_lu2de169mC1qfoi4t.gif">
  279.  
  280. <meta name="image:Background" content="" />
  281. <meta name="image:Sidebar" content="" />
  282.  
  283. <meta name="color:Links" content="#a5425c" />
  284. <meta name="color:Main Color" content="#844858" />
  285. <meta name="color:Text" content="#8c3b44" />
  286. <meta name="color:Background" content="#fff7db" />
  287. <meta name="color:Border" content="#924146" />
  288. <meta name="color:Scrollbar" content="#c1616f" />
  289.  
  290. <meta name="text:Link 01" content="index" />
  291. <meta name="text:Link 02" content="askbox" />
  292. <meta name="text:Link 03" content="one" />
  293. <meta name="text:Link 04" content="two" />
  294. <meta name="text:Link 05" content="three" />
  295. <meta name="text:Link 01 URL" content="/" />
  296. <meta name="text:Link 02 URL" content="/ask" />
  297. <meta name="text:Link 03 URL" content="/" />
  298. <meta name="text:Link 04 URL" content="/" />
  299. <meta name="text:Link 05 URL" content="/" />
  300. <meta name="text:Background Image Position" content="left" />
  301. <meta name="text:Font Family" content="arial" />
  302. <meta name="text:Font Size" content="14.5" />
  303.  
  304. <meta name="if:Lazy Load" content="0" />
  305. <meta name="if:Custom Scrollbar" content="1">
  306. <meta name="if:Background Image Repeat" content="0" />
  307. <meta name="if:Infinite Scrolling" content="0" />
  308. <meta name="if:400px posts" content="0" />
  309. <meta name="if:540px posts" content="0" />
  310. <meta name="if:Sidebar Image" content="0" />
  311.  
  312. <!----------------------------------------------------------------------->
  313.  
  314. {block:IfLazyLoad}
  315. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/8mXm7q8vn/jquery.js"></script>
  316. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/ogWm7q8w1/lazyload.js"></script>
  317. <script type="text/javascript" charset="utf-8">
  318. var $j = jQuery.noConflict();
  319. $j(function() {
  320. if (navigator.platform == "iPad" || navigator.platform == "iPhone") return;
  321. $j("img").lazyload({
  322. placeholder : "http://static.tumblr.com/twte3d7/RSvlio0k5/grey.gif",
  323. effect: "fadeIn",
  324. });
  325. });
  326. </script>
  327. {/block:IfLazyLoad}
  328.  
  329. <!----------------------------------------------------------------------->
  330.  
  331. {block:IfInfiniteScrolling}<script type="text/javascript" src="http://codysherman.tumblr.com/tools/infinite-scrolling/code"></script>{/block:IfInfiniteScrolling}
  332.  
  333. <!----------------------------------------------------------------------->
  334.  
  335. <script type="text/javascript">
  336. function unhide(divID) {
  337. var item = document.getElementById(divID);
  338. if (item) {
  339. item.className=(item.className=='hidden')?'unhidden':'hidden';
  340. }
  341. }
  342. </script>
  343.  
  344. <!----------------------------------------------------------------------->
  345.  
  346. <style type="text/css">
  347.  
  348. @font-face { font-family: "bangalore"; src:url('http://static.tumblr.com/rmj06l2/VP8llx2mg/bangalor.ttf'); }
  349.  
  350. @font-face { font-family: "hacked"; src: url('https://dl.dropboxusercontent.com/s/xyju89lrtr12y7q/HACKED.ttf?dl=0'); format("truetype");}
  351.  
  352. @font-face { font-family: "marmellata_jam"; src: url('https://dl.dropboxusercontent.com/s/hfa0g49tzv8gx39/Marmellata%28Jam%29_demo.ttf?dl=0'); format("truetype");}
  353.  
  354. @font-face { font-family: "olympic_branding"; src: url('https://dl.dropboxusercontent.com/s/b0yp3tjzthguism/Olympic%20Branding.ttf?dl=0'); format("truetype");}
  355.  
  356. @font-face { font-family: "silkscreen"; src: url('https://dl.dropboxusercontent.com/s/4bj79wi75v77m0r/slkscr.ttf?dl=1'); format(“truetype”);}
  357.  
  358. @font-face { font-family: "determination"; src: url('https://dl-web.dropbox.com/s/umfv28jfusg9bgt/DeterminationSansWeb.woff?dl=0'); format("truetype");}
  359.  
  360. @font-face { font-family: "allura"; src: url('http://static.tumblr.com/gdh5wux/7hFmeryj6/allura-regular.ttf'); }
  361.  
  362. @font-face { font-family: "master"; src: url('https://dl-web.dropbox.com/s/k445x5liwyqzbfp/master_of_break.ttf?dl=0'); format(“truetype”);}
  363.  
  364. @font-face { font-family: "prelude"; src: url('https://dl-web.dropbox.com/s/2v8jtmjwk7k5taa/PreludeFLF.ttf?dl=0'); format(“truetype”);}
  365.  
  366.  
  367. @font-face { font-family: "limo"; src: url('https://dl-web.dropbox.com/s/qwtxsak8i2dpu06/Champagne%20%26%20Limousines%20Bold.ttf?dl=0'); format(“truetype”);}
  368.  
  369.  
  370.  
  371. #fade {
  372. display: none;
  373. background: #d1d1d1;
  374. position: fixed;
  375. left: 0;
  376. top: 0;
  377. width: 100%;
  378. height: 100%;
  379. opacity: .2;
  380. z-index: 9999;
  381. }
  382.  
  383. .popup_block{
  384. display: none;
  385. background: #d1d1d1;
  386. padding: 20px;
  387. float: left;
  388. position: fixed;
  389. top: 50%;
  390. left: 50%;
  391. z-index: 99999;
  392. height:300px;
  393. background-repeat:no-repeat;
  394. border-top:2px solid #79858f;
  395. border-bottom:2px solid #79858f;
  396. border-left:4px solid #79858f;
  397. border-right:4px solid #79858f;
  398. text-align:center;
  399. color:#3b5d5e;
  400. opacity:1;
  401. overflow-x:scroll;
  402. scroll:left;
  403. overflow-x:hidden;
  404. }
  405.  
  406. img.btn_close {
  407. float: right;
  408. margin: -55px -55px 0 0;
  409. }
  410.  
  411. *html #fade {
  412. position: absolute;
  413. }
  414.  
  415. *html .popup_block {
  416. position: absolute;
  417. }
  418.  
  419.  
  420.  
  421. {block:IfCustomScrollbar}
  422. ::-webkit-scrollbar {width:2px;height:2px;background:{color:background}}
  423. ::-webkit-scrollbar-thumb:vertical {height:2px;background:{color:scrollbar};}
  424. ::-webkit-scrollbar-thumb:horizontal {height:2px;background:{color:scrollbar};}
  425. {/block:IfCustomScrollbar}
  426.  
  427. iframe#tumblr_controls {white-space:nowrap;-webkit-filter:invert(100%);-moz-filter:invert(100%);-o-filter:invert(100%);-ms-filter: invert(100%);filter:invert(100%);opacity:.2;}
  428. body {margin:0;font-family:{text:font family};font-size:{text:font size}px;line-height:11px;color:{color:text};background-color:{color:background};background-attachment:fixed;background-image:url('{image:Background}');background-position:{text:Background Image Position};{block:IfNotBackgroundImageRepeat}background-repeat:no-repeat;{/block:IfNotBackgroundImageRepeat}{block:IfBackgroundImageRepeat}background-repeat:repeat;{/block:IfBackgroundImageRepeat}}
  429.  
  430. a {text-decoration:none;-webkit-transition: all .3s linear;-moz-transition: all .3s linear;-ms-transition: all .3s linear;-o-transition: all .3s linear;transition: all .3s linear;color:#80414e;text-shadow:0px 0px 2px #854250;}
  431. a:hover { color:#ffffff;text-shadow:0px 0px 2px #54222c;
  432. -webkit-text-stroke-width: 0px;
  433. -webkit-text-stroke-color: #fff7db;-webkit-transition: all .3s linear;-moz-transition: all .3s linear;-ms-transition: all .3s linear;-o-transition: all .3s linear;transition: all .3s linear;}
  434.  
  435. strong, bold, b {font-weight:bold;font-family:"limo";font-size:25px;color:#753643; -webkit-text-stroke: 0px #262626; text-shadow:0px 1px 2px #703445;letter-spacing:3px;line-height:25px;z-index:99;}
  436. italic, i, em {font-weight:italic;font-family: 'prelude' ;font-size:35px;color:#a8545f; -webkit-text-stroke: 0px #697e80; text-shadow:0px 0px 2px #703445;}
  437.  
  438. small, sub {font-size:{text:font size}px;}
  439. code {font-size:{text:font size}px;font-family:{text:font family};}
  440. pre {word-wrap:break-word;font-size:{text:font size}px;font-family:{text:font family};}
  441.  
  442. blockquote {padding-left:8px;padding-right:8px;margin-top:8px;margin-left:10px;border-left:1px solid #b0787a;border-right:0px solid #7d7d7d;background:transparent;box-shadow:0px 0px 0px #6e6e6e;border-radius:5px;}
  443.  
  444.  
  445. h1 {font-size:30px;font-weight:bold;letter-spacing:1px;padding:8px 50px;text-transform:lowercase;text-align:center;line-height:25px;color:{color:main color};line-height:30px;font-family:"master";}
  446. h2 {font-size:40px;font-weight:bold;letter-spacing:1px;padding:8px 50px;text-transform:uppercase;text-align:center;line-height:45px;color:#3c4a52;line-height:40px;text-shadow:1px 1px 2px #b0787a;font-family:"prelude";}
  447. h1 a {color:{color:main color};}
  448.  
  449. .label {font-weight:normal;color:{color:main color};font-size:20px;}
  450. .chat {line-height:25px;margin:8px;font-family:"determination";font-size:20px;color:#424242;text-transform:lowercase;}
  451. n {line-height:25px;margin:8px;font-family:"determination";font-size:30px;}
  452.  
  453. ::selection {color:#fff;background:#b06b79;}
  454. ::-moz-selection {color:#fff;background:#b06b79;}
  455. ::-webkit-selection {color:#fff;background:#b06b79;}
  456.  
  457. #credit {position:fixed;bottom:10px;right:10px;text-transform:uppercase;font-size:10px;font-family:trebuchet ms;letter-spacing:1px;}
  458. #credit a {color:{color:main color};}
  459.  
  460. #pagination {margin:0px 0px 30px 530px;{block:IfNot400pxPosts}{block:IfNot540pxPosts}width:500px;{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}width:400px;{/block:If400pxPosts}{block:If540pxPosts}width:540px;{/block:If540pxPosts}text-align:center;letter-spacing:20px;}
  461.  
  462. /************************************************************************/
  463.  
  464. #sidebar {text-align:left;
  465. position:fixed;
  466. margin-left:-225px;
  467. margin-top:400px;
  468. width:300px;}
  469.  
  470.  
  471. .description {margin:13px 0px;line-height:16px;text-align:center;letter-spacing:1px;font-size:10px;}
  472.  
  473. #description {
  474. position:fixed;
  475. width:0px;
  476. font-family:trebuchet ms;
  477. margin-top:55px;
  478. margin-left:-9px;
  479. text-align:justify;
  480. font-size:9px;
  481. color: {color:text};
  482. letter-spacing:0px;
  483. line-height:130%;
  484. -moz-transition-duration:1s;
  485. -webkit-transition-duration:1s;
  486. -o-transition-duration:1s;
  487. }
  488. /************************************************************************/
  489.  
  490. #post {{block:IfNot400pxPosts}{block:IfNot540pxPosts}width:500px;{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}width:400px;{/block:If400pxPosts}{block:If540pxPosts}width:540px;{/block:If540pxPosts}margin:40px 0px 80px 520px;text-align:left;line-height:14px;opacity:0.9;
  491. -webkit-transition: all 0.6s ease-in-out;
  492. -moz-transition: all 0.6s ease-in-out;
  493. -o-transition: all 0.6s ease-in-out;
  494. -ms-transition: all 0.6s ease-in-out;
  495. transition: all 0.6s ease-in-out;line-height:20px;
  496. -webkit-filter:grayscale(0%);
  497. -webkit-transition: all 0.6s ease-in-out;}
  498.  
  499. #post:hover {
  500. opacity:1;
  501. -webkit-transition: all 0.6s ease-in-out;
  502. -moz-transition: all 0.6s ease-in-out;
  503. -o-transition: all 0.6s ease-in-out;
  504. -ms-transition: all 0.6s ease-in-out;
  505. transition: all 0.6s ease-in-out;
  506. -webkit-filter:none;
  507. }
  508.  
  509.  
  510.  
  511. #post img {{block:IfNot400pxPosts}{block:IfNot540pxPosts}max-width:500px;{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}max-width:400px;{/block:If400pxPosts}{block:If540pxPosts}max-width:540px;{/block:If540pxPosts}}
  512. #post blockquote div {margin-top:8px;}
  513. #post blockquote img {{block:IfNot400pxPosts}{block:IfNot540pxPosts}max-width:450px;{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}max-width:350px;{/block:If400pxPosts}{block:If540pxPosts}max-width:490px;{/block:If540pxPosts}}
  514.  
  515. #permalink {-webkit-transition: all .3s linear;-moz-transition: all .3s linear;-ms-transition: all .3s linear;-o-transition: all .3s linear;transition: all .3s linear;border-top:1px solid {color:border};{block:IfNot400pxPosts}{block:IfNot540pxPosts}width:500px;{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}width:400px;{/block:If400pxPosts}{block:If540pxPosts}width:540px;{/block:If540pxPosts}color:#454545;margin-top:15px;padding-top:8px;text-transform:lowercase;line-height:14px;text-align:center;font-size:25px;letter-spacing:1px;background-image:url("http://i.imgur.com/Bt8Ikbv.png");background-repeat:repeat;background-attachment:fixed;height:25px;border-top:2px solid #fff7db;border-bottom:2px solid #fff7db;border-left:4px solid #fff7db;border-right:4px solid #fff7db; -webkit-text-stroke-width: 1px;outline:1px solid #b0787a;
  516. -webkit-text-stroke-color: #fff7db;}
  517. #permalink a {color:#b0787a;font-family:"determination"; -webkit-text-stroke-width: 1px;
  518. -webkit-text-stroke-color: #fff7db;}
  519. #permalink a:hover {color:#fff7db;font-family:"determination";-webkit-text-stroke-width: 1px;
  520. -webkit-text-stroke-color: #b0787a;}
  521.  
  522. .tags {text-align:center;opacity:0;margin:10px 0px;-webkit-transition: all .5s linear;-moz-transition: all .5s linear;-ms-transition: all .5s linear;-o-transition: all .5s linear;transition: all .5s linear;font-size:13px;text-transform:none;font-size:12px;}
  523. .tags a {color:{color:main color};text-transform:lowercase;padding:0px 5px;text-shadow:0px 0px 2px #b0787a;font-size:13px;}
  524. .tags a:hover {text-decoration:underline;color:#d49fa1;-webkit-transition: all .3s linear;-moz-transition: all 3s linear;-ms-transition: all .3s linear;-o-transition: all .3s linear;transition: all .3s linear;text-shadow:0px 0px 2px #d49fa1;letter-spacing:0px;}
  525.  
  526. #post:hover .tags {opacity:1;}
  527.  
  528. /************************************************************************/
  529.  
  530.  
  531. #permalinkpage {margin-top:15px;text-align:center;padding:5px 0px;text-transform:lowercase;height:35px;border-top:2px solid #b06b79;border-bottom:2px solid #b06b79;border-left:4px solid #b06b79;border-right:4px solid #b06b79;background:#fff7db;color:#b06b79;}
  532.  
  533. #tagspp {line-height:15px;{block:IfNot400pxPosts}{block:IfNot540pxPosts}width:500px;{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}width:400px;{/block:If400pxPosts}{block:If540pxPosts}width:540px;{/block:If540pxPosts}text-align:center;color:{color:links};padding:5px 0px;}
  534. #tagspp a {padding:0px 5px;}
  535. #tagspp a:hover {text-decoration:underline;}
  536.  
  537. /************************************************************************/
  538.  
  539. .tumblr_audio_player {border:1px solid {color:border};height:40px;margin-bottom:5px;{block:IfNot400pxPosts}{block:IfNot540pxPosts}width:396px;{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}width:296px;{/block:If400pxPosts}{block:If540pxPosts}width:436px;{/block:If540pxPosts}}
  540.  
  541. .audio {position:relative;margin-top:-100px;margin-left:102px;height:100px;{block:IfNot400pxPosts}{block:IfNot540pxPosts}width:390px;{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}width:296px;{/block:If400pxPosts}{block:If540pxPosts}width:436px;{/block:If540pxPosts};color:{color:links};font-family:"silkscreen";font-weight:normal;font-size:11px;}
  542.  
  543. .audioart {padding-right:2px;width:100px;height:100px;}
  544. .audioart img {width:100px;}
  545.  
  546. /************************************************************************/
  547.  
  548.  
  549. .quote {font-weight:italic;font-family: 'determination' ;font-size:20px;color:#4a4a4a; -webkit-text-stroke: 0px #697e80; text-shadow:0px 0px 1px #383838;line-height:25px;word-spacing:2px;text-transform:lowercase;}
  550. .source {font-weight:normal;padding-left:8px;display:inline-block;font-family:"silkscreen";}
  551.  
  552. /************************************************************************/
  553. #sans {font-size:24px; font-style:none;margin-top:10px;margin-left:0px;font-family:"determination";text-transform:uppercase;color:#874953;text-shadow:0px 0px 2px #9e4453;width:500px;text-align:left; -webkit-text-stroke-width: 0px;-webkit-text-stroke-color: #fff7db;}
  554. #question {margin:10px 0px;padding:10px 20px;line-height:20px;border-bottom:2px solid #b06b79;border-top:2px solid #b06b79;border-left:4px solid #b06b79;border-right:4px solid #b06b79;border-radius:0px 0px 0px 0px;text-align:center;background-repeat:repeat;background-attachment:fixed;font-family:"silkscreen";text-transform:lowercase;font-size:14px;-webkit-text-stroke: 0px #697e80;color:#b06b79;text-shadow:0px 0px 0px #121111;margin-top:-12px;font-size:14px;background:#fff7db; box-shadow:0px 0px 2px #874953;}
  555. #sender {font-size:36px; font-style:none;margin-top:-0px;margin-left:0px;font-family:"master";text-transform:;color:#b06b79;text-shadow:0px 0px 2px #874953;width:500px;text-align:right; -webkit-text-stroke-width: 0px;-webkit-text-stroke-color: #fff7db;}
  556.  
  557.  
  558. /************************************************************************/
  559.  
  560. .notes {margin-left:-15px;margin-top:30px;{block:IfNot400pxPosts}{block:IfNot540pxPosts}width:480px;{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}width:380px;{/block:If400pxPosts}{block:If540pxPosts}width:520px;{/block:If540pxPosts}}
  561. .notes a:hover {background-color:transparent;color:{color:links};}
  562. ol.notes {list-style-type:none;}
  563. ol.notes li.note {padding-bottom:7px;margin-bottom:12px;border-bottom:1px solid {color:border};}
  564. ol.notes li.note img.avatar {vertical-align:-6px;}
  565. ol.notes li.note img {padding:2px 5px 2px 2px;}
  566. ol.notes li.note blockquote {padding-left:5px;margin-left:30px;}
  567.  
  568. /************************************************************************/
  569.  
  570. .hidden {display:none;}
  571. .unhidden {display:block;}
  572.  
  573. /************************************************************************/
  574.  
  575. #nav {
  576. width:20px;
  577. background:transparent;
  578. padding:10px; }
  579.  
  580. #nav a{
  581. text-decoration:none;
  582. font: 15px "determination";
  583. color:#79858f;
  584. letter-spacing:2px;
  585. display:inline-block;
  586. text-align:center;
  587. background:#d1d1d1;
  588. border-top:2px solid #79858f;
  589. border-bottom:2px solid #79858f;
  590. border-left:4px solid #79858f;
  591. border-right:4px solid #79858f;
  592. padding: 2px;
  593. width:280px;
  594. margin:5px;
  595. -webkit-transition:all 0.4s ease-in-out;
  596. -moz-transition:all 0.4s ease-in-out;
  597. -o-transition:all 0.4s ease-in-out;
  598. transition:all 0.4s ease-in-out;}
  599.  
  600. #nav a:hover{
  601. color:#e8e8e7;
  602. letter-spacing:5px;
  603. display:inline-block;
  604. text-align:center;
  605. background:#d1d1d1;
  606. padding: 2px;
  607. width:280px;
  608. margin:5px;
  609. -webkit-transition:all 0.5s ease-in-out;
  610. -moz-transition:all 0.5s ease-in-out;
  611. -o-transition:all 0.5s ease-in-out;
  612. transition:all 0.5s ease-in-out;}
  613.  
  614.  
  615. #sakura {
  616. width:450px;
  617. background:transparent;
  618. padding:10px;
  619. position:fixed;
  620. text-align:center;
  621. margin-top:340px;
  622. }
  623.  
  624. #sakura a{
  625. text-decoration:none;
  626. font: 14px times;
  627. color:#b06b79;
  628. letter-spacing:2px;
  629. display:inline-block;
  630. text-align:center;
  631. background:#fff7db;
  632. border-top:2px solid #b06b79;
  633. border-bottom:2px solid #b06b79;
  634. border-left:3px solid #b06b79;
  635. border-right:3px solid #b06b79;
  636. text-transform:uppercase;
  637. padding: 2px;
  638. width:140px;
  639. margin:5px;
  640. -webkit-transition:all 0.4s ease-in-out;
  641. -moz-transition:all 0.4s ease-in-out;
  642. -o-transition:all 0.4s ease-in-out;
  643. transition:all 0.4s ease-in-out;}
  644.  
  645. #sakura a:hover{
  646. color:#e8e8e7;
  647. letter-spacing:5px;
  648. display:inline-block;
  649. text-align:center;
  650. background:#fff7db;
  651. padding: 2px;
  652. width:140px;
  653. margin:5px;
  654. -webkit-transition:all 0.5s ease-in-out;
  655. -moz-transition:all 0.5s ease-in-out;
  656. -o-transition:all 0.5s ease-in-out;
  657. transition:all 0.5s ease-in-out;}
  658.  
  659. #musicplayer {
  660. position: fixed;
  661. left: 293px;
  662. top: 72px; }
  663.  
  664. .yo {
  665. position: absolute;
  666. left: 35px;
  667. top: 0px;
  668. font-style: oblique; font: 9px georgia;
  669. width: 80px;
  670. height: 15px;
  671. padding: 5px;
  672. background-color: #fff;
  673. opacity: 0;
  674. -webkit-transition: all 0.3s ease-in;
  675. -moz-transition: all 0.3s ease-in;
  676. -o-transition: all 0.3s ease-in;
  677. -ms-transition: all 0.3s eease-in;
  678. transition: all 0.3s ease-in; }
  679.  
  680. #musicplayer:hover .yo {
  681. opacity: 1;
  682. -webkit-box-shadow: 2px 2px 2px rgba(50, 50, 50, 0.03);
  683. -moz-box-shadow: 2px 2px 2px rgba(50, 50, 50, 0.03);
  684. box-shadow: 2px 2px 2px rgba(50, 50, 50, 0.03); }
  685.  
  686. .player {
  687. border: 0px solid #666;
  688. padding-top:2px;
  689. padding-right:1px;
  690. position: fixed;
  691. width: 100px;
  692. height:20px;
  693. margin: 3px 0px 0px 0px;
  694. overflow: hidden;
  695. z-index: 9999;
  696. opacity: 1; }
  697. </style>
  698. </head>
  699.  
  700. <body>
  701.  
  702.  
  703. <div id="navi" class="popup_block"><div style="background-color:#79858f; width:300px;padding:06px;text-align:center; text-style:normal;color:#fff;opacity:1; letter-spacing:1px;font-size:13px;height:auto;margin-top:6px;line-height:20px; box-shadow: 0px 0px 0px #828282;border-radius:0px 0px 0px 0px;font-size:15px;border:3px solid #d1d1d1; outline:1px dashed #79858f;font-family:silkscreen;">✦ PAGES.</div>
  704. <div id="nav">
  705. <a href="http://reunionvow.tumblr.com/ask">MESSAGE.</a>
  706. <a href="http://reunionvow.tumblr.com/submit">SUBMIT.</a>
  707. <a href="http://reunionvow.tumblr.com/archive">ARCHIVE.</a>
  708. <a href="http://reunionvow.tumblr.com/r">READ.</a>
  709. <a href="http://reunionvow.tumblr.com/a">ABOUT.</a>
  710. </div>
  711. </div>
  712. </div>
  713. </div>
  714.  
  715.  
  716.  
  717.  
  718. <!----------------------------------------------------------------------->
  719.  
  720.  
  721. <!----------------------------------------------------------------------->
  722.  
  723. <div id="sidebar">
  724.  
  725. <div id="description"></div>
  726.  
  727. </div>
  728. <div id="sakura">
  729. <a href="{text:link 01 url}">{text:link 01}</a>
  730. <a href="{text:link 02 url}">{text:link 02}</a>
  731. <a href="{text:link 03 url}">{text:link 03}</a>
  732. <a href="{text:link 04 url}">{text:link 04}</a>
  733. <a href="{text:link 05 url}">{text:link 05}</a>
  734. </div></div>
  735. <!----------------------------------------------------------------------->
  736.  
  737. {block:IfInfiniteScrolling}<div class="autopagerize_page_element">{/block:IfInfiniteScrolling}
  738.  
  739. {block:Posts}
  740. <div id="post">
  741.  
  742. {block:Text}{block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}{Body}{/block:Text}
  743.  
  744. {block:Photo}{block:IfNot400pxPosts}{block:IfNot540pxPosts}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}
  745. {block:If400pxPosts}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{/block:If400pxPosts}{block:If540pxPosts}<center><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"></center>{/block:If540pxPosts}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  746.  
  747. {block:Photoset}{block:IfNot400pxPosts}{block:IfNot540pxPosts}{Photoset-500}{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}{Photoset-400}{/block:If400pxPosts}{block:If540pxPosts}<center>{Photoset}</center>{/block:If540pxPosts}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  748.  
  749. {block:Quote}<div class="quote">* {Quote} ❞</div>{block:Source}<div class="source">» {Source}</div>{/block:Source}{/block:Quote}
  750.  
  751. {block:Link}<h1><a href="{URL}" class="link" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  752.  
  753. {block:Chat}<div id="chat">{block:Title}<p style="font-size:30px;text-transform:lowercase;line-height:30px;text-align:center;font-family:prelude;"><a href="{Permalink}">{Title}</a>{/block:Title}<div class="chat">{block:Lines}<div class="{Alt} user_{UserNumber}">{block:Label}<span class="label">{Label} </span>{/block:Label}{Line}</div>{/block:Lines}</div></div>{/block:Chat}
  754.  
  755. {block:Video}{block:IfNot400pxPosts}{block:IfNot540pxPosts}{Video-500}{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}{Video-400}{/block:If400pxPosts}{block:If540pxPosts}<center>{Video-500}</center>{/block:If540pxPosts}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  756.  
  757. {block:Audio}<div class="audioart">{block:AlbumArt}<img src="{AlbumArtURL}" width="100">{/block:AlbumArt}</div><div class="audio">{block:AudioPlayer}{AudioPlayer}{/block:AudioPlayer}<span class="height:60px;">{block:TrackName}&nbsp;&nbsp;&nbsp;TRACK NAME: {TrackName}{/block:TrackName} <br> {block:Artist}&nbsp;&nbsp;&nbsp;ARTIST: {Artist}{/block:Artist} <br> {block:Album}&nbsp;&nbsp;&nbsp;ALBUM: {Album}{/block:Album}</span></div>{block:caption}{caption}{/block:caption}{/block:Audio}
  758.  
  759. {block:Answer}<div id="sans">message loading...</div><p><div id="question">* {Question} </div><div id="sender">—&nbsp;&nbsp;&nbsp;{Asker}</div>{Answer}{/block:Answer}
  760.  
  761.  
  762. {block:ContentSource}<!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  763. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->{/block:ContentSource}
  764.  
  765. <!-- {block:NoRebloggedFrom}
  766. {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
  767. {/block:NoRebloggedFrom} -->
  768.  
  769. {block:IndexPage}
  770. <div id="permalink">
  771. {block:Date}<a href="{Permalink}" title="{TimeAgo}">✦</a>{/block:Date} <a href="{Permalink}" title="{NoteCount} notes">✦</a>{/block:NoteCount}&nbsp;{block:RebloggedFrom}<a title="via: {ReblogParentName}" href="{ReblogParentURL}">✦</a>{/block:RebloggedFrom}{block:ContentSource} <a title="source: {SourceTitle}" href="{SourceURL}">✦</a>{/block:ContentSource}{/block:RebloggedFrom} <a href="{ReblogURL}" title="reblog?" target="_blank" class="details">✦</a></div>
  772. <div class="tags">{block:HasTags} {block:Tags}<a href="{TagURL}">* {Tag} ;</a>{/block:Tags}{/block:HasTags}</div>
  773. {/block:IndexPage}
  774.  
  775. {block:PermalinkPage}{block:Date}<div id="permalinkpage">shared {TimeAgo} on {ShortDayOfWeek}, {DayOfMonthWithZero}{DayOfMonthSuffix}{block:NoteCount} with {NoteCountWithLabel}{/block:NoteCount}{block:RebloggedFrom}<br>Originally made by <a href="{ReblogRootURL}">{ReblogRootName}</a>, reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom} </div>{/block:Date}{/block:PermalinkPage}
  776.  
  777. {block:PermalinkPage}{block:HasTags}<div id="tagspp">{block:Tags}<a href="{TagURL}">* {Tag} ;</a>{/block:Tags}</div>{/block:HasTags}{/block:PermalinkPage}
  778.  
  779. {block:PostNotes}
  780. <div style="background-color:{color:border};height:1px;margin-top:20px;"></div>
  781. <div style="margin-top:-6px;text-align:center;color:{color:text};"><span style="background-color:{color:background};padding:0px 5px;"><a href="javascript:unhide('notes');">show notes</a></span></div>
  782. <div id="notes" class="hidden"><div class="notes">{PostNotes}</div></div>
  783. {/block:PostNotes}
  784.  
  785. </div>
  786.  
  787. {/block:Posts}
  788.  
  789. {block:IfInfiniteScrolling}</div>{/block:IfInfiniteScrolling}
  790.  
  791. {block:IfNotInfiniteScrolling}{block:Pagination}<div id="pagination">{block:PreviousPage}<a href="{PreviousPage}">-</a>{/block:PreviousPage}
  792. {block:JumpPagination length="5"}{block:CurrentPage}<span class="current_page">{PageNumber}</span>{/block:CurrentPage}{block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}{/block:JumpPagination}{block:NextPage}<a href="{NextPage}">+</a>{/block:NextPage}</div>{/block:Pagination}{/block:IfNotInfiniteScrolling}
  793.  
  794. <!----------------------------------------------------------------------->
  795.  
  796. </body>
  797. </html>
Advertisement
Add Comment
Please, Sign In to add comment