Advertisement
Guest User

medusa theme.

a guest
Mar 22nd, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 53.91 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="#5b7a44"; // 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. <link href="https://fonts.googleapis.com/css?family=Alex+Brush" rel="stylesheet">
  337.  
  338.  
  339.  
  340.  
  341. <style type="text/css">
  342.  
  343.  
  344.  
  345. /* the hover update thing */
  346.  
  347.  
  348.  
  349. #bite
  350. #bite a{
  351. display:block
  352. }
  353. #bite .death {
  354. margin-top:0px;filter: alpha(opacity = 1.0);
  355. opacity:1.0;-webkit-transition: all 0.5s ease-out;
  356. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  357. }
  358.  
  359. #bite:hover .death {
  360. margin-top:0px;
  361. -webkit-transition: all 0.8s ease-out;
  362. -moz-transition: all 0.8s ease-out;
  363. transition: all 0.8s ease-out;
  364. filter: alpha(opacity = 100);
  365. filter: alpha(opacity = 100);
  366. opacity:100;
  367. }
  368.  
  369.  
  370. /* selection font and background */
  371.  
  372.  
  373. ::selection {
  374. background: #444;
  375. color:#fff; }
  376.  
  377.  
  378. ::-moz-selection {
  379. background: #444;
  380. color:#fff; }
  381.  
  382.  
  383.  
  384. /* scrollbar details */
  385.  
  386.  
  387.  
  388. ::-webkit-scrollbar {
  389. height: 0px;
  390. width: 2px;
  391. background:transparent;
  392. border-left:0px solid transparent;
  393. border-right:0px solid transparent;}
  394.  
  395.  
  396. ::-webkit-scrollbar-thumb {
  397. background:transparent;}
  398.  
  399.  
  400.  
  401.  
  402.  
  403. /* the cursor */
  404.  
  405.  
  406. {block:iftinycursor}
  407. body, a, a:hover{
  408. cursor: url('http://media.tumblr.com/28e8e2c9c0a422c5fb73ea368b58b529/tumblr_inline_mv7k3cbC5e1qmxe8x.png'), progress;}
  409. {/block:iftinycursor}
  410.  
  411. iframe#tumblr_controls {
  412. right:3px !important;
  413. position: fixed !important;
  414. -webkit-transition: opacity 0.7s
  415. linear;opacity: 0.2;
  416. -webkit-transition: all 0.8s ease-out;
  417. -moz-transition: all 0.8s ease-out;
  418. transition: all 0.8s ease-out;}
  419.  
  420. iframe#tumblr_controls:hover{
  421. -webkit-transition: opacity 0.7s linear;
  422. opacity: 1;
  423. -webkit-transition: all 0.4s ease-out;
  424. -moz-transition: all 0.4s ease-out;
  425. transition: all 0.4s ease-out;}
  426.  
  427.  
  428.  
  429. /* general look & background */
  430.  
  431.  
  432. body {
  433. background:#414141;
  434. background-image: url('{image:Background}');
  435. background-attachment: fixed;
  436. background-repeat: no-repeat;
  437. background-position: left top;
  438. color:#949494;
  439. font-family: calibri;
  440. text-align:justify;
  441. font-size: 10px;
  442. letter-spacing:1px;
  443. line-height:135%;
  444.  
  445. }
  446.  
  447.  
  448.  
  449. /* the verses tabs */
  450.  
  451.  
  452. ul#tabs {
  453. list-style-type: none;
  454. padding: 0;
  455. text-align: center;
  456. font-size:8px;
  457. letter-spacing:1px;
  458. }
  459.  
  460. ul#tabs li {
  461. display: inline-block;
  462. background-color: transparent;
  463. border: solid 0px #262626;
  464. padding: 4px 12px;
  465. margin-bottom: 4px;
  466. color: #1b1b1b;
  467. cursor: pointer;
  468. }
  469.  
  470. ul#tabs li:hover {
  471. background-color: #b0b0b0;
  472. }
  473.  
  474. ul#tabs li.active {
  475. background-color: #0f0f0f;
  476. background-image:url('https://68.media.tumblr.com/5eb55f16c2230a8c6e0e55c9bb1d0e31/tumblr_inline_on7avrmq7v1src988_540.jpg');
  477. border: 1px solid #9b9b9b;
  478. }
  479.  
  480. ul#tab {
  481. list-style-type: none;
  482. margin: 0;
  483. padding: 0;
  484. }
  485.  
  486. ul#tab li {
  487. display: none;
  488. }
  489.  
  490. ul#tab li.active {
  491. display: block;
  492. }
  493.  
  494.  
  495.  
  496.  
  497. /* back to general look & details */
  498.  
  499.  
  500.  
  501. a:link, a:active, a:visited {
  502. text-decoration: none;
  503. color: #5b7a44;
  504. -moz-transition-duration:.6s;
  505. -webkit-transition-duration:.6s;
  506. -o-transition-duration:.6s;
  507. -webkit-filter: blur(0px);}
  508.  
  509. a:hover {
  510. color: #5b7a44;
  511. -moz-transition-duration:.6s;
  512. -webkit-transition-duration:.6s;
  513. -o-transition-duration:.6s;
  514. -webkit-filter: blur(1px);}
  515.  
  516.  
  517.  
  518. h1 {
  519. background-color: transparent;
  520. font-family: 'Montserrat', sans-serif;
  521. font-size: 16px;
  522. line-height: 20px;
  523. letter-spacing: 2px;
  524. text-align: center;
  525. text-transform:uppercase;
  526. color: #6c6c6c;
  527. }
  528.  
  529.  
  530. h2 {
  531. background-color: transparent;
  532. font-family: 'Montserrat', sans-serif;
  533. font-size: 15px;
  534. line-height: 16px;
  535. letter-spacing: 2px;
  536. text-align: left;
  537. text-transform:uppercase;
  538. color: #6c6c6c;
  539. }
  540.  
  541.  
  542.  
  543. h3 {
  544. background-color: transparent;
  545. background-image:url("https://68.media.tumblr.com/5eb55f16c2230a8c6e0e55c9bb1d0e31/tumblr_inline_on7avrmq7v1src988_540.jpg");
  546. border:0px dotted #9b9b9b;
  547. font-family: arial;
  548. font-weight:bold;
  549. color: #414141;
  550. text-shadow:0px 0px 2px #414141;
  551. font-size: 9px;
  552. line-height: 12px;
  553. letter-spacing: 2px;
  554. text-align: center;
  555. text-transform:uppercase;
  556. padding:1px;
  557. line-height:120%;}
  558.  
  559. h4 {
  560. color:#8f3131;
  561. font-size:25px;
  562. font-family: 'Alex Brush', cursive;
  563. line-height:23px;
  564. }
  565.  
  566.  
  567.  
  568. quotetext {
  569. background-color: transparent;
  570. font-family: times;
  571. font-size: 14px;
  572. line-height: 20px;
  573. letter-spacing: 2px;
  574. text-align: center;
  575. text-transform:uppercase;
  576. color: #0a0a0a;
  577. }
  578.  
  579.  
  580.  
  581. blockquote {
  582. word-wrap: break-word;
  583. padding:2px 7px;
  584. margin:3px 0 3px 10px;
  585. border-left:1px solid {color:border};
  586. background-color:transparent;}
  587.  
  588.  
  589. blockquote img{
  590. max-width:100%;
  591. height:auto;
  592. }
  593.  
  594. blockquote blockquote img{
  595. max-width:100%;
  596. height:auto;
  597. }
  598.  
  599.  
  600.  
  601.  
  602.  
  603.  
  604.  
  605. b, bold {
  606. font-size:11px;
  607. text-transform:uppercase;
  608. letter-spacing:1px;
  609. font-family: times;
  610. color: #5b7a44;
  611. text-shadow: 0px 0px 2px;
  612. }
  613.  
  614.  
  615. i, italic {
  616. font-size:21px;
  617. color: #5b7a44;
  618. font-family: 'Alex Brush', cursive;
  619. text-shadow: 0px 0px 2px;
  620. letter-spacing:2px;
  621. text-transform:lowercase;
  622. }
  623.  
  624.  
  625.  
  626. p {
  627. margin-top:5px;
  628. margin-bottom:5px;}
  629.  
  630.  
  631. ol {
  632. list-style:normal;}
  633.  
  634.  
  635. ul {
  636. list-style:square;}
  637.  
  638.  
  639. small {
  640. font-size:10px}
  641.  
  642.  
  643. sup,sub {
  644. font-size:11px}
  645.  
  646.  
  647. pre {
  648. font-size: 10px;
  649. letter-spacing:3px;
  650. background-color:#7f7f7f;
  651. font-family: "Times New Roman", Times, serif;
  652. font-style: none;
  653. text-align:center;
  654. }
  655.  
  656.  
  657.  
  658. big {
  659. font-size:14px;
  660. text-transform:uppercase;
  661. letter-spacing:2px;
  662. font-family: "Times New Roman", Times, serif;
  663. color: #b8b8b8;
  664. text-shadow: 0px 0px 2px #383838;
  665. }
  666.  
  667.  
  668.  
  669. {block:IfGreyscale}
  670.  
  671. img {
  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. img:hover {
  680. -webkit-filter:none;}
  681.  
  682. .html_photoset {
  683. -webkit-filter: grayscale(100%);
  684. -webkit-transition: all 0.9s ease-in-out;
  685. -moz-transition: all 0.9s ease-in-out;
  686. -o-transition: all 0.9s ease-in-out;
  687. -ms-transition: all 0.9s ease-in-out;
  688. transition: all 0.9s ease-in-out;}
  689.  
  690. .html_photoset:hover {
  691. -webkit-filter: none;}
  692.  
  693. {/block:IfGreyscale}
  694.  
  695.  
  696.  
  697. #pcontainer {
  698. background-color:transparent;
  699. width:255px;
  700. height:420px;
  701. padding: 10px;
  702. top:222px;
  703. margin-left:399px;
  704. position:relative;
  705. overflow-y:scroll;
  706. overflow-x:hidden;
  707. border:0px solid #fff;}
  708.  
  709.  
  710.  
  711. #pcontainer img {
  712. height:auto;
  713. max-width:100%;
  714. }
  715.  
  716.  
  717.  
  718. #content {
  719. margin-left:62px;
  720. width:310px;
  721. margin-top: -100px;
  722. }
  723.  
  724.  
  725. #posts {
  726. width:250px;
  727. padding:10px;
  728. margin-top: 85px;
  729. margin-left:-70px;
  730. padding-bottom:0px;}
  731.  
  732.  
  733.  
  734. #sidebar {
  735. margin-left: 1590px;
  736. line-height:15px;
  737. width: 180px;
  738. position: fixed;
  739. top: 200px;
  740. text-align: center; }
  741.  
  742.  
  743. #sidebar img {
  744. width:150px;
  745. padding-top:10px;
  746. padding-bottom:10px;}
  747.  
  748.  
  749. #description {
  750. margin-left: 0px;
  751. margin-top: -50px;
  752. width:180px;
  753. color:transparent;}
  754.  
  755.  
  756.  
  757. #actualnews {
  758. font-family: calibri;
  759. font-size:10px;
  760. text-align:justify;
  761. background:transparent;
  762. color: #949494;
  763. width:150px;
  764. height:430px;
  765. padding-top:3px;
  766. border:0px solid #fff;
  767. margin-left: 527px;
  768. margin-top: -318px;
  769. position:fixed;
  770. -webkit-filter: blur(0px);
  771. -webkit-transition: 0.8s ease-in;
  772. -moz-transition: 1s ease-in;
  773. transition: 1s ease-in;
  774. -webkit-transition: all 0.6s ease-in-out;
  775. -moz-transition: all 0.6s ease-in-out;
  776. -o-transition: all 0.6s ease-in-out;
  777. -ms-transition: all 0.6s ease-in-out;
  778. transition: all 0.6s ease-in-out;
  779. }
  780.  
  781.  
  782.  
  783. #actualnews:hover {
  784. -webkit-filter:none;
  785. -webkit-transition: all 0.6s ease-in-out;
  786. opacity:1;
  787. -webkit-transition: all 0.6s ease-in-out;
  788. -moz-transition: all 0.6s ease-in-out;
  789. -o-transition: all 0.6s ease-in-out;
  790. -ms-transition: all 0.6s ease-in-out;
  791. transition: all 0.6s ease-in-out;
  792. }
  793.  
  794.  
  795.  
  796. #thekey {
  797. position:fixed;
  798. color:#cecece;
  799. text-shadow: 0px 0px 2px #fff;
  800. margin-top:175px;
  801. margin-left:55px;
  802. width:710px;
  803. padding:9px;
  804. letter-spacing:2px;
  805. word-spacing:5px; /*this defines the separation of each word of the links*/
  806. font-family: helvetica;
  807. font-size:12px;
  808. text-align:center;
  809. background:transparent;
  810. text-transform:uppercase;
  811. -webkit-transform: rotate(-90deg);
  812. -moz-transform: rotate(-90deg);
  813. -o-transform: rotate(-90deg);
  814. }
  815.  
  816.  
  817.  
  818.  
  819.  
  820. /* JUMBLED LINKS */
  821.  
  822.  
  823.  
  824. .alinks {
  825. position:fixed;
  826. text-shadow: 0px 0px 0px #000;
  827. left:495px;
  828. top:88px;
  829. width:320px;
  830. transform: rotate(0deg);
  831. font-family: 'Alex Brush', cursive;
  832. font-size: 50px;}
  833.  
  834.  
  835. .alinks a {
  836. opacity:0.3;
  837. padding:10px;
  838. color:#0a0a0a;
  839. margin-right:0px;
  840. -webkit-filter: blur(0px);
  841. -webkit-transition: 0.8s ease-in;
  842. -moz-transition: 1s ease-in;
  843. transition: 1s ease-in;
  844. }
  845.  
  846. .alinks a:hover {
  847. opacity:1;
  848. -webkit-filter: blur(3px);
  849. -webkit-transition: all 0.6s ease-in-out;
  850. -moz-transition: all 0.6s ease-in-out;
  851. -o-transition: all 0.6s ease-in-out;
  852. -ms-transition: all 0.6s ease-in-out;
  853. transition: all 0.6s ease-in-out;
  854. color: #c7c7c7;
  855. text-shadow: 3px 3px 3px #000;
  856. }
  857.  
  858.  
  859.  
  860.  
  861. .blinks {
  862. position:fixed;
  863. text-shadow: 0px 0px 0px #000;
  864. left:745px;
  865. top:470px;
  866. transform: rotate(0deg);
  867. font-family: 'Montserrat', sans-serif;
  868. font-size: 15px;}
  869.  
  870.  
  871. .blinks a {
  872. padding:10px;
  873. color:#686868;
  874. margin-right:0px;
  875. -webkit-filter: blur(0px);
  876. -webkit-transition: 0.8s ease-in;
  877. -moz-transition: 1s ease-in;
  878. transition: 1s ease-in;
  879. }
  880.  
  881. .blinks a:hover {
  882. -webkit-transition: all 0.6s ease-in-out;
  883. -moz-transition: all 0.6s ease-in-out;
  884. -o-transition: all 0.6s ease-in-out;
  885. -ms-transition: all 0.6s ease-in-out;
  886. transition: all 0.6s ease-in-out;
  887. color: #727272;
  888. text-shadow: 2px 2px 2px #000;
  889. }
  890.  
  891.  
  892.  
  893.  
  894. .clinks {
  895. position:fixed;
  896. text-shadow: 0px 0px 0px #000;
  897. left:745px;
  898. top:500px;
  899. transform: rotate(0deg);
  900. font-family: 'Montserrat', sans-serif;
  901. font-size: 15px;}
  902.  
  903.  
  904. .clinks a {
  905. padding:10px;
  906. color:#686868;
  907. margin-right:0px;
  908. -webkit-filter: blur(0px);
  909. -webkit-transition: 0.8s ease-in;
  910. -moz-transition: 1s ease-in;
  911. transition: 1s ease-in;
  912. }
  913.  
  914. .clinks a:hover {
  915. -webkit-transition: all 0.6s ease-in-out;
  916. -moz-transition: all 0.6s ease-in-out;
  917. -o-transition: all 0.6s ease-in-out;
  918. -ms-transition: all 0.6s ease-in-out;
  919. transition: all 0.6s ease-in-out;
  920. color: #727272;
  921. text-shadow: 2px 2px 2px #000;
  922. }
  923.  
  924.  
  925.  
  926.  
  927. .dlinks {
  928. position:fixed;
  929. text-shadow: 0px 0px 0px #000;
  930. left:745px;
  931. top:530px;
  932. transform: rotate(0deg);
  933. font-family: 'Montserrat', sans-serif;
  934. font-size: 15px;}
  935.  
  936.  
  937. .dlinks a {
  938. padding:10px;
  939. color:#686868;
  940. margin-right:0px;
  941. -webkit-filter: blur(0px);
  942. -webkit-transition: 0.8s ease-in;
  943. -moz-transition: 1s ease-in;
  944. transition: 1s ease-in;
  945. }
  946.  
  947. .dlinks a:hover {
  948. -webkit-transition: all 0.6s ease-in-out;
  949. -moz-transition: all 0.6s ease-in-out;
  950. -o-transition: all 0.6s ease-in-out;
  951. -ms-transition: all 0.6s ease-in-out;
  952. transition: all 0.6s ease-in-out;
  953. color: #727272;
  954. text-shadow: 2px 2px 2px #000;
  955. }
  956.  
  957.  
  958.  
  959.  
  960. .elinks {
  961. position:fixed;
  962. text-shadow: 0px 0px 0px #000;
  963. left:745px;
  964. top:560px;
  965. transform: rotate(0deg);
  966. font-family: 'Montserrat', sans-serif;
  967. font-size: 15px;}
  968.  
  969.  
  970. .elinks a {
  971. padding:10px;
  972. color:#686868;
  973. margin-right:0px;
  974. -webkit-filter: blur(0px);
  975. -webkit-transition: 0.8s ease-in;
  976. -moz-transition: 1s ease-in;
  977. transition: 1s ease-in;
  978. }
  979.  
  980. .elinks a:hover {
  981. -webkit-transition: all 0.6s ease-in-out;
  982. -moz-transition: all 0.6s ease-in-out;
  983. -o-transition: all 0.6s ease-in-out;
  984. -ms-transition: all 0.6s ease-in-out;
  985. transition: all 0.6s ease-in-out;
  986. color: #727272;
  987. text-shadow: 2px 2px 2px #000;
  988. }
  989.  
  990.  
  991.  
  992. .flinks {
  993. position:fixed;
  994. text-shadow: 0px 0px 0px #000;
  995. left:900px;
  996. top:500px;
  997. transform: rotate(0deg);
  998. font-family: 'Montserrat', sans-serif;
  999. font-size: 15px;}
  1000.  
  1001.  
  1002. .flinks a {
  1003. padding:10px;
  1004. color:#2a2a2a;
  1005. margin-right:0px;
  1006. -webkit-filter: blur(0px);
  1007. -webkit-transition: 0.8s ease-in;
  1008. -moz-transition: 1s ease-in;
  1009. transition: 1s ease-in;
  1010. }
  1011.  
  1012. .flinks a:hover {
  1013. -webkit-transition: all 0.6s ease-in-out;
  1014. -moz-transition: all 0.6s ease-in-out;
  1015. -o-transition: all 0.6s ease-in-out;
  1016. -ms-transition: all 0.6s ease-in-out;
  1017. transition: all 0.6s ease-in-out;
  1018. color: #727272;
  1019. text-shadow: 2px 2px 2px #000;
  1020. }
  1021.  
  1022.  
  1023.  
  1024. .credit {
  1025. position:fixed;
  1026. text-shadow: 0px 0px 11px #7C6868;
  1027. right:15px;
  1028. bottom:15px;
  1029. transform: rotate(0deg);
  1030. font-family: helvetica;
  1031. font-size: 14px; }
  1032.  
  1033.  
  1034. .credit a {
  1035. padding:10px;
  1036. color:#191919;
  1037. margin-right:0px;
  1038. -webkit-filter: blur(1px);
  1039. -webkit-transition: 0.8s ease-in;
  1040. -moz-transition: 1s ease-in;
  1041. transition: 1s ease-in;
  1042. }
  1043.  
  1044. .credit a:hover {
  1045. -webkit-transition: all 0.6s ease-in-out;
  1046. -moz-transition: all 0.6s ease-in-out;
  1047. -o-transition: all 0.6s ease-in-out;
  1048. -ms-transition: all 0.6s ease-in-out;
  1049. transition: all 0.6s ease-in-out;
  1050. color: #000000;
  1051. text-shadow: 2px 2px 2px #000000;
  1052. }
  1053.  
  1054.  
  1055.  
  1056.  
  1057.  
  1058.  
  1059.  
  1060.  
  1061.  
  1062.  
  1063. /* JUMBLED LINKS ENDS */
  1064.  
  1065.  
  1066.  
  1067. #pagination {
  1068. position:fixed;
  1069. font-family:times;
  1070. width:300px;
  1071. font-size:10px;
  1072. top:590px;
  1073. left:500px;
  1074. letter-spacing:3px;
  1075. text-align:center;
  1076. z-index:999999999999;
  1077. }
  1078.  
  1079. #pagination a {
  1080. text-transform:uppercase;
  1081. color:#181818;
  1082. -webkit-filter: blur(1px);
  1083. -webkit-transition: 0.8s ease-in;
  1084. -moz-transition: 1s ease-in;
  1085. transition: 1s ease-in;
  1086. z-index:999999999999;
  1087. }
  1088.  
  1089. #pagination a:hover {
  1090. color:#000;
  1091. -webkit-filter: blur(0px);
  1092. -webkit-transition: 0.2s ease-in;
  1093. -moz-transition: 1s ease-in;
  1094. transition: 1s ease-in;
  1095. }
  1096.  
  1097.  
  1098. .audio {
  1099. width:335px;
  1100. padding-bottom:10px;
  1101. background-color:{color:#000000};}
  1102.  
  1103. .albumart {
  1104. float:left;
  1105. padding:0px 10px 10px 0px;}
  1106.  
  1107. .albumart img {
  1108. width:65px;
  1109. height:65px;}
  1110.  
  1111. .playercontainer {
  1112. text-align:left;
  1113. padding:10px;
  1114. background-color:#090909;
  1115. width:315px;}
  1116.  
  1117. .audioinfo {
  1118. padding:10px;
  1119. color:{color:text};}
  1120.  
  1121.  
  1122.  
  1123.  
  1124.  
  1125. /* QUESTIONS & ANSWERS DETAILS */
  1126.  
  1127.  
  1128. #asker {
  1129. font-family: 'Arizonia', cursive;
  1130. font-style:none;
  1131. letter-spacing:2px;
  1132. text-align:center;
  1133. padding-top: 10px;
  1134. margin-left:0px;
  1135. text-transform:lowercase;
  1136. color: #c9c9c9;
  1137. font-size:30px;
  1138. padding:5px;
  1139. letter-spacing:0px
  1140. text-shadow:0 0 2px #aeaeae;
  1141. }
  1142.  
  1143.  
  1144. #asker a{
  1145. font-family: 'Arizonia', cursive;
  1146. font-style:none;
  1147. letter-spacing:2px;
  1148. text-transform:lowercase;
  1149. font-size:30px;
  1150. letter-spacing: 0px;
  1151. text-shadow: none;
  1152. color: #c9c9c9;
  1153. text-shadow:0 0 2px #1a1a1a;
  1154. -webkit-filter: blur(0.5px);
  1155. }
  1156.  
  1157.  
  1158. #asker a:hover {
  1159. color: #656565;
  1160. letter-spacing: 0px;
  1161. text-shadow:0 0 2px #000;
  1162. -webkit-filter: blur(2px);
  1163. -webkit-transition:all .5s ease-in-out;
  1164. -moz-transition:all .5s ease-in-out;
  1165. transition:all .5s ease-in-out;
  1166. }
  1167.  
  1168.  
  1169.  
  1170. #ask {
  1171. font-family: times;
  1172. width:225px;
  1173. font-size:8px;
  1174. text-align:center;
  1175. padding-top: 5px;
  1176. margin-left:0px;
  1177. text-transform:auto;
  1178. letter-spacing:3px
  1179. margin-top:-10px;
  1180. padding:5px;
  1181. background: #eee;
  1182. background: url("");
  1183. color:#0a0a0a;
  1184. text-transform: uppercase;
  1185. border-bottom-left-radius: 10px;
  1186. border-bottom-right-radius: 10px;
  1187. border-top-left-radius: 10px;
  1188. border-top-right-radius: 10px;
  1189. padding:10px;
  1190. letter-spacing:2px;
  1191. border-bottom:solid 1px #717171;
  1192. border-top:solid 1px #717171;
  1193. }
  1194.  
  1195.  
  1196. .ans {
  1197. text-align:center;
  1198. padding:10px;
  1199. }
  1200.  
  1201.  
  1202. /* POST INFO DETAILS */
  1203.  
  1204.  
  1205.  
  1206. #info {
  1207. background: url("https://68.media.tumblr.com/5eb55f16c2230a8c6e0e55c9bb1d0e31/tumblr_inline_on7avrmq7v1src988_540.jpg");
  1208. border: 1px solid #717171;
  1209. border-bottom-right-radius: 15px;
  1210. border-bottom-left-radius: 15px;
  1211. border-top-right-radius: 15px;
  1212. border-top-left-radius: 15px;
  1213. width:249px;
  1214. height:25px;
  1215. text-align:center;
  1216. letter-spacing:10px;
  1217. margin-top:8px;
  1218. margin-bottom:50px;
  1219. text-transform:uppercase;
  1220. font-size:15px;
  1221. font-style:none;
  1222. }
  1223.  
  1224.  
  1225.  
  1226.  
  1227. #info a {
  1228. color:#dcdcdc;}
  1229.  
  1230. #info a:hover {
  1231. color:#000;}
  1232.  
  1233.  
  1234.  
  1235.  
  1236. #tags {
  1237. font-family: helvetica;
  1238. color:#0a0a0a;
  1239. padding-bottom:35px;
  1240. letter-spacing:2px;
  1241. text-transform:uppercase;
  1242. font-size:7px;
  1243. font-style:normal;
  1244. margin-top:10px;
  1245. text-align:right;
  1246. float:right;
  1247. }
  1248.  
  1249.  
  1250. #tags a {
  1251. display:inline-block;
  1252. padding:-3px;
  1253. opacity:0.8;
  1254. text-align:center;
  1255. color:#0a0a0a;
  1256.  
  1257. }
  1258.  
  1259.  
  1260. #tags a:hover {
  1261. color:{color:text};
  1262. }
  1263.  
  1264.  
  1265.  
  1266.  
  1267.  
  1268.  
  1269. .note {
  1270. text-transform:uppercase;
  1271. font-style:normal;
  1272. letter-spacing:0px;
  1273. font-size: 10px;
  1274. text-align:left;
  1275. line-height:90%;
  1276. margin-left:-40px;}
  1277.  
  1278. .note li {
  1279. list-style-type:none;
  1280. border-bottom:0px solid {color:border};
  1281. padding:10px 25px 10px 25px;
  1282. text-align:left;
  1283. margin:0px;
  1284. -moz-transition-duration:0.5s;
  1285. -webkit-transition-duration:0.5s;
  1286. -o-transition-duration:0.5s;}
  1287.  
  1288. .note img.avatar {
  1289. margin-right: 10px;
  1290. width: 16px;
  1291. height: 16px;}
  1292.  
  1293.  
  1294.  
  1295.  
  1296. /*--BASIC POP-UP DETAILS--*/
  1297.  
  1298.  
  1299.  
  1300. .popup_block{
  1301. display:none;
  1302. background: url("");
  1303. background:#191919;
  1304. padding:20px;
  1305. color:#cecece;
  1306. border:0px solid #eee; /* if you want a solid white pop-up, delete this */
  1307. float:left;
  1308. height: 400px;
  1309. top:50%; left:50%;
  1310. position:fixed;
  1311. z-index: 99999;
  1312. -webkit-box-shadow: 1px 1px 5px #323232;
  1313. -moz-box-shadow: 1px 1px 5px #323232;
  1314. box-shadow: 1px 1px 5px #323232;
  1315. }
  1316.  
  1317.  
  1318. *html #fade {position: absolute;}
  1319. *html .popup_block {position: absolute;}
  1320. #fade {
  1321. display:none;
  1322. position:fixed;
  1323. left:0px;
  1324. top:0px;
  1325. width:100%;
  1326. height:100%;
  1327. z-index:9999;
  1328. background:#000;
  1329. opacity:0.5;
  1330. }
  1331.  
  1332.  
  1333.  
  1334.  
  1335. .popupnavlinks {
  1336. padding-top:5px;
  1337. text-align:center; }
  1338.  
  1339.  
  1340. .popupnavlinks a {
  1341. display:inline-block;
  1342. width:120px; height:8px;
  1343. margin:2px; padding:6px 6px 10px;
  1344. text-align:center;
  1345. font-family:'helvetica';
  1346. font-size:8px;
  1347. text-transform:uppercase;
  1348. letter-spacing:1px;
  1349. color:#dcdcdc; background:transparent;
  1350. background-image:url('https://67.media.tumblr.com/300286f213a8d26a130bfac248803dd5/tumblr_o9e71aSClH1ud4mdwo2_400.png');
  1351. border:1px dotted;
  1352. border-color: #9b9b9b;
  1353. }
  1354.  
  1355.  
  1356. .popupnavlinks a:hover {
  1357. display:inline-block;
  1358. width:120px; margin:2px;
  1359. padding:6px 6px 10px;
  1360. text-align:center;
  1361. font-family:'helvetica';
  1362. font-size:8px;
  1363. text-transform:uppercase;
  1364. letter-spacing:1px;
  1365. color:#2e2e2e;
  1366. background:transparent }
  1367.  
  1368.  
  1369.  
  1370. .popupclose {
  1371. float:right; top:0px; right:0px;
  1372. margin-top:-10px; margin-right:-10px;
  1373. font-family:'Scada', sans serif;
  1374. font-size:10px;
  1375. font-weight:bold }
  1376.  
  1377. .popupclose a {
  1378. color:#aaa }
  1379.  
  1380.  
  1381.  
  1382. /*--TOOLTIP DETAILS--*/
  1383.  
  1384.  
  1385.  
  1386. #s-m-t-tooltip{
  1387. max-width:400px;
  1388. margin:15px;
  1389. padding:2px 8px;
  1390. background: #dcdcdc;
  1391. background-image:url('https://68.media.tumblr.com/5eb55f16c2230a8c6e0e55c9bb1d0e31/tumblr_inline_on7avrmq7v1src988_540.jpg');
  1392. border:1px dotted;
  1393. border-color: #727272;
  1394. color:#9b9b9b;
  1395. z-index:99999999999999999999;
  1396. font-size:9px;
  1397. letter-spacing:2px;
  1398. font-style:bold;
  1399. letter-spacing:2px;
  1400. font-family:'helvetica';
  1401. text-transform:uppercase;
  1402. box-shadow:1px 1px 3px rgba(0,0,0,.1);}
  1403.  
  1404.  
  1405.  
  1406.  
  1407.  
  1408. </style>
  1409.  
  1410.  
  1411. </head>
  1412.  
  1413. <body>
  1414.  
  1415. <div id="content">
  1416.  
  1417. <div id="sidebar">
  1418.  
  1419. <img src="{image:Sidebar}" />
  1420.  
  1421. <div id="description">{description}</div>
  1422.  
  1423. </div>
  1424.  
  1425. <div id="pagination">
  1426. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">previous</a> • {/block:PreviousPage}{block:NextPage} <a href="{NextPage}">next</a>{/block:NextPage}{/block:Pagination}
  1427. </div>
  1428.  
  1429.  
  1430. <div id="links">
  1431.  
  1432.  
  1433. <div id="linkbar">
  1434.  
  1435.  
  1436. <div class="alinks">
  1437. <a href="/" title="refresh.">do i terrify?</a>
  1438. </div>
  1439.  
  1440.  
  1441. <div class="blinks">
  1442. <a href="#?w=310" rel="box1" class="poplight" title="ask."> 01. </a>
  1443. </div>
  1444.  
  1445.  
  1446. <div class="clinks">
  1447. <a href="#?w=310" rel="box2" class="poplight" title="laws."> 02. </a>
  1448. </div>
  1449.  
  1450.  
  1451. <div class="dlinks">
  1452. <a href="http://aegisframed.tumblr.com/n." title="navi."> 03. </a>
  1453. </div>
  1454.  
  1455.  
  1456.  
  1457. <div class="elinks">
  1458. <a href="#?w=310" rel="box4" class="poplight" title="about."> 04. </a>
  1459. </div>
  1460.  
  1461.  
  1462.  
  1463.  
  1464.  
  1465. <div class="credit">
  1466. <a href="http://agirlingrey.tumblr.com/" title="agirlingrey.">A.</a>
  1467. </div>
  1468.  
  1469.  
  1470. </div></div>
  1471.  
  1472.  
  1473. <div id="pcontainer">
  1474.  
  1475. <div id="content"><div id="posts">
  1476. {block:Posts}
  1477.  
  1478.  
  1479. {block:Quote}<quotetext>"{Quote}"</quotetext>&nbsp; <br><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; — {Source} {/block:Quote}
  1480. {block:Title}<h1>{Title}&nbsp;</h1>{/block:Title}
  1481. {block:Text}{Body}{/block:Text}
  1482.  
  1483. {block:Link}<a href="{URL}" class="link" {Target}><h1>{Name}&nbsp;</h1></a>
  1484.  
  1485. {block:Description}<P>{Description}</p>{/block:Description}{/block:Link}
  1486.  
  1487. {block:Photo}<center>{LinkOpenTag}<img src="{PhotoURL-HighRes}" width="360px">{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1488. {block:Photoset}<center>{Photoset}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1489.  
  1490. {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}
  1491.  
  1492. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1493.  
  1494.  
  1495. {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}
  1496.  
  1497.  
  1498. {block:Audio}<div class="audio">
  1499.  
  1500. {block:AlbumArt}
  1501. {/block:AlbumArt}
  1502.  
  1503.  
  1504. <div class="audioinfo">{block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}{block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  1505. {/block:ExternalAudio}<b>Played:</b> {PlayCount} times</div>
  1506. <br><div class="playercontainer">{AudioPlayerBlack}</div></div>
  1507. {block:Caption}{Caption}{/block:Caption}<br>{/block:Audio}
  1508.  
  1509.  
  1510. <div id="info">
  1511. <br>
  1512.  
  1513. &nbsp; &nbsp;
  1514.  
  1515.  
  1516. {block:Date}
  1517. <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>
  1518. {/block:Date}
  1519.  
  1520.  
  1521. {block:RebloggedFrom}
  1522. <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>
  1523. {/block:RebloggedFrom}
  1524.  
  1525.  
  1526. {block:ContentSource}
  1527. <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>
  1528. {/block:ContentSource}
  1529.  
  1530.  
  1531. <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>
  1532.  
  1533.  
  1534. <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>
  1535.  
  1536.  
  1537. <br>
  1538.  
  1539. {block:HasTags}<div id="tags">{block:Tags} & <a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}</div> &nbsp;
  1540. {/block:Posts}
  1541. <div class="note">
  1542. {block:PostNotes}{PostNotes}{/block:PostNotes}
  1543. </div>
  1544.  
  1545. {/block:Posts}</div></div>
  1546.  
  1547.  
  1548.  
  1549. </div> </div> </div> </div> </div> </div>
  1550.  
  1551.  
  1552.  
  1553. </body>
  1554.  
  1555.  
  1556.  
  1557. <div id="box1" class="popup_block">
  1558.  
  1559. <h3>
  1560.  
  1561. </h3>
  1562.  
  1563. <center>
  1564.  
  1565. <p><iframe frameborder="0" height="250" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/legionmade.tumblr.com" width="100%"></iframe></p>
  1566.  
  1567. </div>
  1568.  
  1569. </center>
  1570.  
  1571.  
  1572.  
  1573. <div id="box2" class="popup_block">
  1574.  
  1575. <div style="width:auto;height:405px;overflow:scroll;padding:5px;">
  1576. <p><b>GENERAL</b>.</p>
  1577. <ul>
  1578. <li>I hope this isn&rsquo;t too long or too harsh, I&rsquo;m not really as strict as these rules make me seem. I love making new friends.</li>
  1579. <li>Medusa is based primarily off the original Greek myth and my own interpretations of her. I&rsquo;ve been working on her for a year, on a variety of different projects, and have formed my own opinions of her quite solidly by now, so I apologize if my interpretation of her doesn&rsquo;t line up with yours. Having conflicting ideas of her doesn&rsquo;t invalidate either of ours, and I&rsquo;ll respect yours if you respect mine.</li>
  1580. <li>I operate under the version of the myth where Athena transformed Medusa out of love and not anger (not necessarily romantic love). I write Medusa assuming that Athena&rsquo;s reasons were out of a desire to protect her priestess, and that Medusa may have even asked her to do so.</li>
  1581. <li>I also have my own ideas for Stheno and Euryale, based on research and rather loose interpretations of my own. I will mention them often, as they are the most important people to Medusa. I may write them actively in a thread, however I don&rsquo;t have icons for them and I don&rsquo;t plan on getting any. About pages for stheno and euryale are here:&nbsp;<a href="http://www.aegisframed.tumblr.com/s.">x</a>&nbsp;,&nbsp;<a href="http://aegisframed.tumblr.com/r.">y</a>.</li>
  1582. <li>Unless I say otherwise, assume Medusa is wearing a red blindfold and a headscarf in a thread. If it&rsquo;s taking place on her island, only the blindfold applies.&nbsp;</li>
  1583. <li>I default to regular small text, however I will change my text size to match yours. I&rsquo;m not picky with text size. I will do regular (especially if it&rsquo;s to make it easier for you to read our thread) or super small text, depending on what you default to.&nbsp;</li>
  1584. <li>I won&rsquo;t follow if you are lesbophobic, steal from tumblr poets, are a rape apologist, etc.&nbsp;</li>
  1585. <li>Please don&rsquo;t edit my reply. If I write you a starter using small text and it&rsquo;s difficult for you to see, it&rsquo;s perfectly alright to size it back up, and I&rsquo;ll refrain from using small text with you. However, if you are sizing my text down repeatedly or removing italics or bolds, and do not stop despite being asked, I will drop the threads and likely unfollow. I work hard on my replies and what formatting I have is there for a reason and because it makes narrative sense.<i>please do not edit my replies</i>under any circumstances save for the&nbsp;<b>ONE</b>&nbsp;where it is okay.</li>
  1586. </ul>
  1587. <p><b>INTERACTIONS</b>.</p>
  1588. <ul>
  1589. <li>Medusa is cited often as the most terrifying woman in the world. Countless scholars and writers have identified her as such. (If you need sources, I am more than happy to provide them.) I understand if your character is also something horrible and formed of terror, but if your character is not (and, more importantly, if your character is a&nbsp;<i>man</i>) then they should be terrified of her.&nbsp;</li>
  1590. <li>I get that she&rsquo;s pretty OP, but &ndash; you know &ndash; most terrifying woman. And her sister Stheno is canonically more powerful than she is; so it would be hard to beat her in a fight if it came to that. Sorry if your character is a standard overpowered male oc, you can&rsquo;t kill her. lmao</li>
  1591. <li>(To be honest, only a woman could truly defeat her. Exceptions to this rule will be&nbsp;<i>extremely</i>&nbsp;rare.)</li>
  1592. <li>I&rsquo;m not against writing with male characters, as I feel that would make it difficult to explore her character in its entirety, but I may be a little picky as to whom I choose.&nbsp;</li>
  1593. <li>I am not interested in writing with Poseidon characters or Perseus characters. In my canon, Medusa and her sisters got revenge on Poseidon by killing him; and Perseus was killed when he came to their island. His body is still there, petrified and hidden.</li>
  1594. <li>The reason they killed Poseidon is because I used Medusa as a way for me &nbsp;to recover from my own trauma, and it helps immensely to imagine her getting revenge on her rapist in this way. I couldn&rsquo;t do anything to the men who hurt me, but I can heal through Medusa; I&rsquo;m sorry if this upsets you, but I&rsquo;m not willing to change this.&nbsp;</li>
  1595. <li>If your character is male and flirts with her, do not expect her to respond kindly. She will react violently. I will ask you before doing anything of serious harm; likewise, ask me before touching her, no matter how casual it may seem.</li>
  1596. <li>(Women are free to do as they please, though.)</li>
  1597. <li>And apparently this needs to be said, but:&nbsp;<i>i do not accept anything that forces medusa to feel attraction to a man</i>. I don&rsquo;t care if your male character is the literal embodiment of sexual or romantic attraction, she will not be attracted to your character. I won&rsquo;t accept even Aphrodite doing this to her.&nbsp;</li>
  1598. <li>I&rsquo;m always happy to write with gorgon ocs and children of Medusa, but I don&rsquo;t accept children conceived through consenting sex with a man. If you&rsquo;re willing to change your character&rsquo;s parentage, I&rsquo;d be more than happy to write with you.&nbsp;</li>
  1599. <li>I won&rsquo;t write with PJO characters, either; I have not read the books and do not intend to. I will only make exceptions if your writing and portrayal is compelling enough or if I know you from somewhere else.</li>
  1600. </ul>
  1601. <p><b>SHIPPING</b>.</p>
  1602. <ul>
  1603. <li>I do not, under any circumstances, ship with males. Medusa is a lesbian. This does not make her &lsquo;more of a challenge,&rsquo; or mean she will date a man with a little persuasion.&nbsp;<i>she is a lesbian.&nbsp;</i></li>
  1604. <li>(This is a trans-inclusive blog. Don&rsquo;t follow if you&rsquo;re a terf.)</li>
  1605. <li>I&rsquo;m also &hellip;&hellip;.. not too comfortable shipping with minors. Sorry about that. However, I love other sorts of relationships &ndash; mom medusa is pretty popular.</li>
  1606. <li>I have heard that some people in the greek myth community here prefer Medusa as having been a consenting partner or having been born a gorgon, and may actually ship her with her rapist &ndash; but, as a survivor of sexual assault, her story is so important to me. It helped me move on and become able to operate normally in society, without fearing every man I encountered.&nbsp;<i>that&rsquo;s</i>the kind of story I want to tell with her, not a story of trauma, but a story of recovery and empowerment. As I said, I do understand if you disagree with this &ndash; but my interpretation is no less valid than yours.&nbsp;</li>
  1607. <li>It may take some development to ship. Sometimes there&rsquo;s instant attraction, others I prefer a slow burn approach; I generally ship with chemistry, and with people who make the effort to understand her.</li>
  1608. <li>I do ship her with Athena, but if you write an Athena I understand if this makes you uncomfortable. I will never force a ship on you.</li>
  1609. <li>(As I do think Medusa was in love with Athena, I may mention her in threads not involving her. I&rsquo;m not exclusive with an Athena currently, so any mention of her will derive from my own personal interpretation.)&nbsp;</li>
  1610. </ul>
  1611. <p><b>SMUT</b>.</p>
  1612. <ul>
  1613. <li>Medusa and I are both of age; I&rsquo;m 20 and she&rsquo;s thousands of years old in most threads.&nbsp;</li>
  1614. <li>Smut is unlikely. It takes her some time to accept sexual attraction of her own and may need to discuss it with your character. We would definitely need to discuss it ooc at least, to make sure both of us are fully comfortable with it.&nbsp;</li>
  1615. <li>Dub-con or non-con&nbsp;<i>will</i>&nbsp;<i>not</i>&nbsp;happen, under any circumstances.&nbsp;</li>
  1616. <li>This should go without saying, but:&nbsp;<i>i will not write smut with those under 18 under any circumstances.</i>&nbsp;If you ask I will block you.&nbsp;</li>
  1617. </ul>
  1618. <p><b>ICONS</b>.</p>
  1619. <ul>
  1620. <li>All icons were made by me. Do not take them.&nbsp;</li>
  1621. <li>I don&rsquo;t use gifs. I don&rsquo;t mind if you use them, but I will not.</li>
  1622. <li>I don&rsquo;t have many icons, only because my face claim is from a three minute scene and good caps are hard to come by. I may use the same icons repeatedly because of this.&nbsp;</li>
  1623. <li>(I have a good amount of human Medusa icons, though. Natalia is pretty popular and appears in quite a few photoshoots and commercials, etc.)</li>
  1624. <li>As I said before, I have no icons of Stheno and Euryale and do not plan on getting any. I have very specific ideas of their appearances and have found no one even close. If I&rsquo;m writing only them in a thread, I would prefer it if you also didn&rsquo;t use icons, but that&rsquo;s ultimately up to you.&nbsp;</li>
  1625. <li>I do have some comic icons I will use with characters whose primary face claim is from something drawn or animated. They&rsquo;re from several different comics and don&rsquo;t look much like her (then again, neither does my primary fc) but will suffice for now. The red blindfold applies in these icons, too; just assume she&rsquo;s always wearing it.</li>
  1626. <li>I don&rsquo;t have a teen fc yet and thus will be using Natalia in those threads; if this makes you uncomfortable, we don&rsquo;t have to use icons at all.&nbsp;</li>
  1627. </ul>
  1628. <p><b>MISC</b>.</p>
  1629. <ul>
  1630. <li>I tag triggers and content warnings in the x / format. I tag everything as I see it; if you need something specific tagged, feel free to tell me (on anon if you wish) and I&rsquo;ll tag it for you, no problem.</li>
  1631. <li>My only trigger is sexual assault in all its forms. Please tag it.&nbsp;</li>
  1632. <li>If I do, say, or reblog anything problematic (i.e. something racist or transphobic) go ahead and yell at me and I&rsquo;ll fix it. I don&rsquo;t mind being called out.</li>
  1633. <li>Content and trigger warning for snakes, obviously; I will tag them when I can, but they won&rsquo;t always be in places that can be tagged. If this is a problem, it&rsquo;s okay to unfollow. I want you to feel safe.&nbsp;</li>
  1634. <li>Warning for incest and incest mentions. It&rsquo;s ancient Greece, and I do believe the gorgons had relatively few boundaries between them. This is based in part on their parents&rsquo; relationship: they were siblings, and thus likely did not mind their children&rsquo;s subsequently similar relationships. I understand that this is not something most people are comfortable with; I won&rsquo;t mention it explicitly. The incest does not translate over to modern verses unless we&rsquo;ve plotted it out, for whatever reason.&nbsp;</li>
  1635. <li>Thank you for reading all of this! I don&rsquo;t ask for a password, nor do I give them; if I follow you, you can assume I&rsquo;ve read all the necessary pages, and if you follow me I will assume the same.&nbsp;</li>
  1636. </ul>
  1637.  
  1638. </div>
  1639. </div>
  1640.  
  1641.  
  1642.  
  1643.  
  1644. <div id="box3" class="popup_block">
  1645.  
  1646. <h3></h3>
  1647.  
  1648. <ul id="tabs">
  1649. <li class="active"></li>
  1650. <li></li>
  1651. <li></li>
  1652. </ul>
  1653.  
  1654. <div style="width:auto;height:335px;overflow:scroll;padding:5px;">
  1655.  
  1656.  
  1657.  
  1658. <ul id="tab">
  1659. <li class="active">
  1660.  
  1661.  
  1662. <a href=""></a>
  1663. <img src="" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1664.  
  1665.  
  1666. <br>
  1667.  
  1668.  
  1669. <br><br><br>
  1670.  
  1671.  
  1672.  
  1673. <a href=""></a>
  1674. <img src="" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1675.  
  1676.  
  1677. <br>
  1678.  
  1679.  
  1680.  
  1681. <br><br><br>
  1682.  
  1683.  
  1684. <a href=""></a>
  1685. <img src="" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1686.  
  1687.  
  1688. <br>
  1689.  
  1690.  
  1691. <br><br>
  1692.  
  1693.  
  1694.  
  1695. </li>
  1696. <li>
  1697.  
  1698.  
  1699.  
  1700. <a href=""></a>
  1701. <img src="" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1702.  
  1703.  
  1704. <br>
  1705.  
  1706.  
  1707. <br><br><br>
  1708.  
  1709.  
  1710. <a href=""></a>
  1711. <img src="" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1712.  
  1713.  
  1714. <br>
  1715.  
  1716.  
  1717. <br><br>
  1718.  
  1719. <a href=""></a>
  1720. <img src="" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1721.  
  1722.  
  1723. <br>
  1724.  
  1725.  
  1726. <br><br>
  1727.  
  1728.  
  1729. </li>
  1730. <li>
  1731.  
  1732.  
  1733.  
  1734. <a href=""></a>
  1735. <img src="" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1736.  
  1737.  
  1738. <br>
  1739.  
  1740.  
  1741. <br><br><br>
  1742.  
  1743.  
  1744. <a href=""></a>
  1745. <img src="" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1746.  
  1747.  
  1748. <br>
  1749.  
  1750.  
  1751.  
  1752. <br><br>
  1753.  
  1754.  
  1755.  
  1756. </li>
  1757. <li>
  1758.  
  1759.  
  1760. </li>
  1761. </ul>
  1762.  
  1763.  
  1764. </div>
  1765. </div>
  1766.  
  1767.  
  1768.  
  1769. <div id="box4" class="popup_block">
  1770.  
  1771. <div style="width:auto;height:400px;overflow:scroll;padding:5px;">
  1772. <p><b>BASICS.</b></p>
  1773. <p><b>NAME:</b>&nbsp;medusa<br /><b>AGE:&nbsp;</b>unknown; 20-25 as a priestess<br /><b>BIRTHDATE:</b>&nbsp;unknown<br /><b>SPECIES:&nbsp;</b>gorgon, formerly human<br /><b>ORIENTATION:&nbsp;</b>lesbian<br /><b>PROFESSION:</b>&nbsp;verse dependent&nbsp;</p>
  1774. <p><b>RELATIONSHIPS.</b></p>
  1775. <p><b>PARENTS:&nbsp;</b>ceto &amp; phorcys<br /><b>SIBLINGS:&nbsp;</b><a href="http://aegisframed.tumblr.com/s.">stheno</a>&nbsp;&amp;&nbsp;<a href="http://aegisframed.tumblr.com/e.">euryale</a>; the hesperides; the graeae; thoosa; scylla; echidna; the sirens; ladon<br /><b>SIGNIFICANT OTHERS:&nbsp;</b>verse dependent<br /><b>CHILDREN:&nbsp;</b>pegasus and chrysaor in canon, however not recognized here, as she was not beheaded; recognized children are verse dependent&nbsp;<br /><b>ENEMIES:</b>&nbsp;poseidon and perseus, both deceased; anyone who threatens her home or her family</p>
  1776. <p><b>PHYSICAL ASPECTS.</b></p>
  1777. <p><b>HAIR:</b>&nbsp;green snakes, somewhere between blonde and brown as a human<br /><b>EYES:</b>&nbsp;gray, like stone, blue as a human; link to her eyes&nbsp;<a href="https://68.media.tumblr.com/ca3cba8c665981f595c61c74552745e1/tumblr_inline_oluu0sP3PB1uq13u1_540.jpg">x</a>, edited by caediteos<br /><b>HEIGHT:</b>&nbsp;6'1<br /><b>SKIN:</b>&nbsp;light green<br /><b>BUILD:</b>&nbsp;toned, muscular<br /><b>ATTIRE:</b>&nbsp;typically long dresses featuring various bits of armor, in modern verses, she favors traditionally masculine clothing and boots with heels<br /><b>TATTOOS:</b>&nbsp;none, though a light appearance of green scales over her entire body<br /><b>OTHER:</b>&nbsp;sharpened teeth and claw-like fingernails, forked tongue <i><a href="http://aegisframed.tumblr.com/post/157716790048/so-i-thought-i-should-do-a-post-detailing-just">(here is a post detailing exactly how she looks, with photo references)</a></i></p>
  1778. <p><b>SKILLS.</b></p>
  1779. <p><b>ABILITIES:</b>&nbsp;stone eyes, expert swordfighter, ability to spit venom, expert in various forms of combat / weaponry<br /><b>HOBBIES:</b>&nbsp;sparring, reading, sculpting (lol)<br /><b>OTHER:</b>&nbsp;enhanced strength of a gorgon, immune to poisonous substances, enhanced senses, stamina, and durability&nbsp;</p>
  1780. <p><b>HISTORY.</b></p>
  1781. <p>Pain of a high enough degree can cut life into two parts:&nbsp;<i>before</i>, and&nbsp;<i>after</i>. Before is a shimmering golden time, where cruelty belongs to humans alone, where violence is a thing belonging solely to your eldest sister, the one who wields swords like an extension of self, or your other sister who learned how to scream in a way to make men&rsquo;s ears bleed. Violence does not belong to you, does not belong to this life, with your sisters and your mother and your cherished island home. Medusa is the youngest, and the softest. She thinks human lives must be so interesting, so wonderful and colorful, she wants to meet one who won&rsquo;t fear her for who she is. Medusa wants to experience life, so she becomes a priestess of Athena. She had other options, sea deities, vast and untamable goddesses, but had chosen Athena over all of them. She likes the control of her, the way she seems like battle incarnate wound tightly into a body; she imagines Athena lets herself go like strings coming undone when fighting, and the result is bloody and messy and brutal and beautiful like the violence of a sea storm.</p>
  1782. <p>She learns things, how to exist, how to talk to other girls (she discovers them clumsily, awkwardly; she had only been around her sisters, and hadn&rsquo;t known girls were&nbsp;<i>like this</i>), how to live like a person who might be human, if you didn&rsquo;t know who her parents were. She learns other things too, though unwillingly: the feeling of powerlessness, a longing for strength so powerful it feels as though it would rip her apart, what it feels like to scream around fingers. She learns that violence started with the gods, and humans learned it from them as clumsy as first love, trying it on and finding it doesn&rsquo;t quite fit, changing it until it&rsquo;s smaller, more delicate. The violence of a god is different, tastes more bitter, makes her wish she would die, makes her believe she should.</p>
  1783. <p>The first time she meets Athena, her temple is destroyed, Medusa&rsquo;s clothes are torn to pieces all over the floor, and everything smells of saltwater. Medusa wants to suffocate under a layer of earth so thick she won&rsquo;t ever feel hands on her skin again.</p>
  1784. <p>Athena transforms her, as well as her sisters, into the Gorgons: horrifying creatures with snakes for hair, sharp teeth, sharp nails. She gives Medusa a gift: no man who looks upon her will survive what he sees, if she returns his gaze. She twists this curse around so that women will be able to look upon her to no ill effect; this is a gift, this is a loophole, this will never be worth it.&nbsp;</p>
  1785. <p>Medusa and her sisters retreat to their island. Euryale learns magic, creates enchanted red blindfolds for Medusa, so that she will be able to see through them without endangering anyone. They buy headscarves, and wigs, things to cover their snakes if they so choose. Occasionally they venture off the island, but for the first thousand years it&rsquo;s rare for her to leave it, alone or otherwise.</p>
  1786. <p>Medusa begins training with Stheno. It takes years, but she finally becomes strong &ndash; and, together, the gorgons destroy that god who thought Medusa his. (And when the alleged hero comes, he will meet a similar fate.)</p>
  1787. <p>Now the island has become a safe haven for abused women; Medusa travels the human world and brings those women she finds home, so that they might have protection and find healing. Some of the women stay, some of them don&rsquo;t; all that matters is that she saves just one person, so that her story might not be repeated.</p>
  1788. <p></p>
  1789.  
  1790. </div>
  1791. </div>
  1792.  
  1793.  
  1794. <div id="box5" class="popup_block">
  1795.  
  1796. <div style="width:auto;height:400px;overflow:scroll;padding:5px;">
  1797.  
  1798. <h3>navigation</h3>
  1799.  
  1800. <center>
  1801.  
  1802. <div class="popupnavlinks">
  1803.  
  1804.  
  1805. <a href="/tagged/link">LINK.</a>
  1806. <a href="/tagged/link">LINK.</a>
  1807. <br>
  1808. <a href="/tagged/link">LINK.</a>
  1809. <a href="/tagged/link">LINK.</a>
  1810. <br>
  1811. <a href="/tagged/link">LINK.</a>
  1812. <a href="/tagged/link">LINK.</a>
  1813. <br>
  1814. <a href="/tagged/link">LINK.</a>
  1815. <a href="/tagged/link">LINK.</a>
  1816. <br>
  1817. <a href="/tagged/link">LINK.</a>
  1818. <a href="/tagged/link">LINK.</a>
  1819. <br>
  1820. <a href="/tagged/link">LINK.</a>
  1821. <a href="/tagged/link">LINK.</a>
  1822. <br>
  1823. <a href="/tagged/link">LINK.</a>
  1824. <a href="/tagged/link">LINK.</a>
  1825. <br>
  1826. <a href="/tagged/link">LINK.</a>
  1827. <a href="/tagged/link">LINK.</a>
  1828. <br>
  1829.  
  1830.  
  1831. </div>
  1832. </div>
  1833. </div>
  1834.  
  1835.  
  1836.  
  1837. <div id="bite">
  1838. <div id="thekey"></div>
  1839. <div class="death">
  1840. <div id="actualnews">
  1841.  
  1842. <center>
  1843.  
  1844. <div style="width:auto;height:425px;overflow:scroll;padding:5px;">
  1845.  
  1846. <center>private & highly selective <br><b>medusa</b> <br>from greek myth.</center>
  1847.  
  1848.  
  1849.  
  1850.  
  1851.  
  1852.  
  1853. </center>
  1854.  
  1855.  
  1856. </div>
  1857. </div></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement