Advertisement
Guest User

Untitled

a guest
Jul 19th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 31.32 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. <title>{Title}</title>
  4. <head>
  5.  
  6. <script type="text/javascript"
  7. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  8. <script>
  9. $(document).ready(function() {
  10. $('a.poplight[href^=#]').click(function() {
  11. var popID = $(this).attr('rel'); //Get Popup Name
  12. var popURL = $(this).attr('href'); //Get Popup href to define size
  13. var query= popURL.split('?');
  14. var dim= query[1].split('&');
  15. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  16. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  17. var popMargTop = ($('#' + popID).height() + 80) / 2;
  18. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  19. //Apply Margin to Popup
  20. $('#' + popID).css({
  21. 'margin-top' : -popMargTop,
  22. 'margin-left' : -popMargLeft
  23. });
  24. $('body').append('<div id="fade"></div>');
  25. $('#fade').css({'filter' : 'alpha(opacity=100)'}).fadeIn(); //Fade bin the fade layer - .css({'filter' : 'alpha(opacity=100)'})
  26. return false;
  27. });
  28. $('a.close, #fade').live('click', function() {
  29. $('#fade , .popup_block').fadeOut(function() {
  30. $('#fade, a.close').remove(); //fade them both out
  31. });
  32. return false;
  33. });
  34. });
  35. </script>
  36.  
  37. <script type="text/javascript">
  38. // <![CDATA[
  39. var colour="#d5aed0"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
  40. var sparkles=50;
  41.  
  42. /****************************
  43. * Tinkerbell Magic Sparkle *
  44. *(c)2005-13 mf2fm web-design*
  45. * http://www.mf2fm.com/rv *
  46. * DON'T EDIT BELOW THIS BOX *
  47. ****************************/
  48. var x=ox=400;
  49. var y=oy=300;
  50. var swide=800;
  51. var shigh=600;
  52. var sleft=sdown=0;
  53. var tiny=new Array();
  54. var star=new Array();
  55. var starv=new Array();
  56. var starx=new Array();
  57. var stary=new Array();
  58. var tinyx=new Array();
  59. var tinyy=new Array();
  60. var tinyv=new Array();
  61.  
  62. window.onload=function() { if (document.getElementById) {
  63. var i, rats, rlef, rdow;
  64. for (var i=0; i<sparkles; i++) {
  65. var rats=createDiv(3, 3);
  66. rats.style.visibility="hidden";
  67. rats.style.zIndex="999";
  68. document.body.appendChild(tiny[i]=rats);
  69. starv[i]=0;
  70. tinyv[i]=0;
  71. var rats=createDiv(5, 5);
  72. rats.style.backgroundColor="transparent";
  73. rats.style.visibility="hidden";
  74. rats.style.zIndex="999";
  75. var rlef=createDiv(1, 5);
  76. var rdow=createDiv(5, 1);
  77. rats.appendChild(rlef);
  78. rats.appendChild(rdow);
  79. rlef.style.top="2px";
  80. rlef.style.left="0px";
  81. rdow.style.top="0px";
  82. rdow.style.left="2px";
  83. document.body.appendChild(star[i]=rats);
  84. }
  85. set_width();
  86. sparkle();
  87. }}
  88.  
  89. function sparkle() {
  90. var c;
  91. if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
  92. ox=x;
  93. oy=y;
  94. for (c=0; c<sparkles; c++) if (!starv[c]) {
  95. star[c].style.left=(starx[c]=x)+"px";
  96. star[c].style.top=(stary[c]=y+1)+"px";
  97. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  98. star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
  99. star[c].style.visibility="visible";
  100. starv[c]=50;
  101. break;
  102. }
  103. }
  104. for (c=0; c<sparkles; c++) {
  105. if (starv[c]) update_star(c);
  106. if (tinyv[c]) update_tiny(c);
  107. }
  108. setTimeout("sparkle()", 40);
  109. }
  110.  
  111. function update_star(i) {
  112. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  113. if (starv[i]) {
  114. stary[i]+=1+Math.random()*3;
  115. starx[i]+=(i%5-2)/5;
  116. if (stary[i]<shigh+sdown) {
  117. star[i].style.top=stary[i]+"px";
  118. star[i].style.left=starx[i]+"px";
  119. }
  120. else {
  121. star[i].style.visibility="hidden";
  122. starv[i]=0;
  123. return;
  124. }
  125. }
  126. else {
  127. tinyv[i]=50;
  128. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  129. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  130. tiny[i].style.width="2px";
  131. tiny[i].style.height="2px";
  132. tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
  133. star[i].style.visibility="hidden";
  134. tiny[i].style.visibility="visible"
  135. }
  136. }
  137.  
  138. function update_tiny(i) {
  139. if (--tinyv[i]==25) {
  140. tiny[i].style.width="1px";
  141. tiny[i].style.height="1px";
  142. }
  143. if (tinyv[i]) {
  144. tinyy[i]+=1+Math.random()*3;
  145. tinyx[i]+=(i%5-2)/5;
  146. if (tinyy[i]<shigh+sdown) {
  147. tiny[i].style.top=tinyy[i]+"px";
  148. tiny[i].style.left=tinyx[i]+"px";
  149. }
  150. else {
  151. tiny[i].style.visibility="hidden";
  152. tinyv[i]=0;
  153. return;
  154. }
  155. }
  156. else tiny[i].style.visibility="hidden";
  157. }
  158.  
  159. document.onmousemove=mouse;
  160. function mouse(e) {
  161. if (e) {
  162. y=e.pageY;
  163. x=e.pageX;
  164. }
  165. else {
  166. set_scroll();
  167. y=event.y+sdown;
  168. x=event.x+sleft;
  169. }
  170. }
  171.  
  172. window.onscroll=set_scroll;
  173. function set_scroll() {
  174. if (typeof(self.pageYOffset)=='number') {
  175. sdown=self.pageYOffset;
  176. sleft=self.pageXOffset;
  177. }
  178. else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
  179. sdown=document.body.scrollTop;
  180. sleft=document.body.scrollLeft;
  181. }
  182. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  183. sleft=document.documentElement.scrollLeft;
  184. sdown=document.documentElement.scrollTop;
  185. }
  186. else {
  187. sdown=0;
  188. sleft=0;
  189. }
  190. }
  191.  
  192. window.onresize=set_width;
  193. function set_width() {
  194. var sw_min=999999;
  195. var sh_min=999999;
  196. if (document.documentElement && document.documentElement.clientWidth) {
  197. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  198. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  199. }
  200. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  201. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  202. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  203. }
  204. if (document.body.clientWidth) {
  205. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  206. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  207. }
  208. if (sw_min==999999 || sh_min==999999) {
  209. sw_min=800;
  210. sh_min=600;
  211. }
  212. swide=sw_min;
  213. shigh=sh_min;
  214. }
  215.  
  216. function createDiv(height, width) {
  217. var div=document.createElement("div");
  218. div.style.position="absolute";
  219. div.style.height=height+"px";
  220. div.style.width=width+"px";
  221. div.style.overflow="hidden";
  222. return (div);
  223. }
  224.  
  225. function newColour() {
  226. var c=new Array();
  227. c[0]=255;
  228. c[1]=Math.floor(Math.random()*256);
  229. c[2]=Math.floor(Math.random()*(256-c[1]/2));
  230. c.sort(function(){return (0.5 - Math.random());});
  231. return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
  232. }
  233. // ]]>
  234. </script>
  235.  
  236. <script type="text/javascript">
  237. // <![CDATA[
  238. var colour="#f1f1f1"; // what colour are the blobs
  239. var speed=66; // speed of animation, lower is faster
  240. var blobs=8; // how many blobs are in the jar
  241. var charc=String.fromCharCode(9679); // a blob - can be changed to charc='hello' or charc='*' for a different effect
  242.  
  243. /***************************\
  244. * Blobs in a Jar Effect *
  245. *(c)2012-13 mf2fm web-design*
  246. * http://www.mf2fm.com/rv *
  247. * DON'T EDIT BELOW THIS BOX *
  248. \***************************/
  249.  
  250. var div;
  251. var xpos=new Array();
  252. var ypos=new Array();
  253. var zpos=new Array();
  254. var dx=new Array();
  255. var dy=new Array();
  256. var dz=new Array();
  257. var blob=new Array();
  258. var swide=800;
  259. var shigh=600;
  260. var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
  261.  
  262. function addLoadEvent(funky) {
  263. var oldonload=window.onload;
  264. if (typeof(oldonload)!='function') window.onload=funky;
  265. else window.onload=function() {
  266. if (oldonload) oldonload();
  267. funky();
  268. }
  269. }
  270.  
  271. addLoadEvent(fill_the_jar);
  272.  
  273. function fill_the_jar() {
  274. var i, dvs;
  275. div=document.createElement('div');
  276. dvs=div.style;
  277. dvs.position='fixed';
  278. dvs.left='0px';
  279. dvs.top='0px';
  280. dvs.width='1px';
  281. dvs.height='1px';
  282. document.body.appendChild(div);
  283. set_width();
  284. for (i=0; i<blobs; i++) {
  285. add_blob(i);
  286. jamjar(i);
  287. }
  288. }
  289.  
  290. function add_blob(ref) {
  291. var dv, sy;
  292. dv=document.createElement('div');
  293. sy=dv.style;
  294. sy.position='absolute';
  295. sy.textAlign='center';
  296. if (ie_version && ie_version<10) {
  297. sy.fontSize="10px";
  298. sy.width="100px";
  299. sy.height="100px";
  300. sy.paddingTop="40px";
  301. sy.color=colour;
  302. dv.appendChild(document.createTextNode(charc));
  303. }
  304. else if (ie_version) {
  305. sy.fontSize="1px";
  306. sy.width="0px";
  307. sy.height="0px";
  308. }
  309. else {
  310. dv.appendChild(document.createTextNode(charc));
  311. sy.color='rgba(0,0,0,0)';
  312. }
  313. ypos[ref]=Math.floor(shigh*Math.random());
  314. dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  315. xpos[ref]=Math.floor(swide*Math.random());
  316. dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  317. zpos[ref]=Math.random()*20;
  318. dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
  319. blob[ref]=dv;
  320. div.appendChild(blob[ref]);
  321. set_blob(ref);
  322. }
  323.  
  324. function rejig(ref, xy) {
  325. if (xy=='y') {
  326. dx[ref]=(0.5+Math.random())*sign(dx[ref]);
  327. dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
  328. }
  329. else {
  330. dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
  331. dy[ref]=(0.5+Math.random())*sign(dy[ref]);
  332. }
  333. }
  334.  
  335. function sign(a) {
  336. if (a<0) return (-2);
  337. else if (a>0) return (2);
  338. else return (0);
  339. }
  340.  
  341. function set_blob(ref) {
  342. var sy;
  343. sy=blob[ref].style;
  344. sy.top=ypos[ref]+'px';
  345. sy.left=xpos[ref]+'px';
  346. if (ie_version && ie_version<10) {
  347. sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
  348. sy.fontSize=30-zpos[ref]+"px";
  349. }
  350. else if (ie_version) {
  351. sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
  352. }
  353. else {
  354. sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
  355. sy.fontSize=40+zpos[ref]+'px';
  356. }
  357. }
  358.  
  359. function jamjar(ref) {
  360. if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
  361. ypos[ref]+=dy[ref];
  362. if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
  363. xpos[ref]+=dx[ref];
  364. if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
  365. zpos[ref]+=dz[ref];
  366. set_blob(ref);
  367. setTimeout("jamjar("+ref+")", speed);
  368. }
  369.  
  370. window.onresize=set_width;
  371. function set_width() {
  372. var sw_min=999999;
  373. var sh_min=999999;
  374. if (document.documentElement && document.documentElement.clientWidth) {
  375. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  376. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  377. }
  378. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  379. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  380. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  381. }
  382. if (document.body.clientWidth) {
  383. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  384. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  385. }
  386. if (sw_min==999999 || sh_min==999999) {
  387. sw_min=800;
  388. sh_min=600;
  389. }
  390. swide=sw_min;
  391. shigh=sh_min;
  392. }
  393. // ]]>
  394. </script>
  395.  
  396.  
  397.  
  398. <link rel="shortcut icon" href="https://s1.piq.land/2016/02/12/hP9opBBu6nKSNjs9d5HUpqE0_400x400.png"/>
  399. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  400. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  401.  
  402. <!--
  403. •._.••´¯``•.¸¸.•` εтεяηαℓ ωσякs `•.¸¸.•´´¯`••._.•
  404. THIS THEME WAS PERSONALLY DESIGNED BY LEY AND INDIVIDUALLY PURCHASED !!
  405. By: Ley @eternalworks.
  406. theme shall not be redistributed. credits may not be removed.
  407. ( thank you for your support !! )
  408. •._.••´¯``•.¸¸.•` εтεяηαℓ ωσякs `•.¸¸.•´´¯`••._.•
  409. -->
  410.  
  411. <script language="javascript" src="http://dl.dropbox.com/u/3173073/GothicDarkness/qTip.js" type="text/javascript"></script>
  412.  
  413. <link href="https://fonts.googleapis.com/css?family=Abel" rel="stylesheet">
  414.  
  415. <link href="https://fonts.googleapis.com/css?family=Francois+One" rel="stylesheet">
  416.  
  417. <link href="https://fonts.googleapis.com/css?family=Dancing+Script" rel="stylesheet">
  418.  
  419. <link href="https://fonts.googleapis.com/css?family=Abril+Fatface" rel="stylesheet">
  420.  
  421. <link href="https://fonts.googleapis.com/css?family=Coda+Caption:800" rel="stylesheet">
  422.  
  423. <link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet">
  424.  
  425. <link href="https://fonts.googleapis.com/css?family=Allan" rel="stylesheet">
  426.  
  427. <link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
  428.  
  429. <link href="https://fonts.googleapis.com/css?family=Cookie|Playfair+Display" rel="stylesheet">
  430.  
  431. <link href="https://fonts.googleapis.com/css?family=Lobster+Two|Rajdhani|Walter+Turncoat" rel="stylesheet">
  432.  
  433.  
  434. <link href="https://fonts.googleapis.com/css?family=Libre+Baskerville" rel="stylesheet">
  435. <link href="https://fonts.googleapis.com/css?family=IBM+Plex+Sans+Condensed|IBM+Plex+Serif:300i|Old+Standard+TT|Playfair+Display|Roboto+Condensed" rel="stylesheet">
  436.  
  437.  
  438. <style>
  439. div#qTip {
  440. padding: 3px;
  441. display: none;
  442. text-align: center;
  443. position: absolute;
  444. font-size:7px;
  445. margin-left:10px;
  446. margin-top:-2px;
  447. line-height:9px;
  448. font-family:arial;
  449. z-index: 1000;
  450. border: 1px solid #cacaca;
  451. background-color:#fff;
  452. color: #9b9b9b;
  453. text-transform:uppercase;
  454. letter-spacing: 2px;
  455. }
  456. </style>
  457.  
  458.  
  459.  
  460.  
  461. <style type="text/css">
  462.  
  463.  
  464. .popup_block{
  465. display:none;
  466. background: url('http://static.tumblr.com/zma9h5a/N6Gp05763/bg.png');
  467. padding:20px;
  468. float:left;
  469. opacity: 100;
  470.  
  471. position:fixed;
  472. top:50%;left:50%;
  473. z-index: 99999;
  474. }
  475.  
  476. *html #fade {position: absolute;}
  477. *html .popup_block {position: absolute;}
  478. #fade {
  479. display:none;
  480. position:fixed;
  481. left:0px;
  482. top:0px;
  483. width:100%;
  484. height:100%;
  485. z-index:9999;
  486. background:#000; /* change to #fff for solid white */
  487. opacity:0.5; /* change to opacity:1; */
  488.  
  489. }
  490.  
  491.  
  492. iframe#tumblr_controls {
  493. white-space:nowrap;
  494. -webkit-filter: invert(100%);
  495. -moz-filter: invert(100%);
  496. -o-filter: invert(100%);
  497. -ms-filter: invert(100%);
  498. filter: invert(100%);
  499. opacity:.2;transition: .8s ease-in-out;
  500. -webkit-transition: .8s ease-in-out;
  501. -moz-transition: .8s ease-in-out;
  502. -o-transition: .8s ease-in-out;
  503. }
  504.  
  505. /*----- POST IMAGES -----*/
  506.  
  507.  
  508. img {
  509. max-width: 100%;
  510. height: auto;
  511. border:0px solid #dec884;
  512. }
  513.  
  514.  
  515. pre {
  516. white-space: pre-wrap; / css-3 /
  517. white-space: -moz-pre-wrap; / Mozilla, since 1999 /
  518. white-space: -pre-wrap; / Opera 4-6 /
  519. white-space: -o-pre-wrap; / Opera 7 /
  520. word-wrap: break-word; / Internet Explorer 5.5+ /
  521. }
  522.  
  523.  
  524.  
  525. /*----- IMP -----*/
  526.  
  527. .popup_block{
  528. display:none;
  529. background: url('');
  530. padding:20px;
  531. float:left;
  532.  
  533. position:fixed;
  534. top:50%;left:50%;
  535. z-index: 99999;
  536. }
  537.  
  538. *html #fade {position: absolute;}
  539. *html .popup_block {position: absolute;}
  540. #fade {
  541. display:none;
  542. position:fixed;
  543. left:0px;
  544. top:0px;
  545. width:100%;
  546. height:100%;
  547. z-index:9999;
  548. background:#000; /* change to #fff for solid white */
  549. opacity:0.5; /* change to opacity:1; */
  550.  
  551. }
  552.  
  553.  
  554.  
  555. /*----- dedede BAR -----*/
  556.  
  557. ::-webkit-scrollbar-thumb {
  558. height: 12px;
  559. border: 1px solid #b29aa7;
  560. background: url('') #;
  561. background-color: #b29aa7;
  562. }
  563. ::-webkit-scrollbar {
  564. width: 8px;
  565. height: 7px;
  566. border-left: 5px solid #f3f3f3;
  567. border-right: 5px solid #f3f3f3;
  568. border-top: 2px solid #f3f3f3;
  569. border-bottom: 2px solid #f3f3f3;
  570. background: #f3f3f3;
  571. }
  572.  
  573. /*----- MAIN CONTENT -----*/
  574.  
  575.  
  576. body {
  577. background: url('https://static.tumblr.com/zma9h5a/Ufcpc30m0/yunatheme_copy.png') #eeeae8;
  578. background-position: top-right;
  579. background-repeat: no-repeat;/
  580. background-attachment: absolute;
  581. margin:0px;
  582. color: #615f59;
  583. letter-spacing: 0px;
  584. font-family: 'IBM Plex Sans Condensed', sans-serif;
  585. font-size:13px;
  586. line-height:100%;
  587. height: 1000px;
  588. overflow-x: hidden;
  589. }
  590.  
  591. body, a, a:hover { cursor:url( https://78.media.tumblr.com/e7f72e808c4dbe5006b9c3a30dbc9b79/tumblr_inline_mh67vhwGnR1rdqsqf.png ), auto; }
  592.  
  593. /*----- TEXT DETAILS -----*/
  594.  
  595. b,strong {
  596. color: #777d8e;
  597. text-shadow:0px 0px #fff;
  598. text-transform:UPPERCASE;
  599. font-family: 'Abel', sans-serif;
  600. letter-spacing: 1px;
  601. font-size:10px;}
  602.  
  603.  
  604. i,em {
  605. color:#b29aa7;
  606. font-family: 'IBM Plex Serif', serif;
  607. text-transform: none;
  608. font-size:13px;}
  609.  
  610.  
  611. h1 {
  612. font-weight:normal;
  613. font-size:15px;
  614. font-family: 'Playfair Display', serif;
  615. text-align:center;
  616. text-transform:uppercase;
  617. font-style:bold;
  618. line-height:100%;
  619. letter-spacing:1px;
  620. color:#6384b0;
  621.  
  622.  
  623. }
  624.  
  625. a {
  626. text-decoration:none;
  627. outline:none;
  628. -moz-outline-style:none;
  629. color:#b6cfd8;
  630. -moz-transition-duration:0.5s;
  631. -webkit-transition-duration:0.5s;
  632. -o-transition-duration:0.5s;
  633. }
  634.  
  635. a:hover {
  636. text-decoration:none;
  637. outline:none;
  638. -moz-outline-style:none;
  639. color:#b6cfd8;
  640. }
  641.  
  642. /*----- REBLOG -----*/
  643.  
  644. blockquote {
  645. padding-left:5px;
  646. border-left:1px dashed ;
  647. border-right:1px dashed ;
  648. border-color: #b29aa7;
  649. border-radius: 15px;
  650. margin:7px;
  651. background-color: #f2ecf1;
  652. padding:5px;
  653. }
  654.  
  655.  
  656. #post {
  657. width:400px;
  658. padding-bottom:0px;
  659. margin-top:0px;
  660. }
  661. #post a{
  662. color: #000;
  663. text-shadow:0px 0px #000;
  664. letter-spacing:2px;
  665. text-transform:uppercase;
  666. font-family: 'Abel', sans-serif;
  667. font-size: 9px;
  668.  
  669.  
  670. }
  671. #post:hover .tags{
  672. opacity:1;
  673. -moz-transition-duration:0.5s;
  674. -webkit-transition-duration:0.5s;
  675. -o-transition-duration:0.5s;
  676. }
  677.  
  678.  
  679. #tags {
  680. font-family: 'IBM Plex Sans Condensed', sans-serif;
  681. margin-left:10px;
  682. width:350px;
  683. text-transform:normal;
  684. line-height:120%;
  685. font-size:10px;
  686. text-align:left;
  687. padding-top:5px;
  688. padding:10px;
  689. background-color: #f6f6f6;
  690. border-radius: 15px;
  691. border-left: 2px solid #b29aa7;
  692. border-right: 2px solid #b29aa7;
  693. -moz-transition-duration:0.2s;
  694. -webkit-transition-duration:0.2s;
  695. -o-transition-duration:0.2s;
  696. text-align:center;
  697. }
  698.  
  699. #tags a{
  700. font-family: 'IBM Plex Sans Condensed', sans-serif;
  701. color:#9aaab2;
  702. -moz-transition-duration:0.2s;
  703. -webkit-transition-duration:0.2s;
  704. -o-transition-duration:0.2s;
  705. }
  706.  
  707. #tags a:hover{
  708. color:#446170;
  709. -moz-transition-duration:0.2s;
  710. -webkit-transition-duration:0.2s;
  711. -o-transition-duration:0.2s;
  712. }
  713.  
  714.  
  715. /*----- SIDE CONTENT-----*/
  716.  
  717. #sidebar {
  718. color: #777;
  719. position:absolute;
  720. width:100px;
  721. height:auto;
  722. margin-top:-170px;
  723. margin-left:465px;
  724. text-align:left;
  725. }
  726.  
  727. #description {
  728. position:absolute;
  729. width:175px;
  730. font-family: 'Open Sans', sans-serif;
  731. margin-top:625px;
  732. margin-left:150px;
  733. text-align:center;
  734. font-size:10px;
  735. color: #939090;
  736. text-shadow:1px 1px #000;
  737. letter-spacing:0px;
  738. line-height:130%;
  739. -moz-transition-duration:1s;
  740. -webkit-transition-duration:1s;
  741. -o-transition-duration:1s;
  742. }
  743.  
  744. #description a {
  745. color: #aca09f;
  746. }
  747.  
  748. #description a:hover {
  749. color:#b6cfd8;
  750. }
  751.  
  752. #navi {
  753. background-color: #;
  754. position:absolute;
  755. width:150px;
  756. padding-bottom: 8px;
  757. font-family: 'Old Standard TT', serif;
  758. text-transform: uppercase;
  759. margin-top: 461px;
  760. margin-left: -395px;
  761. text-align:center;
  762. font-size:8px;
  763. color: #794568;
  764. letter-spacing:1px;
  765. line-height:130%;
  766. -moz-transition-duration:1s;
  767. -webkit-transition-duration:1s;
  768. -o-transition-duration:1s;
  769. }
  770.  
  771. #navi a {
  772. color: #000;
  773. letter-spacing:2px;
  774.  
  775. }
  776.  
  777.  
  778. #navi a:hover {
  779. color:#bdc3ca;
  780. letter-spacing:3px;
  781. text-shadow:0px 0px #f2e3e3;
  782. }
  783.  
  784. #navi2 {
  785. background-color: #;
  786. position:absolute;
  787. width:130px;
  788. font-family: 'Francois One', sans-serif;
  789. text-transform: uppercase;
  790. margin-top:915px;
  791. margin-left: 740px;
  792. letter-spacing:3px;
  793. text-align:center;
  794. font-size:10px;
  795. color: #a18f7d;
  796. letter-spacing:0px;
  797. line-height:130%;
  798. -moz-transition-duration:1s;
  799. -webkit-transition-duration:1s;
  800. -o-transition-duration:1s;
  801. }
  802.  
  803. #navi2 a {
  804. color: #e68fa1;
  805. text-shadow:1px 1px #fff;
  806.  
  807. }
  808.  
  809.  
  810. #navi2 a:hover {
  811. color:#dc5555;
  812. text-shadow: 0 0 0.2em #5fd3e8;
  813. }
  814.  
  815. #mains {
  816. background-color: #;
  817. position:absolute;
  818. width:190px;
  819. font-family: 'IBM Plex Sans Condensed', sans-serif;
  820. text-transform: NONE;
  821. margin-top:330px;
  822. margin-left:-190px;
  823. text-align:none;
  824. font-size:9px;
  825. color: #666262;
  826. letter-spacing: 0.3px;
  827. overflow-y:hidden;
  828. overflow-x:hidden;
  829. letter-spacing:0px;
  830. line-height:100%;
  831. -moz-transition-duration:1s;
  832. -webkit-transition-duration:1s;
  833. -o-transition-duration:1s;
  834. }
  835.  
  836. .sfm input {background-color: #fff;
  837. font-size: 9px;
  838. border: 1px solid;
  839. border-color: #cebec9;
  840. text-transform: uppercase;
  841. margin-top: 0px;
  842. color: #999;
  843. letter-spacing: 1px;
  844. padding: 4px 8px;
  845. font-family: calibri, helvetica, arial;}
  846.  
  847.  
  848. #mains a {
  849. color: #fff;
  850. }
  851.  
  852. #mains a:hover {
  853. color:#ffffff;
  854. }
  855.  
  856. #textbox {
  857. background-color: #;
  858. position:absolute;
  859. width:215px;
  860. font-family: 'IBM Plex Sans Condensed', sans-serif;
  861. text-transform: NONE;
  862. margin-top:667px;
  863. margin-left: 503px;
  864. text-align:none;
  865. font-size:9px;
  866. color: #615f59;
  867. letter-spacing: 0.3px;
  868. overflow-y:hidden;
  869. overflow-x:hidden;
  870. letter-spacing:0px;
  871. line-height:100%;
  872. -moz-transition-duration:1s;
  873. -webkit-transition-duration:1s;
  874. -o-transition-duration:1s;
  875. }
  876.  
  877. #textbox a {
  878. color: #000;
  879. }
  880.  
  881. #textbox a:hover {
  882. color:#ffffff;
  883. }
  884.  
  885.  
  886.  
  887. #links {
  888. position:relative;
  889. font-family:georgia;
  890. width:450px;
  891. margin-top:385px;
  892. z-index:-1;
  893. margin-left:270px;
  894. display:inline-block;
  895. font-size:18px;
  896. font-style:none;
  897. letter-spacing:1px;
  898. text-align:left;
  899. line-height:280%;
  900. text-transform: lowercase;
  901. -webkit-transition: all .4s linear;
  902. }
  903.  
  904. #links a{
  905. position: static;
  906. line-height:300%;
  907. margin-top:1px;
  908. margin-left:14px;
  909. width:60px;
  910. margin-bottom:4px;
  911. border-bottom:0px solid #0a141c;
  912. color: #6d5e60;
  913. text-shadow:1px 1px #9b8f86;
  914. -moz-transition-duration:.2s;
  915. -webkit-transition-duration:.2s;
  916. -o-transition-duration:.2s;
  917. }
  918.  
  919. #links a:hover {
  920. width:60px;
  921. color: #d1cfbc;
  922. -moz-transition-duration:0.2s;
  923. -webkit-transition-duration:0.2s;
  924. -o-transition-duration:0.2s;
  925. }
  926.  
  927.  
  928. #pagination {
  929. font-family:georgia;
  930. position:absolute;
  931. width:210px;
  932. font-size:25px;
  933. margin-top: 260px;
  934. margin-left: -300px;
  935. padding-left:500px;
  936. letter-spacing:1px;
  937. text-align:center;
  938. }
  939.  
  940. #pagination a {
  941. color:#000;
  942. text-shadow:1px 1px #fff;
  943. }
  944.  
  945. #pagination a:hover {
  946. color:#5e5952;
  947. }
  948.  
  949. /*----- POST CONTENT -----*/
  950.  
  951.  
  952. #entries {
  953. background: ;
  954. opacity: 100;
  955. padding: 10px;
  956. width: 400px;
  957. margin-left:242px;
  958. margin-top:320px;
  959. margin-bottom: 50px;
  960. height:515px;
  961. overflow-x: hidden;
  962. overflow-y: auto;
  963. position: absolute;
  964. -moz-transition-duration: 0.8s;
  965. -webkit-transition-duration: 0.8s;
  966. -o-transition-duration: 0.8s;
  967. }
  968.  
  969. #post img{
  970. float:left;
  971. margin-right:10px;
  972. margin-bottom:10px;
  973. }
  974.  
  975. #wrap img {
  976. padding-right:3px;
  977. padding-bottom:3px;
  978.  
  979. float:left;
  980. margin-right:14px;
  981.  
  982.  
  983. padding:8px;
  984. border:1px solid #151515;
  985. }
  986.  
  987.  
  988. ::selection {
  989. background: #e4d0e1; /* WebKit/Blink Browsers */
  990. }
  991. ::-moz-selection {
  992. background: #e4d0e1; /* Gecko Browsers */
  993. }
  994.  
  995.  
  996. #headers{
  997. width:128px;
  998. height:auto;
  999. color: #7f8fa0;
  1000. text-shadow:1px 1px #fff;
  1001. padding:10px;
  1002. font-size:7px;
  1003. font-weight:bold;
  1004. letter-spacing:3px;
  1005. line-height:100%;
  1006. text-transform:uppercase;
  1007. background: url('');
  1008. background-color: #d9cadc;
  1009. border-left:1px dashed #cad2dc;
  1010. border-right:1px dashed #cad2dc;
  1011. text-align:center;
  1012. }
  1013.  
  1014. #headers2{
  1015. width:385px;
  1016. height:28px;
  1017. color: #fff;
  1018. padding:10px;
  1019. font-size:8px;
  1020. font-weight:bold;
  1021. letter-spacing:3px;
  1022. line-height:100%;
  1023. text-transform:uppercase;
  1024. background: url('https://static.tumblr.com/zma9h5a/msRp9gi41/head.png');
  1025. background-color: #fff;
  1026. border:0px solid #fff;
  1027. text-align:center;
  1028. }
  1029.  
  1030.  
  1031. #info {
  1032. background: url("");
  1033. background-color: #f6f6f6;
  1034. border:0px solid #fff;
  1035. font-family: 'Playfair Display', serif;
  1036. width:380px;
  1037. margin-top:5px;
  1038. margin-left:10px;
  1039. margin-bottom: 15px;
  1040. padding-bottom:140px;
  1041. font-size:9px;
  1042. background:#;
  1043. padding:4px;
  1044. color: #726572;
  1045. text-transform:uppercase;
  1046. font-style:bold;
  1047. text-align:left;
  1048. -moz-transition-duration:0.5s;
  1049. -webkit-transition-duration:0.5s;
  1050. -o-transition-duration:0.5s;
  1051. }
  1052.  
  1053. #info a {
  1054. color:#395863;
  1055. font-style:normal;
  1056. font-size:9px;
  1057. font-family: 'Playfair Display', serif;
  1058.  
  1059. }
  1060.  
  1061. #info a:hover {
  1062. color:#4b3832;
  1063. }
  1064.  
  1065. .quote {
  1066. font-size:11px;
  1067. font-family:georgia;
  1068. font-style:normal;
  1069. line-height:17px;
  1070. margin-bottom:15px;
  1071. text-transform:normal;
  1072. text-align:left;
  1073. font-weight:normal;
  1074. font-style:none;
  1075. color:#fff;
  1076. text-shadow:1px 1px #000;
  1077. }
  1078.  
  1079. #ask {
  1080. float:left;
  1081. color:#83786e;
  1082. padding: 5px;
  1083.  
  1084. }
  1085. #ask_bg{
  1086. padding: 5px;
  1087. background: url(HERE);
  1088. background-color: transparent;
  1089. height: auto;
  1090. width: 390px;
  1091. font-family: 'IBM Plex Sans Condensed', sans-serif;
  1092. font-size: 11px;
  1093. color: #83786e;
  1094. border:0px dashed #0a0f12;
  1095. }
  1096.  
  1097.  
  1098. /*----- BOTTOM IMAGE -----*/
  1099.  
  1100. #corner {
  1101. font-size:9px;
  1102. font-family:cambria;
  1103. font-style:italic;
  1104. letter-spacing:1px;
  1105. -moz-transition-duration:0.5s;
  1106. -webkit-transition-duration:0.5s;
  1107. -o-transition-duration:0.5s;
  1108. }
  1109.  
  1110. #corner a {
  1111. background-color:transparent;
  1112. position:fixed;
  1113. right:15px;
  1114. bottom:10px
  1115. }
  1116.  
  1117.  
  1118.  
  1119. #cornerplayer
  1120. {z-index:999;
  1121. background-color:transparent;
  1122. width:30px;
  1123. height:50px;
  1124. border-radius:0px 0px 0px 0px;
  1125. -moz-border-radius:0px 50px 0px 0px;
  1126. position:fixed;
  1127. overflow:hidden;
  1128. bottom:0px;
  1129. right:0px;
  1130. -webkit-transition: opacity 0.8s linear;-webkit-transition: all 0.8s ease-in-out;-moz-transition: all 0.8s ease-in-out;-o-transition: all 0.8s ease-in-out;}
  1131.  
  1132. #cornericon
  1133. {margin-top:15px;
  1134. margin-bottom:20px;
  1135. margin-right:-5px;
  1136. -webkit-transition: opacity 0.8s linear;-webkit-transition: all 0.8s ease-in-out;-moz-transition: all 0.8s ease-in-out;-o-transition: all 0.8s ease-in-out;}
  1137.  
  1138. #cornerplayer:hover
  1139. {width:200px;
  1140. -moz-border-radius:0px;
  1141. border-radius:0px;}
  1142.  
  1143. #cornerplayer:hover #cornericon
  1144. {margin-top:10px;
  1145. margin-left:0px;
  1146. margin-bottom:4px;}
  1147.  
  1148. </style>
  1149. </head>
  1150. <body>
  1151.  
  1152. <!-- Wikplayer https://www.wikplayer.com -->
  1153. <script type="text/javascript" src="https://www.wikplayer.com/code.js"
  1154. data-config="{'skin':'https://static.tumblr.com/s2k8dvk/SNMo9m1ik/nobroken-18-0.css','volume':100,'autoplay':true,'shuffle':true,'repeat':0,'showcomment':false,'marqueetexton':true,'placement':'mini','showplaylist':false,'playlist':[{'title':'','url':'https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DA5BzGwUqGzk'}]}" ></script>
  1155. <!-- Wikplayer code end -->
  1156.  
  1157.  
  1158.  
  1159. <div id='cornerplayer' style="text-align:center;">
  1160.  
  1161. <!--<div>
  1162.  
  1163. <div> </div>-->
  1164.  
  1165. </div><!--cornerplayer-->
  1166.  
  1167.  
  1168. <div id="sidebar">
  1169.  
  1170. <div id="sidebarimage">
  1171. <a href="/"><img src="{image:sidebar}"></a></div>
  1172.  
  1173.  
  1174. <div id="textbox">
  1175. <center>
  1176. <h1>yuna theme: </h1>
  1177. This theme was made by <b>Ley</b> @<i>eternalworks</i> & is currently on sale for 18USD. If you are interested in this theme, please send a direct IM. It is currently available to <u>one</u> individual and the live preview will no longer be active after purchased. Thank you & enjoy!
  1178. <br>
  1179. <p>
  1180.  
  1181.  
  1182. </p>
  1183.  
  1184. </div>
  1185.  
  1186.  
  1187.  
  1188. <div id="navi">
  1189.  
  1190. <div id="headers">NAVIGATION</div><p>
  1191.  
  1192. <div style="padding: 2px; background-color: #fff; border:1px solid #e3e3e3; line-height: 1;"><a href="/"> title link </a></div><br>
  1193. <div style="padding: 2px; background-color: #fff; border:1px solid #e3e3e3; line-height: 1;"><a href="/"> title link </a></div><br>
  1194. <div style="padding: 2px; background-color: #fff; border:1px solid #e3e3e3; line-height: 1;"><a href="/"> title link </a></div><br>
  1195. <div style="padding: 2px; background-color: #fff; border:1px solid #e3e3e3; line-height: 1;"><a href="/"> title link </a></div><br>
  1196. <div style="padding: 2px; background-color: #fff; border:1px solid #e3e3e3; line-height: 1;"><a href="/"> title link </a></div><br>
  1197. <div style="padding: 2px; background-color: #fff; border:1px solid #e3e3e3; line-height: 1;"><a href="http://eternalworks.tumblr.com/"> theme </a></div><br>
  1198.  
  1199.  
  1200.  
  1201.  
  1202. </div></div>
  1203. </div></div>
  1204.  
  1205.  
  1206.  
  1207.  
  1208.  
  1209.  
  1210. <div id="description">
  1211.  
  1212. <div id="pagination">
  1213. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"> ←</a>{/block:PreviousPage} &nbsp;&nbsp;&nbsp; {block:NextPage}<a href="{NextPage}"> → </a><br />{/block:NextPage}{/block:Pagination}</div></div>
  1214. </div></div></div>
  1215.  
  1216. <div id="entries">{block:Posts}
  1217.  
  1218.  
  1219.  
  1220. <div id="post">
  1221.  
  1222.  
  1223.  
  1224. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  1225.  
  1226. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1227.  
  1228. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1229.  
  1230. {block:Quote}<big><big>"{Quote}"</big></big>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  1231.  
  1232. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  1233.  
  1234. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}{hw}
  1235.  
  1236. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="65px" align="left">{/block:AlbumArt}<div class="audio">{AudioPlayerGrey}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  1237.  
  1238. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1239.  
  1240. {block:Answer}<div id="ask_bg"><div id="ask"><img src="{AskerPortraitURL-24}" style="margin-left:7px;margin-right:13px;border:1px solid #151d28;padding:2px;"></div> <em>{Asker}:</em><br> "{Question}"<br><br></div>{Answer}{/block:Answer}
  1241.  
  1242.  
  1243. <div id="info">
  1244. {block:Date} <a href="{Permalink}">{TimeAgo}</a>
  1245. {/block:Date} {block:NoteCount}&nbsp; <small>notes</small>:</font> <a href="{Permalink}">{NoteCount}</a> {/block:NoteCount}<div style="float:right;">
  1246.  
  1247. {block:RebloggedFrom}<a title="{ReblogParentName}" href="{ReblogParentURL}"></a> {/block:RebloggedFrom}{block:ContentSource} &nbsp; / &nbsp; <a title="{SourceTitle}" href="{SourceURL}"></a>{/block:ContentSource} {/block:RebloggedFrom} &nbsp; <a href="{ReblogURL}"target="_blank" title="reblog this post"><big> <img src="https://78.media.tumblr.com/tumblr_m230u4hIC11qfamg6.gif"> </font></big> </a> </div>
  1248.  
  1249. </div>
  1250.  
  1251.  
  1252. <div id="tags">
  1253. {block:HasTags}
  1254. {block:Tags}
  1255. #<a href="{TagURL}">{Tag}</a>&nbsp;
  1256. {/block:Tags}
  1257. {/block:HasTags}
  1258. </div>
  1259.  
  1260. {/block:Posts}
  1261.  
  1262.  
  1263. <script>
  1264. $(document).ready(function() {
  1265. $('a.poplight[href^=#]').click(function() {
  1266. var popID = $(this).attr('rel'); //Get Popup Name
  1267. var popURL = $(this).attr('href'); //Get Popup href to define size
  1268. var query= popURL.split('?');
  1269. var dim= query[1].split('&');
  1270. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  1271. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  1272. var popMargTop = ($('#' + popID).height() + 80) / 2;
  1273. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  1274. //Apply Margin to Popup
  1275. $('#' + popID).css({
  1276. 'margin-top' : -popMargTop,
  1277. 'margin-left' : -popMargLeft
  1278. });
  1279. $('body').append('<div id="fade"></div>');
  1280. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade bin the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  1281. return false;
  1282. });
  1283. $('a.close, #fade').live('click', function() {
  1284. $('#fade , .popup_block').fadeOut(function() {
  1285. $('#fade, a.close').remove(); //fade them both out
  1286. });
  1287. return false;
  1288. });
  1289. });
  1290. </script>
  1291.  
  1292. <script type="text/javascript">
  1293. <!--
  1294. function clickIE() {if (document.all) {(message);return false;}}
  1295. function clickNS(e) {if
  1296. (document.layers||(document.getElementById&&!document.all)) {
  1297. if (e.which==2||e.which==3) {(message);return false;}}}
  1298. if (document.layers)
  1299. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  1300. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  1301. document.oncontextmenu=new Function("return false")
  1302. // -->
  1303. </script>
  1304.  
  1305. </body>
  1306. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement