Advertisement
erapop

not mine

Jul 1st, 2016
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 49.41 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.  
  4.  
  5. <!--
  6.  
  7. WINTER'S LADY THEMES
  8. ♛ this code was made by AGIRLINGREY@TUMBLR.
  9. ♛ do not remove credit or claim as your own.
  10.  
  11. -->
  12.  
  13.  
  14.  
  15.  
  16. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  17. <head>
  18.  
  19.  
  20.  
  21. <!--
  22. POP UP SCRIPT
  23. -->
  24.  
  25.  
  26. <script type="text/javascript"
  27. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  28. <script>
  29. $(document).ready(function() {
  30. //
  31. $('a.poplight[href^=#]').click(function() {
  32. var popID = $(this).attr('rel'); //Get Popup Name
  33. var popURL = $(this).attr('href'); //Get Popup href to define size
  34. var query= popURL.split('?');
  35. var dim= query[1].split('&');
  36. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  37. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  38. var popMargTop = ($('#' + popID).height() + 80) / 2;
  39. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  40. //Apply Margin to Popup
  41. $('#' + popID).css({
  42. 'margin-top' : -popMargTop,
  43. 'margin-left' : -popMargLeft
  44. });
  45. $('body').append('<div id="fade"></div>');
  46. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  47. return false;
  48. });
  49. $('a.close, #fade').live('click', function() {
  50. $('#fade , .popup_block').fadeOut(function() {
  51. $('#fade, a.close').remove(); //fade them both out
  52. });
  53. return false;
  54. });
  55. });
  56. </script>
  57.  
  58.  
  59.  
  60. <!--
  61. VERSE TABS SCRIPT
  62. -->
  63.  
  64.  
  65. <script>
  66.  
  67. $(document).ready(function(){
  68. $("ul#tabs li").click(function(e){
  69. if (!$(this).hasClass("active")) {
  70. var tabNum = $(this).index();
  71. var nthChild = tabNum+1;
  72. $("ul#tabs li.active").removeClass("active");
  73. $(this).addClass("active");
  74. $("ul#tab li.active").removeClass("active");
  75. $("ul#tab li:nth-child("+nthChild+")").addClass("active");
  76. }
  77. });
  78. });
  79. </script>
  80.  
  81.  
  82.  
  83.  
  84. <!--
  85. TOOLTIP STYLING SCRIPT
  86. -->
  87.  
  88.  
  89. <link href="http://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  90. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  91. <script src="http://static.tumblr.com/5omyijl/RZtn2yg9v/jquery.style-my-tooltips.js"></script>
  92. <script>
  93. (function($){
  94. $(document).ready(function(){
  95. $("[title]").style_my_tooltips({
  96. tip_follows_cursor:true,
  97. tip_delay_time:200,
  98. tip_fade_speed:500
  99. });
  100. });
  101. })(jQuery);
  102. </script>
  103.  
  104.  
  105.  
  106.  
  107. <!--
  108. BLOBS IN A JAR
  109. -->
  110.  
  111.  
  112. <script type="text/javascript">
  113. // <![CDATA[
  114. var colour="#000"; // what colour are the blobs
  115. var speed=66; // speed of animation, lower is faster
  116. var blobs=10; // how many blobs are in the jar
  117. var charc=String.fromCharCode(9679); // a blob - can be changed to charc='hello' or charc='*' for a different effect
  118.  
  119. /***************************\
  120. * Blobs in a Jar Effect *
  121. *(c)2012-13 mf2fm web-design*
  122. * http://www.mf2fm.com/rv *
  123. * DON'T EDIT BELOW THIS BOX *
  124. \***************************/
  125.  
  126. var div;
  127. var xpos=new Array();
  128. var ypos=new Array();
  129. var zpos=new Array();
  130. var dx=new Array();
  131. var dy=new Array();
  132. var dz=new Array();
  133. var blob=new Array();
  134. var swide=800;
  135. var shigh=600;
  136. var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
  137.  
  138. function addLoadEvent(funky) {
  139. var oldonload=window.onload;
  140. if (typeof(oldonload)!='function') window.onload=funky;
  141. else window.onload=function() {
  142. if (oldonload) oldonload();
  143. funky();
  144. }
  145. }
  146.  
  147. addLoadEvent(fill_the_jar);
  148.  
  149. function fill_the_jar() {
  150. var i, dvs;
  151. div=document.createElement('div');
  152. dvs=div.style;
  153. dvs.position='fixed';
  154. dvs.left='0px';
  155. dvs.top='0px';
  156. dvs.width='1px';
  157. dvs.height='1px';
  158. document.body.appendChild(div);
  159. set_width();
  160. for (i=0; i<blobs; i++) {
  161. add_blob(i);
  162. jamjar(i);
  163. }
  164. }
  165.  
  166. function add_blob(ref) {
  167. var dv, sy;
  168. dv=document.createElement('div');
  169. sy=dv.style;
  170. sy.position='absolute';
  171. sy.textAlign='center';
  172. if (ie_version && ie_version<10) {
  173. sy.fontSize="10px";
  174. sy.width="100px";
  175. sy.height="100px";
  176. sy.paddingTop="40px";
  177. sy.color=colour;
  178. dv.appendChild(document.createTextNode(charc));
  179. }
  180. else if (ie_version) {
  181. sy.fontSize="1px";
  182. sy.width="0px";
  183. sy.height="0px";
  184. }
  185. else {
  186. dv.appendChild(document.createTextNode(charc));
  187. sy.color='rgba(0,0,0,0)';
  188. }
  189. ypos[ref]=Math.floor(shigh*Math.random());
  190. dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  191. xpos[ref]=Math.floor(swide*Math.random());
  192. dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  193. zpos[ref]=Math.random()*20;
  194. dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
  195. blob[ref]=dv;
  196. div.appendChild(blob[ref]);
  197. set_blob(ref);
  198. }
  199.  
  200. function rejig(ref, xy) {
  201. if (xy=='y') {
  202. dx[ref]=(0.5+Math.random())*sign(dx[ref]);
  203. dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
  204. }
  205. else {
  206. dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
  207. dy[ref]=(0.5+Math.random())*sign(dy[ref]);
  208. }
  209. }
  210.  
  211. function sign(a) {
  212. if (a<0) return (-2);
  213. else if (a>0) return (2);
  214. else return (0);
  215. }
  216.  
  217. function set_blob(ref) {
  218. var sy;
  219. sy=blob[ref].style;
  220. sy.top=ypos[ref]+'px';
  221. sy.left=xpos[ref]+'px';
  222. if (ie_version && ie_version<10) {
  223. sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
  224. sy.fontSize=30-zpos[ref]+"px";
  225. }
  226. else if (ie_version) {
  227. sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
  228. }
  229. else {
  230. sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
  231. sy.fontSize=40+zpos[ref]+'px';
  232. }
  233. }
  234.  
  235. function jamjar(ref) {
  236. if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
  237. ypos[ref]+=dy[ref];
  238. if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
  239. xpos[ref]+=dx[ref];
  240. if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
  241. zpos[ref]+=dz[ref];
  242. set_blob(ref);
  243. setTimeout("jamjar("+ref+")", speed);
  244. }
  245.  
  246. window.onresize=set_width;
  247. function set_width() {
  248. var sw_min=999999;
  249. var sh_min=999999;
  250. if (document.documentElement && document.documentElement.clientWidth) {
  251. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  252. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  253. }
  254. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  255. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  256. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  257. }
  258. if (document.body.clientWidth) {
  259. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  260. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  261. }
  262. if (sw_min==999999 || sh_min==999999) {
  263. sw_min=800;
  264. sh_min=600;
  265. }
  266. swide=sw_min;
  267. shigh=sh_min;
  268. }
  269. // ]]>
  270. </script>
  271.  
  272.  
  273.  
  274.  
  275.  
  276. <title>{Title}</title>
  277. <link rel="shortcut icon" href="{Favicon}">
  278. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  279. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  280.  
  281. <meta name="color:background" content="#000000"/>
  282. <meta name="color:text" content="#a1a0a0"/>
  283. <meta name="color:description" content=transparent/>
  284. <meta name="color:link" content="#e0d3ed"/>
  285. <meta name="color:link hover" content="#989898" />
  286. <meta name="color:bold" content="#cdc2f0" />
  287. <meta name="color:italic" content="#ffffff" />
  288. <meta name="color:border" content="#292828" />
  289. <meta name="color:scrollbar" content="#ffffff" />
  290. <meta name="color:postbg" content=transparent />
  291. <meta name="color:blockquote" content="#121212" />
  292. <meta name="color:tags" content="#e0d3ed"/>
  293.  
  294. <meta name="image:background" content=""/>
  295.  
  296. <meta name="text:link 1" content="link 1"/>
  297. <meta name="text:link 1 url" content="/"/>
  298. <meta name="text:link 2" content="link 2"/>
  299. <meta name="text:link 2 url" content="/"/>
  300. <meta name="text:link 3" content="link 3"/>
  301. <meta name="text:link 3 url" content="/"/>
  302. <meta name="text:link 4" content="link 4"/>
  303. <meta name="text:link 4 url" content="/"/>
  304. <meta name="text:link 5" content="link 5"/>
  305. <meta name="text:link 5 url" content="/"/>
  306. <meta name="text:link 6" content="link 6"/>
  307. <meta name="text:link 6 url" content="/"/>
  308. <meta name="text:link 7" content="link 7"/>
  309. <meta name="text:link 7 url" content="/"/>
  310. <meta name="text:link 8" content="link 8"/>
  311. <meta name="text:link 8 url" content="/"/>
  312.  
  313. <meta name="if:tinycursor" content="1"/>
  314. <meta name="if:greyscale" content="0"/>
  315. <meta name="text:text size" content="12px" />
  316. <meta name="if:showsubmit" content="0"/>
  317.  
  318. <meta name="color:updates bar" content="#070707"/>
  319. <meta name="image:Updates" content=""/>
  320. <meta name="image:thekey" content=""/>
  321.  
  322.  
  323.  
  324. <!--
  325. CUSTOM FONTS
  326. -->
  327.  
  328.  
  329. <link href='https://fonts.googleapis.com/css?family=Playfair+Display' rel='stylesheet' type='text/css'>
  330.  
  331. <link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
  332.  
  333. <link href='https://fonts.googleapis.com/css?family=Arizonia' rel='stylesheet' type='text/css'>
  334.  
  335. <link href='https://fonts.googleapis.com/css?family=Roboto+Condensed' rel='stylesheet' type='text/css'>
  336.  
  337.  
  338. <style type="text/css">
  339.  
  340.  
  341.  
  342. /* the hover update thing */
  343.  
  344.  
  345.  
  346. #bite
  347. #bite a{
  348. display:block
  349. }
  350. #bite .death {
  351. margin-top:0px;filter: alpha(opacity = 1.0);
  352. opacity:1.0;-webkit-transition: all 0.5s ease-out;
  353. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  354. }
  355.  
  356. #bite:hover .death {
  357. margin-top:0px;
  358. -webkit-transition: all 0.8s ease-out;
  359. -moz-transition: all 0.8s ease-out;
  360. transition: all 0.8s ease-out;
  361. filter: alpha(opacity = 100);
  362. filter: alpha(opacity = 100);
  363. opacity:100;
  364. }
  365.  
  366.  
  367. /* selection font and background */
  368.  
  369.  
  370. ::selection {
  371. background: #444;
  372. color:#fff; }
  373.  
  374.  
  375. ::-moz-selection {
  376. background: #444;
  377. color:#fff; }
  378.  
  379.  
  380.  
  381. /* scrollbar details */
  382.  
  383.  
  384.  
  385. ::-webkit-scrollbar {
  386. height: 0px;
  387. width: 2px;
  388. background:transparent;
  389. border-left:0px solid transparent;
  390. border-right:0px solid transparent;}
  391.  
  392.  
  393. ::-webkit-scrollbar-thumb {
  394. background:transparent;}
  395.  
  396.  
  397.  
  398.  
  399.  
  400. /* the cursor */
  401.  
  402.  
  403. {block:iftinycursor}
  404. body, a, a:hover{
  405. cursor: url('http://media.tumblr.com/28e8e2c9c0a422c5fb73ea368b58b529/tumblr_inline_mv7k3cbC5e1qmxe8x.png'), progress;}
  406. {/block:iftinycursor}
  407.  
  408. iframe#tumblr_controls {
  409. right:3px !important;
  410. position: fixed !important;
  411. -webkit-transition: opacity 0.7s
  412. linear;opacity: 0.2;
  413. -webkit-transition: all 0.8s ease-out;
  414. -moz-transition: all 0.8s ease-out;
  415. transition: all 0.8s ease-out;}
  416.  
  417. iframe#tumblr_controls:hover{
  418. -webkit-transition: opacity 0.7s linear;
  419. opacity: 1;
  420. -webkit-transition: all 0.4s ease-out;
  421. -moz-transition: all 0.4s ease-out;
  422. transition: all 0.4s ease-out;}
  423.  
  424.  
  425.  
  426. /* general look & background */
  427.  
  428.  
  429. body {
  430. background:#727272;
  431. background-image:url('http://static.tumblr.com/ps5brib/hwWo9nmqm/shagster.png');
  432. background-attachment: fixed;
  433. background-repeat: no-repeat;
  434. background-position: left top;
  435. color:#272727;
  436. font-family: calibri;
  437. text-align:justify;
  438. font-size: 10px;
  439. letter-spacing:1px;
  440. line-height:135%;
  441.  
  442. }
  443.  
  444.  
  445.  
  446. /* the verses tabs */
  447.  
  448.  
  449. ul#tabs {
  450. list-style-type: none;
  451. padding: 0;
  452. text-align: center;
  453. font-size:8px;
  454. letter-spacing:1px;
  455. }
  456.  
  457. ul#tabs li {
  458. display: inline-block;
  459. background-color: transparent;
  460. border: solid 0px #262626;
  461. padding: 4px 12px;
  462. margin-bottom: 4px;
  463. color: #1b1b1b;
  464. cursor: pointer;
  465. }
  466.  
  467. ul#tabs li:hover {
  468. background-color: #b0b0b0;
  469. }
  470.  
  471. ul#tabs li.active {
  472. background-color: #0f0f0f;
  473. background-image:url('https://67.media.tumblr.com/300286f213a8d26a130bfac248803dd5/tumblr_o9e71aSClH1ud4mdwo2_400.png');
  474. border: 1px solid #9b9b9b;
  475. }
  476.  
  477. ul#tab {
  478. list-style-type: none;
  479. margin: 0;
  480. padding: 0;
  481. }
  482.  
  483. ul#tab li {
  484. display: none;
  485. }
  486.  
  487. ul#tab li.active {
  488. display: block;
  489. }
  490.  
  491.  
  492.  
  493.  
  494. /* back to general look & details */
  495.  
  496.  
  497. a:link, a:active, a:visited {
  498. text-decoration: none;
  499. color: #d1d1d1;
  500. -moz-transition-duration:.6s;
  501. -webkit-transition-duration:.6s;
  502. -o-transition-duration:.6s;
  503. -webkit-filter: blur(0px);}
  504.  
  505. a:hover {
  506. color: #8f8f8f;
  507. -moz-transition-duration:.6s;
  508. -webkit-transition-duration:.6s;
  509. -o-transition-duration:.6s;
  510. -webkit-filter: blur(1px);}
  511.  
  512.  
  513.  
  514. h1 {
  515. background-color: transparent;
  516. font-family: 'Montserrat', sans-serif;
  517. font-size: 16px;
  518. line-height: 20px;
  519. letter-spacing: 2px;
  520. text-align: center;
  521. text-transform:uppercase;
  522. color: #d1d1d1;
  523. }
  524.  
  525.  
  526. h2 {
  527. background-color: transparent;
  528. font-family: 'Montserrat', sans-serif;
  529. font-size: 15px;
  530. line-height: 16px;
  531. letter-spacing: 2px;
  532. text-align: left;
  533. text-transform:uppercase;
  534. color: #d1d1d1;
  535. }
  536.  
  537.  
  538.  
  539. h3 {
  540. background-color: transparent;
  541. background-image:url("https://67.media.tumblr.com/a2fa09ecadb8f385a6a0dcb6048871f0/tumblr_o9e71aSClH1ud4mdwo1_400.gif");
  542. border:1px dotted #9b9b9b;
  543. font-family: arial;
  544. font-weight:bold;
  545. color: #d1d1d1;
  546. text-shadow:0px 0px 2px #2c2f34;
  547. font-size: 10px;
  548. line-height: 12px;
  549. letter-spacing: 2px;
  550. text-align: center;
  551. text-transform:uppercase;
  552. padding:1px;
  553. line-height:120%;}
  554.  
  555.  
  556.  
  557. quotetext {
  558. background-color: transparent;
  559. font-family: times;
  560. font-size: 14px;
  561. line-height: 20px;
  562. letter-spacing: 2px;
  563. text-align: center;
  564. text-transform:uppercase;
  565. color: #dadada;
  566. }
  567.  
  568.  
  569.  
  570. blockquote {
  571. word-wrap: break-word;
  572. padding:2px 7px;
  573. margin:3px 0 3px 10px;
  574. border-left:1px solid {color:border};
  575. background-color:transparent;}
  576.  
  577.  
  578. blockquote img{
  579. max-width:100%;
  580. height:auto;
  581. }
  582.  
  583. blockquote blockquote img{
  584. max-width:100%;
  585. height:auto;
  586. }
  587.  
  588.  
  589.  
  590.  
  591.  
  592.  
  593.  
  594. b, bold {
  595. font-size:10px;
  596. text-transform:uppercase;
  597. letter-spacing:1px;
  598. font-family: times;
  599. color: #3d3d3d;
  600. text-shadow:1px 1px 0 #343434;
  601. }
  602.  
  603.  
  604. i, italic {
  605. font-size:12px;
  606. color: #b8b8b8;
  607. font-family: 'Roboto Condensed', sans-serif;
  608. text-shadow: 0px 0px 2px #5a5a5a;
  609. letter-spacing:1px;
  610. text-transform:lowercase;
  611. }
  612.  
  613.  
  614.  
  615. p {
  616. margin-top:5px;
  617. margin-bottom:5px;}
  618.  
  619.  
  620. ol {
  621. list-style:normal;}
  622.  
  623.  
  624. ul {
  625. list-style:square;}
  626.  
  627.  
  628. small {
  629. font-size:10px}
  630.  
  631.  
  632. sup,sub {
  633. font-size:11px}
  634.  
  635.  
  636. pre {
  637. font-size: 10px;
  638. letter-spacing:3px;
  639. background-color:#7f7f7f;
  640. font-family: "Times New Roman", Times, serif;
  641. font-style: none;
  642. text-align:center;
  643. }
  644.  
  645.  
  646.  
  647. big {
  648. font-size:14px;
  649. text-transform:uppercase;
  650. letter-spacing:2px;
  651. font-family: "Times New Roman", Times, serif;
  652. color: #b8b8b8;
  653. text-shadow: 0px 0px 2px #383838;
  654. }
  655.  
  656.  
  657.  
  658. {block:IfGreyscale}
  659.  
  660. img {
  661. -webkit-filter:grayscale(100%);
  662. -webkit-transition: all 0.9s ease-in-out;
  663. -moz-transition: all 0.9s ease-in-out;
  664. -o-transition: all 0.9s ease-in-out;
  665. -ms-transition: all 0.9s ease-in-out;
  666. transition: all 0.9s ease-in-out;}
  667.  
  668. img:hover {
  669. -webkit-filter:none;}
  670.  
  671. .html_photoset {
  672. -webkit-filter: grayscale(100%);
  673. -webkit-transition: all 0.9s ease-in-out;
  674. -moz-transition: all 0.9s ease-in-out;
  675. -o-transition: all 0.9s ease-in-out;
  676. -ms-transition: all 0.9s ease-in-out;
  677. transition: all 0.9s ease-in-out;}
  678.  
  679. .html_photoset:hover {
  680. -webkit-filter: none;}
  681.  
  682. {/block:IfGreyscale}
  683.  
  684.  
  685.  
  686. #pcontainer {
  687. background-color:transparent;
  688. width:240px;
  689. height:260px;
  690. padding: 20px;
  691. top:300px;
  692. margin-left: 180px;
  693. position:relative;
  694. overflow-y:scroll;
  695. overflow-x:hidden;
  696. -webkit-mask-image: -webkit-gradient(
  697. linear, center 75%, center bottom,
  698. from(rgba(0,0,0,20)),
  699. to(rgba(20,0,0,0)));
  700. border:1px solid transparent;}
  701.  
  702.  
  703.  
  704. #pcontainer img {
  705. height: auto;
  706. max-width:100%;
  707. }
  708.  
  709.  
  710.  
  711. #content {
  712. margin-left:62px;
  713. width:310px;
  714. margin-top: -100px;
  715. }
  716.  
  717.  
  718. #posts {
  719. width:250px;
  720. padding:10px;
  721. margin-left: 420px;
  722. margin-top: 224px
  723. padding-bottom:0px;}
  724.  
  725.  
  726.  
  727. #sidebar {
  728. margin-left: 1590px;
  729. line-height:15px;
  730. width: 180px;
  731. position: fixed;
  732. top: 200px;
  733. text-align: center; }
  734.  
  735.  
  736. #sidebar img {
  737. width:150px;
  738. padding-top:10px;
  739. padding-bottom:10px;}
  740.  
  741.  
  742. #description {
  743. margin-left: 0px;
  744. margin-top: -50px;
  745. width:180px;
  746. color:transparent;}
  747.  
  748.  
  749.  
  750. #actualnews {
  751. font-family: calibri;
  752. font-size:10px;
  753. text-align:justify;
  754. background:transparent;
  755. color: #272727;
  756. width:150px;
  757. padding-top:3px;
  758. border:0px solid #131313;
  759. margin-left: 743px;
  760. margin-top: 10px;
  761. position: scroll;
  762. -webkit-filter: blur(2px);
  763. -webkit-transition: 0.8s ease-in;
  764. -moz-transition: 1s ease-in;
  765. transition: 1s ease-in;
  766. opacity:1.5;
  767. -webkit-transition: all 0.6s ease-in-out;
  768. -moz-transition: all 0.6s ease-in-out;
  769. -o-transition: all 0.6s ease-in-out;
  770. -ms-transition: all 0.6s ease-in-out;
  771. transition: all 0.6s ease-in-out;
  772. }
  773.  
  774.  
  775.  
  776. #actualnews:hover {
  777. -webkit-filter:none;
  778. -webkit-transition: all 0.6s ease-in-out;
  779. opacity:1;
  780. -webkit-transition: all 0.6s ease-in-out;
  781. -moz-transition: all 0.6s ease-in-out;
  782. -o-transition: all 0.6s ease-in-out;
  783. -ms-transition: all 0.6s ease-in-out;
  784. transition: all 0.6s ease-in-out;
  785. }
  786.  
  787.  
  788.  
  789. #thekey {
  790. position: fixed;
  791. color:#7c7470;
  792. text-shadow: 0px 0px 2px #fff;
  793. margin-top:175px;
  794. margin-left:55px;
  795. width:710px;
  796. padding:9px;
  797. letter-spacing:2px;
  798. word-spacing:5px; /*this defines the separation of each word of the links*/
  799. font-family: helvetica;
  800. font-size:12px;
  801. text-align:center;
  802. background:transparent;
  803. text-transform:uppercase;
  804. -webkit-transform: rotate(-90deg);
  805. -moz-transform: rotate(-90deg);
  806. -o-transform: rotate(-90deg);
  807. }
  808.  
  809.  
  810.  
  811.  
  812. /* JUMBLED LINKS */
  813.  
  814.  
  815.  
  816. .alinks {
  817. position:fixed;
  818. text-shadow: 0px 0px 0px #000;
  819. left:710px;
  820. top:320px;
  821. transform: rotate(-90deg);
  822. font-family: 'Montserrat', sans-serif;
  823. font-size: 40px;}
  824.  
  825.  
  826. .alinks a {
  827. padding:10px;
  828. color:#2a2a2a;
  829. margin-right:0px;
  830. -webkit-filter: blur(0px);
  831. -webkit-transition: 0.8s ease-in;
  832. -moz-transition: 1s ease-in;
  833. transition: 1s ease-in;
  834. }
  835.  
  836. .alinks a:hover {
  837. -webkit-transition: all 0.6s ease-in-out;
  838. -moz-transition: all 0.6s ease-in-out;
  839. -o-transition: all 0.6s ease-in-out;
  840. -ms-transition: all 0.6s ease-in-out;
  841. transition: all 0.6s ease-in-out;
  842. color: #727272;
  843. text-shadow: 7px 7px 3px #000;
  844. }
  845.  
  846.  
  847.  
  848.  
  849. .blinks {
  850. position:fixed;
  851. text-shadow: 0px 0px 0px #000;
  852. left:710px;
  853. top:350px;
  854. transform: rotate(-90deg);
  855. font-family: 'Montserrat', sans-serif;
  856. font-size: 40px;}
  857.  
  858.  
  859. .blinks a {
  860. padding:10px;
  861. color:#2a2a2a;
  862. margin-right:0px;
  863. -webkit-filter: blur(0px);
  864. -webkit-transition: 0.8s ease-in;
  865. -moz-transition: 1s ease-in;
  866. transition: 1s ease-in;
  867. }
  868.  
  869. .blinks a:hover {
  870. -webkit-transition: all 0.6s ease-in-out;
  871. -moz-transition: all 0.6s ease-in-out;
  872. -o-transition: all 0.6s ease-in-out;
  873. -ms-transition: all 0.6s ease-in-out;
  874. transition: all 0.6s ease-in-out;
  875. color: #727272;
  876. text-shadow: 7px 7px 3px #000;
  877. }
  878.  
  879.  
  880.  
  881.  
  882. .clinks {
  883. position:fixed;
  884. text-shadow: 0px 0px 0px #000;
  885. left:710px;
  886. top:380px;
  887. transform: rotate(-90deg);
  888. font-family: 'Montserrat', sans-serif;
  889. font-size: 40px;}
  890.  
  891.  
  892. .clinks a {
  893. padding:10px;
  894. color:#2a2a2a;
  895. margin-right:0px;
  896. -webkit-filter: blur(0px);
  897. -webkit-transition: 0.8s ease-in;
  898. -moz-transition: 1s ease-in;
  899. transition: 1s ease-in;
  900. }
  901.  
  902. .clinks a:hover {
  903. -webkit-transition: all 0.6s ease-in-out;
  904. -moz-transition: all 0.6s ease-in-out;
  905. -o-transition: all 0.6s ease-in-out;
  906. -ms-transition: all 0.6s ease-in-out;
  907. transition: all 0.6s ease-in-out;
  908. color: #727272;
  909. text-shadow: 7px 7px 3px #000;
  910. }
  911.  
  912.  
  913.  
  914.  
  915. .dlinks {
  916. position:fixed;
  917. text-shadow: 0px 0px 0px #000;
  918. left:710px;
  919. top:410px;
  920. transform: rotate(-90deg);
  921. font-family: 'Montserrat', sans-serif;
  922. font-size: 40px;}
  923.  
  924.  
  925. .dlinks a {
  926. padding:10px;
  927. color:#2a2a2a;
  928. margin-right:0px;
  929. -webkit-filter: blur(0px);
  930. -webkit-transition: 0.8s ease-in;
  931. -moz-transition: 1s ease-in;
  932. transition: 1s ease-in;
  933. }
  934.  
  935. .dlinks a:hover {
  936. -webkit-transition: all 0.6s ease-in-out;
  937. -moz-transition: all 0.6s ease-in-out;
  938. -o-transition: all 0.6s ease-in-out;
  939. -ms-transition: all 0.6s ease-in-out;
  940. transition: all 0.6s ease-in-out;
  941. color: #727272;
  942. text-shadow: 7px 7px 3px #000;
  943. }
  944.  
  945.  
  946.  
  947.  
  948. .elinks {
  949. position:fixed;
  950. text-shadow: 0px 0px 0px #000;
  951. left:710px;
  952. top:440px;
  953. transform: rotate(-90deg);
  954. font-family: 'Montserrat', sans-serif;
  955. font-size: 40px;}
  956.  
  957.  
  958. .elinks a {
  959. padding:10px;
  960. color:#2a2a2a;
  961. margin-right:0px;
  962. -webkit-filter: blur(0px);
  963. -webkit-transition: 0.8s ease-in;
  964. -moz-transition: 1s ease-in;
  965. transition: 1s ease-in;
  966. }
  967.  
  968. .elinks a:hover {
  969. -webkit-transition: all 0.6s ease-in-out;
  970. -moz-transition: all 0.6s ease-in-out;
  971. -o-transition: all 0.6s ease-in-out;
  972. -ms-transition: all 0.6s ease-in-out;
  973. transition: all 0.6s ease-in-out;
  974. color: #727272;
  975. text-shadow: 7px 7px 3px #000;
  976. }
  977.  
  978.  
  979.  
  980. .flinks {
  981. position:fixed;
  982. text-shadow: 0px 0px 0px #000;
  983. left:710px;
  984. top:470px;
  985. transform: rotate(-90deg);
  986. font-family: 'Montserrat', sans-serif;
  987. font-size: 40px;}
  988.  
  989.  
  990. .flinks a {
  991. padding:10px;
  992. color:#2a2a2a;
  993. margin-right:0px;
  994. -webkit-filter: blur(0px);
  995. -webkit-transition: 0.8s ease-in;
  996. -moz-transition: 1s ease-in;
  997. transition: 1s ease-in;
  998. }
  999.  
  1000. .flinks a:hover {
  1001. -webkit-transition: all 0.6s ease-in-out;
  1002. -moz-transition: all 0.6s ease-in-out;
  1003. -o-transition: all 0.6s ease-in-out;
  1004. -ms-transition: all 0.6s ease-in-out;
  1005. transition: all 0.6s ease-in-out;
  1006. color: #727272;
  1007. text-shadow: 7px 7px 3px #000;
  1008. }
  1009.  
  1010.  
  1011.  
  1012. .glinks {
  1013. position:fixed;
  1014. text-shadow: 0px 0px 11px #7C6868;
  1015. right:15px;
  1016. bottom:15px;
  1017. transform: rotate(0deg);
  1018. font-family: helvetica;
  1019. font-size: 14px; }
  1020.  
  1021.  
  1022. .glinks a {
  1023. padding:10px;
  1024. color:#191919;
  1025. margin-right:0px;
  1026. -webkit-filter: blur(1px);
  1027. -webkit-transition: 0.8s ease-in;
  1028. -moz-transition: 1s ease-in;
  1029. transition: 1s ease-in;
  1030. }
  1031.  
  1032. .glinks a:hover {
  1033. -webkit-transition: all 0.6s ease-in-out;
  1034. -moz-transition: all 0.6s ease-in-out;
  1035. -o-transition: all 0.6s ease-in-out;
  1036. -ms-transition: all 0.6s ease-in-out;
  1037. transition: all 0.6s ease-in-out;
  1038. color: #000000;
  1039. text-shadow: 7px 7px 3px #000000;
  1040. }
  1041.  
  1042.  
  1043.  
  1044.  
  1045.  
  1046. #links a {
  1047. padding:5px;
  1048. margin-right:0px;
  1049. text-shadow: 1px 0px 1px #7a7a7a;
  1050. }
  1051.  
  1052.  
  1053. #links a:hover {
  1054. padding:5px;
  1055. margin-right:0px;
  1056. text-shadow: 2px 0px 10px #7a7a7a;
  1057. -moz-transition-duration:0.6s;
  1058. -webkit-transition-duration:0.6s;
  1059. -o-transition-duration:0.6s;
  1060. }
  1061.  
  1062.  
  1063.  
  1064.  
  1065. /* JUMBLED LINKS ENDS */
  1066.  
  1067.  
  1068.  
  1069. #pagination {
  1070. position:fixed;
  1071. font-family:times;
  1072. width:300px;
  1073. font-size:8px;
  1074. top:520px;
  1075. left:260px;
  1076. letter-spacing:3px;
  1077. text-align:center;
  1078. z-index:999999999999;
  1079. }
  1080.  
  1081. #pagination a {
  1082. text-transform:uppercase;
  1083. color:#181818;
  1084. -webkit-filter: blur(1px);
  1085. -webkit-transition: 0.8s ease-in;
  1086. -moz-transition: 1s ease-in;
  1087. transition: 1s ease-in;
  1088. z-index:999999999999;
  1089. }
  1090.  
  1091. #pagination a:hover {
  1092. color:#000;
  1093. -webkit-filter: blur(0px);
  1094. -webkit-transition: 0.2s ease-in;
  1095. -moz-transition: 1s ease-in;
  1096. transition: 1s ease-in;
  1097. }
  1098.  
  1099.  
  1100. .audio {
  1101. width:335px;
  1102. padding-bottom:10px;
  1103. background-color:{color:#000000};}
  1104.  
  1105. .albumart {
  1106. float:left;
  1107. padding:0px 10px 10px 0px;}
  1108.  
  1109. .albumart img {
  1110. width:65px;
  1111. height:65px;}
  1112.  
  1113. .playercontainer {
  1114. text-align:left;
  1115. padding:10px;
  1116. background-color:#090909;
  1117. width:335px;}
  1118.  
  1119. .audioinfo {
  1120. padding:10px;
  1121. color:{color:text};}
  1122.  
  1123.  
  1124.  
  1125.  
  1126.  
  1127. /* QUESTIONS & ANSWERS DETAILS */
  1128.  
  1129.  
  1130. #asker {
  1131. font-family: 'Arizonia', cursive;
  1132. font-style:none;
  1133. letter-spacing:2px;
  1134. text-align:center;
  1135. padding-top: 10px;
  1136. margin-left:0px;
  1137. text-transform:lowercase;
  1138. color: #c9c9c9;
  1139. font-size:30px;
  1140. padding:5px;
  1141. letter-spacing:0px
  1142. text-shadow:0 0 2px #aeaeae;
  1143. }
  1144.  
  1145.  
  1146. #asker a{
  1147. font-family: 'Arizonia', cursive;
  1148. font-style:none;
  1149. letter-spacing:2px;
  1150. text-transform:lowercase;
  1151. font-size:30px;
  1152. letter-spacing: 0px;
  1153. text-shadow: none;
  1154. color: #c9c9c9;
  1155. text-shadow:0 0 2px #1a1a1a;
  1156. -webkit-filter: blur(0.5px);
  1157. }
  1158.  
  1159.  
  1160. #asker a:hover {
  1161. color: #656565;
  1162. letter-spacing: 0px;
  1163. text-shadow:0 0 2px #000;
  1164. -webkit-filter: blur(2px);
  1165. -webkit-transition:all .5s ease-in-out;
  1166. -moz-transition:all .5s ease-in-out;
  1167. transition:all .5s ease-in-out;
  1168. }
  1169.  
  1170.  
  1171.  
  1172. #ask {
  1173. font-family: times;
  1174. width:225px;
  1175. font-size:8px;
  1176. text-align:center;
  1177. padding-top: 5px;
  1178. margin-left:0px;
  1179. text-transform:auto;
  1180. letter-spacing:3px
  1181. margin-top:-10px;
  1182. padding:5px;
  1183. background: #000;
  1184. background: url("https://67.media.tumblr.com/a2fa09ecadb8f385a6a0dcb6048871f0/tumblr_o9e71aSClH1ud4mdwo1_400.gif");
  1185. color:#dcdcdc;
  1186. text-transform: uppercase;
  1187. border-bottom-left-radius: 10px;
  1188. border-bottom-right-radius: 10px;
  1189. border-top-left-radius: 10px;
  1190. border-top-right-radius: 10px;
  1191. padding:10px;
  1192. letter-spacing:2px;
  1193. border-bottom:solid 1px #717171;
  1194. border-top:solid 1px #717171;
  1195. }
  1196.  
  1197.  
  1198. .ans {
  1199. text-align:center;
  1200. padding:10px;
  1201. }
  1202.  
  1203.  
  1204. /* POST INFO DETAILS */
  1205.  
  1206.  
  1207.  
  1208. #info {
  1209. background: url("https://67.media.tumblr.com/300286f213a8d26a130bfac248803dd5/tumblr_o9e71aSClH1ud4mdwo2_400.png");
  1210. border: 1px solid #717171;
  1211. border-bottom-right-radius: 15px;
  1212. border-bottom-left-radius: 15px;
  1213. border-top-right-radius: 15px;
  1214. border-top-left-radius: 15px;
  1215. width:255px;
  1216. height:25px;
  1217. text-align:center;
  1218. letter-spacing:10px;
  1219. margin-top:8px;
  1220. margin-bottom:50px;
  1221. text-transform:uppercase;
  1222. font-size:15px;
  1223. font-style:none;
  1224. }
  1225.  
  1226.  
  1227.  
  1228.  
  1229. #info a {
  1230. color:#dcdcdc;}
  1231.  
  1232. #info a:hover {
  1233. color:#000;}
  1234.  
  1235.  
  1236.  
  1237.  
  1238. #tags {
  1239. font-family: helvetica;
  1240. color:#181818;
  1241. padding-bottom:35px;
  1242. letter-spacing:2px;
  1243. text-transform:uppercase;
  1244. font-size:7px;
  1245. font-style:normal;
  1246. margin-top:10px;
  1247. text-align:right;
  1248. float:right;
  1249. }
  1250.  
  1251.  
  1252. #tags a {
  1253. display:inline-block;
  1254. padding:-3px;
  1255. opacity:0.8;
  1256. text-align:center;
  1257. color:#181818;
  1258.  
  1259. }
  1260.  
  1261.  
  1262. #tags a:hover {
  1263. color:{color:text};
  1264. }
  1265.  
  1266.  
  1267.  
  1268.  
  1269.  
  1270.  
  1271. .note {
  1272. text-transform:uppercase;
  1273. font-style:normal;
  1274. letter-spacing:0px;
  1275. font-size: 10px;
  1276. text-align:left;
  1277. line-height:90%;
  1278. margin-left:-40px;}
  1279.  
  1280. .note li {
  1281. list-style-type:none;
  1282. border-bottom:0px solid {color:border};
  1283. padding:10px 25px 10px 25px;
  1284. text-align:left;
  1285. margin:0px;
  1286. -moz-transition-duration:0.5s;
  1287. -webkit-transition-duration:0.5s;
  1288. -o-transition-duration:0.5s;}
  1289.  
  1290. .note img.avatar {
  1291. margin-right: 10px;
  1292. width: 16px;
  1293. height: 16px;}
  1294.  
  1295.  
  1296.  
  1297.  
  1298. /*--BASIC POP-UP DETAILS--*/
  1299.  
  1300.  
  1301.  
  1302. .popup_block{
  1303. display:none;
  1304. background: url("");
  1305. background:#727272;
  1306. padding:20px;
  1307. border:0px solid #eee; /* if you want a solid white pop-up, delete this */
  1308. float:left;
  1309. height: 400px;
  1310. top:50%; left:50%;
  1311. position:fixed;
  1312. z-index: 99999;
  1313. -webkit-box-shadow: 1px 1px 5px #323232;
  1314. -moz-box-shadow: 1px 1px 5px #323232;
  1315. box-shadow: 1px 1px 5px #323232;
  1316. }
  1317.  
  1318.  
  1319. *html #fade {position: absolute;}
  1320. *html .popup_block {position: absolute;}
  1321. #fade {
  1322. display:none;
  1323. position:fixed;
  1324. left:0px;
  1325. top:0px;
  1326. width:100%;
  1327. height:100%;
  1328. z-index:9999;
  1329. background:#000;
  1330. opacity:0.5;
  1331. }
  1332.  
  1333.  
  1334.  
  1335.  
  1336. .popupnavlinks {
  1337. padding-top:5px;
  1338. text-align:center; }
  1339.  
  1340.  
  1341. .popupnavlinks a {
  1342. display:inline-block;
  1343. width:120px; height:8px;
  1344. margin:2px; padding:6px 6px 10px;
  1345. text-align:center;
  1346. font-family:'helvetica';
  1347. font-size:8px;
  1348. text-transform:uppercase;
  1349. letter-spacing:1px;
  1350. color:#dcdcdc; background:transparent;
  1351. background-image:url('https://67.media.tumblr.com/300286f213a8d26a130bfac248803dd5/tumblr_o9e71aSClH1ud4mdwo2_400.png');
  1352. border:1px dotted;
  1353. border-color: #9b9b9b;
  1354. }
  1355.  
  1356.  
  1357. .popupnavlinks a:hover {
  1358. display:inline-block;
  1359. width:120px; margin:2px;
  1360. padding:6px 6px 10px;
  1361. text-align:center;
  1362. font-family:'helvetica';
  1363. font-size:8px;
  1364. text-transform:uppercase;
  1365. letter-spacing:1px;
  1366. color:#2e2e2e;
  1367. background:transparent }
  1368.  
  1369.  
  1370.  
  1371. .popupclose {
  1372. float:right; top:0px; right:0px;
  1373. margin-top:-10px; margin-right:-10px;
  1374. font-family:'Scada', sans serif;
  1375. font-size:10px;
  1376. font-weight:bold }
  1377.  
  1378. .popupclose a {
  1379. color:#aaa }
  1380.  
  1381.  
  1382.  
  1383. /*--TOOLTIP DETAILS--*/
  1384.  
  1385.  
  1386.  
  1387. #s-m-t-tooltip{
  1388. max-width:400px;
  1389. margin:15px;
  1390. padding:2px 8px;
  1391. background: #dcdcdc;
  1392. background-image:url('https://67.media.tumblr.com/a2fa09ecadb8f385a6a0dcb6048871f0/tumblr_o9e71aSClH1ud4mdwo1_400.gif');
  1393. border:1px dotted;
  1394. border-color: #727272;
  1395. color:#9b9b9b;
  1396. z-index:99999999999999999999;
  1397. font-size:9px;
  1398. letter-spacing:2px;
  1399. font-style:bold;
  1400. letter-spacing:2px;
  1401. font-family:'helvetica';
  1402. text-transform:uppercase;
  1403. box-shadow:1px 1px 3px rgba(0,0,0,.1);}
  1404.  
  1405.  
  1406.  
  1407.  
  1408.  
  1409. </style>
  1410.  
  1411.  
  1412. </head>
  1413.  
  1414. <body>
  1415.  
  1416. <div id="content">
  1417.  
  1418. <div id="sidebar">
  1419.  
  1420. <img src="{image:Sidebar}" />
  1421.  
  1422. <div id="description">{description}</div>
  1423.  
  1424. </div>
  1425.  
  1426. <div id="pagination">
  1427. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">previous</a> • {/block:PreviousPage}{block:NextPage} <a href="{NextPage}">next</a>{/block:NextPage}{/block:Pagination}
  1428. </div>
  1429.  
  1430.  
  1431. <div id="links">
  1432.  
  1433.  
  1434. <div id="linkbar">
  1435.  
  1436.  
  1437. <div class="alinks">
  1438. <a href="/" title="refresh."> • </a>
  1439. </div>
  1440.  
  1441.  
  1442. <div class="blinks">
  1443. <a href="#?w=310" rel="box1" class="poplight" title="ask."> • </a>
  1444. </div>
  1445.  
  1446.  
  1447. <div class="clinks">
  1448. <a href="#?w=310" rel="box2" class="poplight" title="laws."> • </a>
  1449. </div>
  1450.  
  1451.  
  1452. <div class="dlinks">
  1453. <a href="#?w=310" rel="box3" class="poplight" title="verses."> • </a>
  1454. </div>
  1455.  
  1456.  
  1457.  
  1458. <div class="elinks">
  1459. <a href="#?w=310" rel="box4" class="poplight" title="about."> • </a>
  1460. </div>
  1461.  
  1462.  
  1463.  
  1464. <div class="flinks">
  1465. <a href="#?w=310" rel="box5" class="poplight" title="map."> • </a>
  1466. </div>
  1467.  
  1468.  
  1469. <div class="glinks">
  1470. <a href="http://agirlingrey.tumblr.com/" title="agirlingrey.">A.</a>
  1471. </div>
  1472.  
  1473.  
  1474.  
  1475. </div></div>
  1476.  
  1477.  
  1478. <div id="pcontainer">
  1479.  
  1480. <div id="content"><div id="posts">
  1481. {block:Posts}
  1482.  
  1483.  
  1484. {block:Quote}<quotetext>"{Quote}"</quotetext>&nbsp; <br><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; — {Source} {/block:Quote}
  1485. {block:Title}<h1>{Title}&nbsp;</h1>{/block:Title}
  1486. {block:Text}{Body}{/block:Text}
  1487.  
  1488. {block:Link}<a href="{URL}" class="link" {Target}><h1>{Name}&nbsp;</h1></a>
  1489.  
  1490. {block:Description}<P>{Description}</p>{/block:Description}{/block:Link}
  1491.  
  1492. {block:Photo}<center>{LinkOpenTag}<img src="{PhotoURL-HighRes}" width="360px">{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1493. {block:Photoset}<center>{Photoset}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1494.  
  1495. {block:Chat}<ul class="chat"><BR>{block:Lines}<li class="user_{UserNumber}">{block:Label}<span class="label">{Label}</span>{/block:Label}&nbsp;{Line}</li><BR>{/block:Lines}</ul>{/block:Chat}
  1496.  
  1497. {block:Video}{Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1498.  
  1499.  
  1500. {block:Answer}<div id="asker" style="width:255px; text-shadow:0 0 2px #000; ">{Asker}:<div id="ask"> <p><p><p><p><p>{Question}</div></span></div><font face="calibri"><span style="font-family:calibri;font-size:; marging-left:0px;">{Answer}</span>{/block:Answer}
  1501.  
  1502.  
  1503. {block:Audio}<div class="audio">
  1504.  
  1505. {block:AlbumArt}
  1506. {/block:AlbumArt}
  1507.  
  1508.  
  1509. <div class="audioinfo">{block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}{block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  1510. {/block:ExternalAudio}<b>Played:</b> {PlayCount} times</div>
  1511. <br><div class="playercontainer">{AudioPlayerBlack}</div></div>
  1512. {block:Caption}{Caption}{/block:Caption}<br>{/block:Audio}
  1513.  
  1514.  
  1515. <div id="info">
  1516. <br>
  1517.  
  1518. &nbsp; &nbsp;
  1519.  
  1520.  
  1521. {block:Date}
  1522. <a href="{Permalink}" style="position:absolute; margin-left:-100px; margin-top:-8px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title=" {ShortMonth} {DayOfMonthWithZero} - {TimeAgo} "> ● </a>
  1523. {/block:Date}
  1524.  
  1525.  
  1526. {block:RebloggedFrom}
  1527. <a href="{ReblogParentURL}" style="position:absolute; margin-left:-65px; margin-top:-8px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title=" via. {ReblogParentName} "> ● </a>
  1528. {/block:RebloggedFrom}
  1529.  
  1530.  
  1531. {block:ContentSource}
  1532. <a href="{SourceURL}" style="position:absolute; margin-left:-30px; margin-top:-8px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title=" source. {SourceTitle} "> ● </a>
  1533. {/block:ContentSource}
  1534.  
  1535.  
  1536. <a href="{Permalink}" style="position:absolute; margin-left:5px; margin-top:-8px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title=" {NoteCount} notes "> ● </a>
  1537.  
  1538.  
  1539. <a href="{ReblogURL}" style="position:absolute; margin-left:40px; margin-top:-8px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title="reblog"> ● </a>
  1540.  
  1541.  
  1542. <br>
  1543.  
  1544. {block:HasTags}<div id="tags">{block:Tags} & <a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}</div> &nbsp;
  1545. {/block:Posts}
  1546. <div class="note">
  1547. {block:PostNotes}{PostNotes}{/block:PostNotes}
  1548. </div>
  1549.  
  1550. {/block:Posts}</div></div>
  1551.  
  1552.  
  1553.  
  1554. </div> </div> </div> </div> </div> </div>
  1555.  
  1556.  
  1557.  
  1558. </body>
  1559.  
  1560.  
  1561.  
  1562. <div id="box1" class="popup_block">
  1563.  
  1564. <h3>
  1565. yay messages
  1566. </h3>
  1567.  
  1568. <center>
  1569.  
  1570. <i>Add a picture here, or a short rule about how you do or don't accept messages... whatever you want, really.</i> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu suscipit orci. Donec eget neque eleifend, porta lacus ut, hendrerit justo. Nulla quis eleifend nunc.
  1571.  
  1572. <p><iframe frameborder="0" height="250" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/YOUR URL HERE.tumblr.com" width="100%"></iframe></p>
  1573.  
  1574. </div>
  1575.  
  1576. </center>
  1577.  
  1578.  
  1579.  
  1580. <div id="box2" class="popup_block">
  1581.  
  1582. <div style="width:auto;height:405px;overflow:scroll;padding:5px;">
  1583.  
  1584.  
  1585. <h3>RULES, LAWS, IMPORTANT STUFFS.</h3>
  1586.  
  1587. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu suscipit orci. Donec eget neque eleifend, porta lacus ut, hendrerit justo. Nulla quis eleifend nunc. Sed accumsan at erat at sagittis. Suspendisse potenti. Vestibulum orci purus, sagittis id tellus quis, blandit imperdiet ex. Suspendisse auctor, risus ut consectetur dignissim, diam est luctus justo, eu lacinia lectus ipsum sed urna. Integer sem ante, posuere sit amet nulla vitae, posuere fringilla nunc.
  1588.  
  1589. <br><br>
  1590.  
  1591. Fusce lacus elit, lobortis non sapien interdum, blandit condimentum urna. Donec eu viverra elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nullam mattis turpis eu justo imperdiet, eget tincidunt mauris aliquet. Vestibulum dictum sem a velit consequat convallis. Donec ex odio, vestibulum et condimentum quis, ultrices eu augue. Nunc venenatis ultricies congue. Morbi vel varius mauris, vel porttitor tortor. Suspendisse potenti. Maecenas elementum ligula neque, eget laoreet lacus vehicula quis. Integer nibh diam, dictum non fermentum sed, dignissim quis magna.
  1592.  
  1593. <br><br>
  1594.  
  1595. Mauris lectus lorem, cursus ut augue nec, finibus sodales odio. Donec ac fermentum tellus. Integer eget orci finibus, euismod lorem vel, rhoncus urna. Etiam vel ante non nisi ultricies maximus sit amet vitae augue. Nulla ultricies dignissim sollicitudin. Vestibulum rutrum quis neque at vehicula. Aliquam efficitur et enim ut tempor. Quisque egestas mollis lorem, ac ornare justo pellentesque non. Praesent tempor urna augue, quis fermentum metus luctus maximus. Nulla non eleifend enim, et sollicitudin eros. Aenean luctus maximus lacus, eget euismod urna imperdiet id. Nam elementum, metus sit amet iaculis rhoncus, odio augue blandit eros, vitae lobortis eros velit at metus.
  1596.  
  1597. <br><br>
  1598.  
  1599. Morbi diam mauris, vehicula nec quam et, finibus aliquam est. Ut tincidunt mi dictum ipsum blandit finibus. Cras nec viverra diam. Nulla vel iaculis felis. Nullam neque augue, semper et auctor vel, molestie nec neque. In in pellentesque risus. Proin aliquam cursus venenatis. Donec aliquam varius arcu, eget sagittis nibh accumsan in. Curabitur sodales vel ipsum nec pharetra. Sed sed ante metus. Duis euismod non orci quis facilisis. In dignissim ex imperdiet nunc molestie dictum. Curabitur quis mauris vulputate, facilisis quam ut, bibendum leo. Aenean fermentum, nulla eu dignissim sollicitudin, ante eros accumsan turpis, nec pulvinar libero ligula ac neque.
  1600.  
  1601. <br><br>
  1602.  
  1603. Nulla in mollis ipsum, eget condimentum mauris. Phasellus finibus lacus sit amet augue gravida ornare. Etiam ut tincidunt quam. Sed in consectetur massa. Proin pharetra eget tortor id ultrices. Proin rutrum finibus ex eget placerat. Nunc nunc elit, rutrum at eros sit amet, cursus gravida mi. Aenean ac aliquam sapien. Mauris non elementum ex, sed faucibus urna. Aliquam eu ipsum vel ante accumsan tincidunt. Aliquam semper ipsum nec nulla ultricies gravida.
  1604.  
  1605. </div>
  1606. </div>
  1607.  
  1608.  
  1609.  
  1610.  
  1611. <div id="box3" class="popup_block">
  1612.  
  1613. <h3>verses</h3>
  1614.  
  1615. <ul id="tabs">
  1616. <li class="active">VERSE 1.</li>
  1617. <li>VERSE 2.</li>
  1618. <li>VERSE 3.</li>
  1619. <li>VERSE 4.</li>
  1620. </ul>
  1621.  
  1622. <div style="width:auto;height:335px;overflow:scroll;padding:5px;">
  1623.  
  1624.  
  1625.  
  1626. <ul id="tab">
  1627. <li class="active">
  1628.  
  1629.  
  1630. <a href="/tagged/VERSE">VERSE NAME.</a>
  1631. <img src="https://66.media.tumblr.com/cd395cb23ce7278be8ddf94ae7aee17a/tumblr_o8xzvk4En01ud4mdwo1_100.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1632.  
  1633.  
  1634. <br>
  1635.  
  1636. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu suscipit orci. Donec eget neque eleifend, porta lacus ut, hendrerit justo. Nulla quis eleifend nunc. Sed accumsan at erat at sagittis. Suspendisse potenti. Vestibulum orci purus, sagittis id tellus quis, blandit imperdiet ex. Suspendisse auctor, risus ut consectetur dignissim, diam est luctus justo, eu lacinia lectus ipsum sed urna. Integer sem ante, posuere sit amet nulla vitae, posuere fringilla nunc.
  1637.  
  1638.  
  1639. <br><br><br>
  1640.  
  1641.  
  1642.  
  1643. <a href="/tagged/VERSE">VERSE NAME.</a>
  1644. <img src="https://66.media.tumblr.com/cd395cb23ce7278be8ddf94ae7aee17a/tumblr_o8xzvk4En01ud4mdwo1_100.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1645.  
  1646.  
  1647. <br>
  1648.  
  1649. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu suscipit orci. Donec eget neque eleifend, porta lacus ut, hendrerit justo. Nulla quis eleifend nunc. Sed accumsan at erat at sagittis. Suspendisse potenti. Vestibulum orci purus, sagittis id tellus quis, blandit imperdiet ex. Suspendisse auctor, risus ut consectetur dignissim, diam est luctus justo, eu lacinia lectus ipsum sed urna. Integer sem ante, posuere sit amet nulla vitae, posuere fringilla nunc.
  1650.  
  1651.  
  1652. <br><br><br>
  1653.  
  1654.  
  1655. <a href="/tagged/VERSE">VERSE NAME.</a>
  1656. <img src="https://66.media.tumblr.com/cd395cb23ce7278be8ddf94ae7aee17a/tumblr_o8xzvk4En01ud4mdwo1_100.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1657.  
  1658.  
  1659. <br>
  1660.  
  1661. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu suscipit orci. Donec eget neque eleifend, porta lacus ut, hendrerit justo. Nulla quis eleifend nunc. Sed accumsan at erat at sagittis. Suspendisse potenti. Vestibulum orci purus, sagittis id tellus quis, blandit imperdiet ex. Suspendisse auctor, risus ut consectetur dignissim, diam est luctus justo, eu lacinia lectus ipsum sed urna. Integer sem ante, posuere sit amet nulla vitae, posuere fringilla nunc.
  1662.  
  1663.  
  1664. <br><br>
  1665.  
  1666.  
  1667.  
  1668. </li>
  1669. <li>
  1670.  
  1671.  
  1672.  
  1673. <a href="/tagged/VERSE">VERSE NAME.</a>
  1674. <img src="https://67.media.tumblr.com/9a9f099625e324e424c75d343a786a57/tumblr_o8xzugQ8JK1ud4mdwo1_100.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1675.  
  1676.  
  1677. <br>
  1678.  
  1679. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu suscipit orci. Donec eget neque eleifend, porta lacus ut, hendrerit justo. Nulla quis eleifend nunc. Sed accumsan at erat at sagittis. Suspendisse potenti. Vestibulum orci purus, sagittis id tellus quis, blandit imperdiet ex. Suspendisse auctor, risus ut consectetur dignissim, diam est luctus justo, eu lacinia lectus ipsum sed urna. Integer sem ante, posuere sit amet nulla vitae, posuere fringilla nunc.
  1680.  
  1681.  
  1682. <br><br><br>
  1683.  
  1684.  
  1685. <a href="/tagged/VERSE">VERSE NAME.</a>
  1686. <img src="https://67.media.tumblr.com/9a9f099625e324e424c75d343a786a57/tumblr_o8xzugQ8JK1ud4mdwo1_100.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1687.  
  1688.  
  1689. <br>
  1690.  
  1691. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu suscipit orci. Donec eget neque eleifend, porta lacus ut, hendrerit justo. Nulla quis eleifend nunc. Sed accumsan at erat at sagittis. Suspendisse potenti. Vestibulum orci purus, sagittis id tellus quis, blandit imperdiet ex. Suspendisse auctor, risus ut consectetur dignissim, diam est luctus justo, eu lacinia lectus ipsum sed urna. Integer sem ante, posuere sit amet nulla vitae, posuere fringilla nunc.
  1692.  
  1693.  
  1694. <br><br>
  1695.  
  1696.  
  1697. </li>
  1698. <li>
  1699.  
  1700.  
  1701.  
  1702. <a href="/tagged/VERSE">VERSE NAME.</a>
  1703. <img src="https://66.media.tumblr.com/cd395cb23ce7278be8ddf94ae7aee17a/tumblr_o8xzvk4En01ud4mdwo1_100.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1704.  
  1705.  
  1706. <br>
  1707.  
  1708. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu suscipit orci. Donec eget neque eleifend, porta lacus ut, hendrerit justo. Nulla quis eleifend nunc. Sed accumsan at erat at sagittis. Suspendisse potenti. Vestibulum orci purus, sagittis id tellus quis, blandit imperdiet ex. Suspendisse auctor, risus ut consectetur dignissim, diam est luctus justo, eu lacinia lectus ipsum sed urna. Integer sem ante, posuere sit amet nulla vitae, posuere fringilla nunc.
  1709.  
  1710.  
  1711. <br><br><br>
  1712.  
  1713.  
  1714. <a href="/tagged/VERSE">VERSE NAME.</a>
  1715. <img src="https://66.media.tumblr.com/cd395cb23ce7278be8ddf94ae7aee17a/tumblr_o8xzvk4En01ud4mdwo1_100.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1716.  
  1717.  
  1718. <br>
  1719.  
  1720. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu suscipit orci. Donec eget neque eleifend, porta lacus ut, hendrerit justo. Nulla quis eleifend nunc. Sed accumsan at erat at sagittis. Suspendisse potenti. Vestibulum orci purus, sagittis id tellus quis, blandit imperdiet ex. Suspendisse auctor, risus ut consectetur dignissim, diam est luctus justo, eu lacinia lectus ipsum sed urna. Integer sem ante, posuere sit amet nulla vitae, posuere fringilla nunc.
  1721.  
  1722.  
  1723. <br><br>
  1724.  
  1725.  
  1726.  
  1727. </li>
  1728. <li>
  1729.  
  1730.  
  1731.  
  1732.  
  1733. <a href="/tagged/VERSE">VERSE NAME.</a>
  1734. <img src="https://67.media.tumblr.com/9a9f099625e324e424c75d343a786a57/tumblr_o8xzugQ8JK1ud4mdwo1_100.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1735.  
  1736.  
  1737. <br>
  1738.  
  1739. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu suscipit orci. Donec eget neque eleifend, porta lacus ut, hendrerit justo. Nulla quis eleifend nunc. Sed accumsan at erat at sagittis. Suspendisse potenti. Vestibulum orci purus, sagittis id tellus quis, blandit imperdiet ex. Suspendisse auctor, risus ut consectetur dignissim, diam est luctus justo, eu lacinia lectus ipsum sed urna. Integer sem ante, posuere sit amet nulla vitae, posuere fringilla nunc.
  1740.  
  1741.  
  1742. <br><br><br>
  1743.  
  1744.  
  1745. <a href="/tagged/VERSE">VERSE NAME.</a>
  1746. <img src="https://67.media.tumblr.com/9a9f099625e324e424c75d343a786a57/tumblr_o8xzugQ8JK1ud4mdwo1_100.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1747.  
  1748.  
  1749. <br>
  1750.  
  1751. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu suscipit orci. Donec eget neque eleifend, porta lacus ut, hendrerit justo. Nulla quis eleifend nunc. Sed accumsan at erat at sagittis. Suspendisse potenti. Vestibulum orci purus, sagittis id tellus quis, blandit imperdiet ex. Suspendisse auctor, risus ut consectetur dignissim, diam est luctus justo, eu lacinia lectus ipsum sed urna. Integer sem ante, posuere sit amet nulla vitae, posuere fringilla nunc.
  1752.  
  1753.  
  1754. <br><br>
  1755.  
  1756.  
  1757. </li>
  1758. </ul>
  1759.  
  1760.  
  1761. </div>
  1762. </div>
  1763.  
  1764.  
  1765.  
  1766. <div id="box4" class="popup_block">
  1767.  
  1768. <div style="width:auto;height:400px;overflow:scroll;padding:5px;">
  1769.  
  1770. <h3>basic information</h3>
  1771.  
  1772.  
  1773. <ul>
  1774. <li><b>FULL NAME:</b> text text</li>
  1775. <li><b>NICKNAME:</b> text text</li>
  1776. <li><b>AGE:</b> text text</li>
  1777. <li><b>BIRTH DATE:</b> text text</li>
  1778. <li><b>ETHNICITY:</b> text text</i></li>
  1779. <li><b>GENDER:</b> text text</li>
  1780. <li><b>ROMANTIC ORIENTATION:</b> text text</li>
  1781. <li><b>SEXUAL ORIENTATION:</b> text text</li>
  1782. <li><b>RELIGION:</b> text text</li>
  1783. <li><b>SPOKEN LANGUAGE:</b> text text</li>
  1784. <li><b>CURRENT LIVING CONDITIONS:</b> text text</li>
  1785. <li><b>OCCUPATION:</b> text text</li>
  1786. </ul>
  1787.  
  1788. <h3>relationships</h3>
  1789.  
  1790. <ul>
  1791. <li><b>PARENTS:</b> text text</li>
  1792. <li><b>SIBLINGS:</b> text text</li>
  1793. <li><b>SIGNIFICANT OTHER:</b> text text</li>
  1794. <li><b>CHILDREN:</b> text text</li>
  1795. </ul>
  1796.  
  1797. <h3>physical traits</h3>
  1798.  
  1799. <ul>
  1800. <li><b>EYE COLOUR:</b> text text</li>
  1801. <li><b>HAIR COLOUR:</b> text text</li>
  1802. <li><b>HEIGHT:</b> text text</li>
  1803. <li><b>BODY BUILD:</b> text text</li>
  1804. <li><b>TATTOOS + PIERCINGS:</b> text text</li>
  1805. <li><b>NOTABLE PHYSICAL TRAITS:</b> text text</li>
  1806. </li>
  1807. </ul>
  1808.  
  1809.  
  1810. <h3>phobias and disorders</h3>
  1811.  
  1812. <ul>
  1813. <li><b>PHOBIAS:</b> text text</li>
  1814. <li><b>MENTAL DISORDERS:</b> text text</li>
  1815. <li><b>WHEN WAS THIS DIAGNOSED?:</b> text text</li>
  1816. </ul>
  1817.  
  1818. <h3>personality</h3>
  1819.  
  1820. <ul>
  1821. <li><b>INTELLIGENCE:</b> text text</li>
  1822. <li><b>LIKES:</b> text text</li>
  1823. <li><b>DISLIKES:</b> text text </li>
  1824. <li><b>DISPOSITION:</b> text text</li>
  1825. <li>
  1826. <b>EXTRAS:</b> text text
  1827. </li>
  1828. </ul>
  1829.  
  1830. <h3>biography</h3>
  1831.  
  1832. Hi my name is Ebony Dark'ness Dementia Raven Way and I have long ebony black hair (that's how I got my name) with purple streaks and red tips that reaches my mid-back and icy blue eyes like limpid tears and a lot of people tell me I look like Amy Lee (AN: if u don't know who she is get da hell out of here!). I'm not related to Gerard Way but I wish I was because he's a major fucking hottie. I'm a vampire but my teeth are straight and white. I have pale white skin. I'm also a witch, and I go to a magic school called Hogwarts in England where I'm in the seventh year (I'm seventeen). I'm a goth (in case you couldn't tell) and I wear mostly black. I love Hot Topic and I buy all my clothes from there. For example today I was wearing a black corset with matching lace around it and a black leather miniskirt, pink fishnets and black combat boots. I was wearing black lipstick, white foundation, black eyeliner and red eye shadow. I was walking outside Hogwarts. It was snowing and raining so there was no sun, which I was very happy about. A lot of preps stared at me. I put up my middle finger at them.
  1833.  
  1834. <br><br>
  1835.  
  1836. ( If you don't know what 'My Immortal' is, shame on you. )
  1837.  
  1838. <br><br><br>
  1839.  
  1840. </div>
  1841. </div>
  1842.  
  1843.  
  1844.  
  1845. <div id="box5" class="popup_block">
  1846.  
  1847. <div style="width:auto;height:400px;overflow:scroll;padding:5px;">
  1848.  
  1849. <h3>navigation</h3>
  1850.  
  1851. <center>
  1852.  
  1853. <div class="popupnavlinks">
  1854.  
  1855.  
  1856. <a href="/tagged/link">LINK.</a>
  1857. <a href="/tagged/link">LINK.</a>
  1858. <br>
  1859. <a href="/tagged/link">LINK.</a>
  1860. <a href="/tagged/link">LINK.</a>
  1861. <br>
  1862. <a href="/tagged/link">LINK.</a>
  1863. <a href="/tagged/link">LINK.</a>
  1864. <br>
  1865. <a href="/tagged/link">LINK.</a>
  1866. <a href="/tagged/link">LINK.</a>
  1867. <br>
  1868. <a href="/tagged/link">LINK.</a>
  1869. <a href="/tagged/link">LINK.</a>
  1870. <br>
  1871. <a href="/tagged/link">LINK.</a>
  1872. <a href="/tagged/link">LINK.</a>
  1873. <br>
  1874. <a href="/tagged/link">LINK.</a>
  1875. <a href="/tagged/link">LINK.</a>
  1876. <br>
  1877. <a href="/tagged/link">LINK.</a>
  1878. <a href="/tagged/link">LINK.</a>
  1879. <br>
  1880.  
  1881.  
  1882. </div>
  1883. </div>
  1884. </div>
  1885.  
  1886.  
  1887.  
  1888. <div id="bite">
  1889. <div id="thekey"></div>
  1890. <div class="death">
  1891. <div id="actualnews">
  1892.  
  1893. <center>
  1894.  
  1895. <div style="width:auto;height:280px;overflow:scroll;padding:5px;">
  1896.  
  1897. <h3>
  1898. SCOOBY SNACKS
  1899. </h3>
  1900.  
  1901. independent & selective <b><i>SHAGGY ROGERS</i></b> from the scooby doo franchcise <br> written by <b><i>YAZ / YASMIN</i></b>
  1902.  
  1903. <h3>
  1904. ZOINKS
  1905. </h3>
  1906.  
  1907. takes inspiration from scooby doo live action movies, the animation series from 2002's <b><i>what's new scooby doo</i></b> & from the scooby doo comics from <b><i>dc comics</i></b>
  1908.  
  1909. <h3>
  1910. & SHAGGY TOO
  1911. </h3>
  1912.  
  1913. theme background & graphics are all made by <b><i>me</i></b>, <br> the icons are also made by me, <b><i>please do not steal them!</i></b><br>while the code comes from <a href="agirlingrey.tumblr.com">agirlingrey</a>
  1914.  
  1915.  
  1916.  
  1917.  
  1918.  
  1919. </center>
  1920.  
  1921.  
  1922. </div>
  1923. </div></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement