Advertisement
renxei

FEATHERCHAN

Jun 22nd, 2017
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 79.34 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="transparent"; // colours of drops
  115. var border="#feffe8"; // colour of border
  116. var speed=200; // speed of animation, lower is faster
  117. var size=5; // size of blocks
  118. var drops=12; // number of raindrops
  119.  
  120. /***************************\
  121. * Block Rain Graphic Effect *
  122. *(c)2005-12 mf2fm web-design*
  123. * http://www.mf2fm.com/rv *
  124. * DON'T EDIT BELOW THIS BOX *
  125. \***************************/
  126. var swide, shigh;
  127. var blox=new Array();
  128. var blok=new Array();
  129. var boddie;
  130.  
  131. window.onload=function() { if (document.getElementById) {
  132. var i, d, s;
  133. boddie=document.createElement("div");
  134. s=boddie.style;
  135. s.position="fixed";
  136. s.top="0px";
  137. s.left="0px";
  138. s.width="1px";
  139. s.height="1px";
  140. s.overflow="visible";
  141. s.backgroundColor="transparent";
  142. document.body.appendChild(boddie);
  143. set_width();
  144. for (i=0; i<drops; i++) {
  145. d=document.createElement("div");
  146. s=d.style;
  147. s.width=size+"px";
  148. s.height=size+"px";
  149. s.overflow="hidden";
  150. s.position="absolute";
  151. s.visibility="hidden";
  152. s.backgroundColor=colour;
  153. s.border="1px solid "+border;
  154. blox[i]=-1;
  155. blok[i]=d;
  156. boddie.appendChild(blok[i]);
  157. }
  158. size+=4;
  159. mainblock(0);
  160. }}
  161.  
  162. function mainblock(r) {
  163. var t, l;
  164. t=4+size*Math.floor(Math.random()*(shigh-size)/size);
  165. l=4+size*Math.floor(Math.random()*(swide-size)/size);
  166. blok[r].style.left=l+"px";
  167. blok[r].style.top=t+"px";
  168. blox[r]=11;
  169. blok[r].style.visibility="visible";
  170. subblock(r);
  171. setTimeout("mainblock("+(++r%drops)+")", speed);
  172. }
  173.  
  174. function subblock(r) {
  175. if (--blox[r]>-1) {
  176. if (navigator.appName=="Microsoft Internet Explorer") blok[r].style.filter="alpha(opacity="+blox[r]*10+")";
  177. else blok[r].style.opacity=blox[r]/10;
  178. setTimeout("subblock("+r+")", speed*drops/12);
  179. }
  180. else blok[r].style.visibility="hidden";
  181. }
  182.  
  183. window.onresize=set_width;
  184. function set_width() {
  185. var sw_min=999999;
  186. var sh_min=999999;
  187. if (document.documentElement && document.documentElement.clientWidth) {
  188. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  189. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  190. }
  191. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  192. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  193. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  194. }
  195. if (document.body.clientWidth) {
  196. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  197. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  198. }
  199. if (sw_min==999999 || sh_min==999999) {
  200. sw_min=800;
  201. sh_min=600;
  202. }
  203. swide=sw_min;
  204. shigh=sh_min;
  205. }
  206. // ]]>
  207. </script>
  208.  
  209.  
  210.  
  211.  
  212.  
  213. <title>{Title}</title>
  214. <link rel="shortcut icon" href="https://s-media-cache-ak0.pinimg.com/originals/2f/c4/16/2fc416822216737270f1566324e5c1b3.gif">
  215. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  216. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  217.  
  218. <meta name="color:background" content="#000000"/>
  219. <meta name="color:text" content="#a1a0a0"/>
  220. <meta name="color:description" content=transparent/>
  221. <meta name="color:link" content="#e0d3ed"/>
  222. <meta name="color:link hover" content="#989898" />
  223. <meta name="color:bold" content="#cdc2f0" />
  224. <meta name="color:italic" content="#ffffff" />
  225. <meta name="color:border" content="#292828" />
  226. <meta name="color:scrollbar" content="#ffffff" />
  227. <meta name="color:postbg" content=transparent />
  228. <meta name="color:blockquote" content="#121212" />
  229. <meta name="color:tags" content="#e0d3ed"/>
  230.  
  231. <meta name="image:background" content=""/>
  232.  
  233. <meta name="text:link 1" content="link 1"/>
  234. <meta name="text:link 1 url" content="/"/>
  235. <meta name="text:link 2" content="link 2"/>
  236. <meta name="text:link 2 url" content="/"/>
  237. <meta name="text:link 3" content="link 3"/>
  238. <meta name="text:link 3 url" content="/"/>
  239. <meta name="text:link 4" content="link 4"/>
  240. <meta name="text:link 4 url" content="/"/>
  241. <meta name="text:link 5" content="link 5"/>
  242. <meta name="text:link 5 url" content="/"/>
  243. <meta name="text:link 6" content="link 6"/>
  244. <meta name="text:link 6 url" content="/"/>
  245. <meta name="text:link 7" content="link 7"/>
  246. <meta name="text:link 7 url" content="/"/>
  247. <meta name="text:link 8" content="link 8"/>
  248. <meta name="text:link 8 url" content="/"/>
  249.  
  250. <meta name="if:tinycursor" content="1"/>
  251. <meta name="if:greyscale" content="0"/>
  252. <meta name="text:text size" content="12px" />
  253. <meta name="if:showsubmit" content="0"/>
  254.  
  255. <meta name="color:updates bar" content="#070707"/>
  256. <meta name="image:Updates" content=""/>
  257. <meta name="image:thekey" content=""/>
  258.  
  259.  
  260.  
  261. <!--
  262. CUSTOM FONTS
  263. -->
  264.  
  265.  
  266. <link href='https://fonts.googleapis.com/css?family=Playfair+Display' rel='stylesheet' type='text/css'>
  267.  
  268. <link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
  269.  
  270. <link href='https://fonts.googleapis.com/css?family=Arizonia' rel='stylesheet' type='text/css'>
  271.  
  272. <link href='https://fonts.googleapis.com/css?family=Roboto+Condensed' rel='stylesheet' type='text/css'>
  273.  
  274. <link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet">
  275.  
  276. <link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
  277.  
  278. <link href='https://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
  279.  
  280. <style type="text/css">
  281.  
  282.  
  283.  
  284.  
  285. /* the hover update thing */
  286.  
  287.  
  288.  
  289. #bite
  290. #bite a{
  291. display:block
  292. }
  293. #bite .death {
  294. margin-top:0px;filter: alpha(opacity = 1.0);
  295. opacity:1.0;-webkit-transition: all 0.5s ease-out;
  296. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  297. }
  298.  
  299. #bite:hover .death {
  300. margin-top:0px;
  301. -webkit-transition: all 0.8s ease-out;
  302. -moz-transition: all 0.8s ease-out;
  303. transition: all 0.8s ease-out;
  304. filter: alpha(opacity = 100);
  305. filter: alpha(opacity = 100);
  306. opacity:100;
  307. }
  308.  
  309.  
  310. /* selection font and background */
  311.  
  312.  
  313. ::selection {
  314. background: #444;
  315. color:#fff; }
  316.  
  317.  
  318. ::-moz-selection {
  319. background: #444;
  320. color:#fff; }
  321.  
  322.  
  323.  
  324. /* scrollbar details */
  325.  
  326.  
  327.  
  328. ::-webkit-scrollbar {
  329. height: 0px;
  330. width: 2px;
  331. background:transparent;
  332. border-left:0px solid transparent;
  333. border-right:0px solid transparent;}
  334.  
  335.  
  336. ::-webkit-scrollbar-thumb {
  337. background:transparent;}
  338.  
  339.  
  340.  
  341.  
  342.  
  343. /* the cursor */
  344.  
  345.  
  346. {block:iftinycursor}
  347. body, a, a:hover{
  348. cursor: url('http://cur.cursors-4u.net/nature/nat-10/nat996.cur'), progress !important;}
  349.  
  350. {/block:iftinycursor}
  351.  
  352.  
  353.  
  354.  
  355.  
  356.  
  357.  
  358. iframe#tumblr_controls {
  359. right:3px !important;
  360. position: fixed !important;
  361. -webkit-transition: opacity 0.7s
  362. linear;opacity: 0.2;
  363. -webkit-transition: all 0.8s ease-out;
  364. -moz-transition: all 0.8s ease-out;
  365. transition: all 0.8s ease-out;}
  366.  
  367. iframe#tumblr_controls:hover{
  368. -webkit-transition: opacity 0.7s linear;
  369. opacity: 1;
  370. -webkit-transition: all 0.4s ease-out;
  371. -moz-transition: all 0.4s ease-out;
  372. transition: all 0.4s ease-out;}
  373.  
  374.  
  375.  
  376. /* general look & background */
  377.  
  378.  
  379. body {
  380. background:#ffeffd;
  381. background-image:url('http://static.tumblr.com/fvrke3n/98oorwdlz/feaa.png');
  382. background-attachment: fixed;
  383. background-repeat: no-repeat;
  384. background-position: left top;
  385. color:#dbd9db;
  386. font-family: calibri;
  387. text-align:justify;
  388. font-size: 10px;
  389. letter-spacing:1px;
  390. line-height:135%;
  391.  
  392. }
  393.  
  394.  
  395.  
  396. /* the verses tabs */
  397.  
  398.  
  399. ul#tabs {
  400. list-style-type: none;
  401. padding: 0;
  402. text-align: center;
  403. font-size:8px;
  404. letter-spacing:1px;
  405. }
  406.  
  407. ul#tabs li {
  408. display: inline-block;
  409. background-color: transparent;
  410. border: solid 0px #fff;
  411. padding: 4px 12px;
  412. margin-bottom: 4px;
  413. color: #fff;
  414. cursor: pointer;
  415. }
  416.  
  417. ul#tabs li:hover {
  418. background-color: #000000;
  419. border: 1px solid #9b9b9b;
  420. }
  421.  
  422. ul#tabs li.active {
  423. background-color: #0f0f0f;
  424. background-image:url('https://media.giphy.com/media/1ZAgKCCipvi7K/giphy.gif');
  425. border: 1px solid #9b9b9b;
  426. }
  427.  
  428. ul#tab {
  429. list-style-type: none;
  430. margin: 0;
  431. padding: 0;
  432. }
  433.  
  434. ul#tab li {
  435. display: none;
  436. }
  437.  
  438. ul#tab li.active {
  439. display: block;
  440. }
  441.  
  442.  
  443.  
  444.  
  445. /* back to general look & details */
  446.  
  447.  
  448.  
  449. a:link, a:active, a:visited {
  450. text-decoration: none;
  451. color: #791c3b;
  452. text-transform:uppercase;
  453. -moz-transition-duration:.6s;
  454. -webkit-transition-duration:.6s;
  455. -o-transition-duration:.6s;
  456. -webkit-filter: blur(0px);}
  457.  
  458. a:hover {
  459. color: #ca6b8b;
  460. -moz-transition-duration:.6s;
  461. -webkit-transition-duration:.6s;
  462. -o-transition-duration:.6s;
  463. -webkit-filter: blur(1px);}
  464.  
  465.  
  466.  
  467. h1 {
  468. background-color: transparent;
  469. font-family: 'Montserrat', sans-serif;
  470. font-size: 16px;
  471. line-height: 20px;
  472. letter-spacing: 2px;
  473. text-align: center;
  474. text-transform:uppercase;
  475. color: #ca6b8b;
  476. }
  477.  
  478.  
  479. h2 {
  480. background-color: transparent;
  481. font-family: 'Montserrat', sans-serif;
  482. font-size: 15px;
  483. line-height: 16px;
  484. letter-spacing: 2px;
  485. text-align: left;
  486. text-transform:uppercase;
  487. color: #fc8e84
  488. }
  489.  
  490.  
  491.  
  492. h3 {
  493. background-color: transparent;
  494. background-image:url("https://media.giphy.com/media/1ZAgKCCipvi7K/giphy.gif");
  495. border:1px double #fffbf3;
  496. font-family: arial;
  497. font-weight:bold;
  498. color: #fffbf3;
  499. text-shadow:0px 0px 1px #2c2f34;
  500. font-size: 10px;
  501. line-height: 12px;
  502. letter-spacing: 2px;
  503. text-align: center;
  504. text-transform:uppercase;
  505. padding:1px;
  506. line-height:120%;
  507. border-radius: 15px 50px;
  508. background-repeat: repeat;
  509. background-attachment: scroll;
  510. }
  511.  
  512.  
  513.  
  514. quotetext {
  515. background-color: transparent;
  516. font-family: 'Lobster', cursive;
  517. font-size: 17px;
  518. line-height: 20px;
  519. letter-spacing: 1px;
  520. text-align: center;
  521. text-transform:lowercase;
  522. color: #ffdefb;
  523. }
  524.  
  525.  
  526.  
  527. blockquote {
  528. word-wrap: break-word;
  529. padding:2px 7px;
  530. margin:3px 0 3px 10px;
  531. border-radius: 15px;
  532. border-left:3px solid #ffdefb;
  533. background-color:transparent;}
  534.  
  535.  
  536. blockquote img{
  537. max-width:100%;
  538. height:auto;
  539. }
  540.  
  541. blockquote blockquote img{
  542. max-width:100%;
  543. height:auto;
  544. }
  545.  
  546.  
  547.  
  548.  
  549.  
  550.  
  551.  
  552. b, bold {
  553. font-size:11px;
  554. text-transform:uppercase;
  555. letter-spacing:1px;
  556. font-family: 'Oswald', sans-serif;
  557. color: #e1b687;
  558. }
  559.  
  560.  
  561. i, italic {
  562. font-size:12px;
  563. color: #f2c8cc;
  564. font-family: 'Roboto Condensed', sans-serif;
  565. text-shadow: 0px 0px 2px #ffeef0;
  566. letter-spacing:1px;
  567. text-transform:lowercase;
  568. }
  569.  
  570.  
  571.  
  572. p {
  573. margin-top:5px;
  574. margin-bottom:5px;}
  575.  
  576.  
  577. ol {
  578. list-style:normal;}
  579.  
  580.  
  581. ul {
  582. list-style-image: url('http://i171.photobucket.com/albums/u300/ferny-dust/sozai/bullets/120.gif');
  583. }
  584.  
  585.  
  586. small {
  587. font-size:10px}
  588.  
  589.  
  590. sup,sub {
  591. font-size:11px}
  592.  
  593.  
  594. pre {
  595. font-size: 11px;
  596. letter-spacing:3px;
  597. background-color:#fbedef;
  598. font-family: arial;
  599. font-style: none;
  600. text-align:center;
  601. }
  602.  
  603.  
  604.  
  605. big {
  606. font-size:14px;
  607. text-transform:uppercase;
  608. letter-spacing:2px;
  609. font-family: 'Oswald', sans-serif;
  610. color: #8c6970;
  611. text-shadow: 0px 0px 2px #383838;
  612. }
  613.  
  614.  
  615.  
  616. {block:IfGreyscale}
  617.  
  618. img {
  619. -webkit-filter:grayscale(100%);
  620. -webkit-transition: all 0.9s ease-in-out;
  621. -moz-transition: all 0.9s ease-in-out;
  622. -o-transition: all 0.9s ease-in-out;
  623. -ms-transition: all 0.9s ease-in-out;
  624. transition: all 0.9s ease-in-out;}
  625.  
  626. img:hover {
  627. -webkit-filter:none;}
  628.  
  629. .html_photoset {
  630. -webkit-filter: grayscale(100%);
  631. -webkit-transition: all 0.9s ease-in-out;
  632. -moz-transition: all 0.9s ease-in-out;
  633. -o-transition: all 0.9s ease-in-out;
  634. -ms-transition: all 0.9s ease-in-out;
  635. transition: all 0.9s ease-in-out;}
  636.  
  637. .html_photoset:hover {
  638. -webkit-filter: none;}
  639.  
  640. {/block:IfGreyscale}
  641.  
  642.  
  643.  
  644. #pcontainer {
  645. background-color:transparent;
  646. width:240px;
  647. height:260px;
  648. padding: 20px;
  649. top:290px;
  650. margin-left: 180px;
  651. position:relative;
  652. overflow-y:scroll;
  653. overflow-x:hidden;
  654. -webkit-mask-image: -webkit-gradient(
  655. linear, center 75%, center bottom,
  656. from(rgba(0,0,0,20)),
  657. to(rgba(20,0,0,0)));
  658. border:1px solid transparent;}
  659.  
  660.  
  661.  
  662. #pcontainer img {
  663. height:auto;
  664. max-width:100%;
  665. }
  666.  
  667.  
  668.  
  669. #content {
  670. margin-left:62px;
  671. width:310px;
  672. margin-top: -120px;
  673. }
  674.  
  675.  
  676. #posts {
  677. width:250px;
  678. padding:10px;
  679. margin-top: 80px;
  680. margin-left:-70px;
  681. padding-bottom:0px;}
  682.  
  683.  
  684.  
  685. #sidebar {
  686. margin-left: 1590px;
  687. line-height:15px;
  688. width: 180px;
  689. position: fixed;
  690. top: 200px;
  691. text-align: center; }
  692.  
  693.  
  694. #sidebar img {
  695. width:150px;
  696. padding-top:10px;
  697. padding-bottom:10px;}
  698.  
  699.  
  700. #description {
  701. margin-left: 0px;
  702. margin-top: -50px;
  703. width:180px;
  704. color:transparent;}
  705.  
  706.  
  707.  
  708. #actualnews {
  709. font-family: calibri;
  710. font-size:10px;
  711. text-align:justify;
  712. background:transparent;
  713. color: #fbedef;
  714. width:150px;
  715. height:220px;
  716. padding-top:3px;
  717. border:0px solid #131313;
  718. margin-left: 540px;
  719. margin-top: -27px;
  720. position:fixed;
  721. -webkit-filter: blur(0px);
  722. -webkit-transition: 0.8s ease-in;
  723. -moz-transition: 1s ease-in;
  724. transition: 1s ease-in;
  725. opacity:0.5;
  726. -webkit-transition: all 0.6s ease-in-out;
  727. -moz-transition: all 0.6s ease-in-out;
  728. -o-transition: all 0.6s ease-in-out;
  729. -ms-transition: all 0.6s ease-in-out;
  730. transition: all 0.6s ease-in-out;
  731. }
  732.  
  733.  
  734.  
  735. #actualnews:hover {
  736. -webkit-filter:none;
  737. -webkit-transition: all 0.6s ease-in-out;
  738. opacity:1;
  739. -webkit-transition: all 0.6s ease-in-out;
  740. -moz-transition: all 0.6s ease-in-out;
  741. -o-transition: all 0.6s ease-in-out;
  742. -ms-transition: all 0.6s ease-in-out;
  743. transition: all 0.6s ease-in-out;
  744. }
  745.  
  746.  
  747.  
  748. #thekey {
  749. position:fixed;
  750. color:#fbedef;
  751. text-shadow: 0px 0px 2px #fff;
  752. margin-top:175px;
  753. margin-left:55px;
  754. width:710px;
  755. padding:9px;
  756. letter-spacing:2px;
  757. word-spacing:5px; /*this defines the separation of each word of the links*/
  758. font-family: helvetica;
  759. font-size:12px;
  760. text-align:center;
  761. background:transparent;
  762. text-transform:uppercase;
  763. -webkit-transform: rotate(-90deg);
  764. -moz-transform: rotate(-90deg);
  765. -o-transform: rotate(-90deg);
  766. }
  767.  
  768.  
  769.  
  770.  
  771. /* JUMBLED LINKS */
  772.  
  773.  
  774.  
  775. .alinks {
  776. position:fixed;
  777. text-shadow: 0px 0px 0px #000;
  778. left:200px;
  779. top:460px;
  780. font-family: 'Montserrat', sans-serif;
  781. font-size: 20px;
  782.  
  783. }
  784.  
  785.  
  786.  
  787. .alinks a {
  788. opacity:0.5;
  789. padding:10px;
  790. color:#202020;
  791. margin-right:0px;
  792. -webkit-filter: blur(0px);
  793. -webkit-transition: 0.8s ease-in;
  794. -moz-transition: 1s ease-in;
  795. transition: 1s ease-in;
  796.  
  797. }
  798.  
  799. .alinks a:hover {
  800. opacity:1;
  801. -webkit-filter: blur(3px);
  802. -webkit-transition: all 0.6s ease-in-out;
  803. -moz-transition: all 0.6s ease-in-out;
  804. -o-transition: all 0.6s ease-in-out;
  805. -ms-transition: all 0.6s ease-in-out;
  806. transition: all 0.6s ease-in-out;
  807. color: #c7c7c7;
  808. text-shadow: 3px 3px 3px #000;
  809. }
  810.  
  811.  
  812.  
  813.  
  814. .blinks {
  815. position:fixed;
  816. text-shadow: 0px 0px 0px #bd6868;
  817. left:360px;
  818. top:90px;
  819. transform: rotate(-10deg);
  820. font-family: 'Montserrat', sans-serif;
  821. font-size: 60px;}
  822.  
  823.  
  824. .blinks a {
  825. padding:10px;
  826. color:#bd6868;
  827. margin-right:0px;
  828. -webkit-filter: blur(0px);
  829. -webkit-transition: 0.8s ease-in;
  830. -moz-transition: 1s ease-in;
  831. transition: 1s ease-in;
  832. }
  833.  
  834. .blinks a:hover {
  835. opacity:1;
  836. -webkit-filter: blur(3px);
  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: #bd6868;
  843. text-shadow: 3px 3px 3px #bd6868;
  844. }
  845.  
  846.  
  847.  
  848.  
  849. .clinks {
  850. position:fixed;
  851. text-shadow: 0px 0px 0px #bd6868;
  852. left:250px;
  853. top:110px;
  854. transform: rotate(70deg);
  855. font-family: 'Montserrat', sans-serif;
  856. font-size: 55px;}
  857.  
  858.  
  859. .clinks a {
  860. padding:10px;
  861. color:#bd6868;
  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. .clinks a:hover {
  870. opacity:1;
  871. -webkit-filter: blur(3px);
  872. -webkit-transition: all 0.6s ease-in-out;
  873. -moz-transition: all 0.6s ease-in-out;
  874. -o-transition: all 0.6s ease-in-out;
  875. -ms-transition: all 0.6s ease-in-out;
  876. transition: all 0.6s ease-in-out;
  877. color: #bd6868;
  878. text-shadow: 3px 3px 3px #bd6868;
  879. }
  880.  
  881.  
  882. .dlinks {
  883. position:fixed;
  884. text-shadow: 0px 0px 0px #bd6868;
  885. left:150px;
  886. top:300px;
  887. transform: rotate(60deg);
  888. font-family: 'Montserrat', sans-serif;
  889. font-size: 30px;}
  890.  
  891.  
  892. .dlinks a {
  893. padding:10px;
  894. color:#bd6868;
  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. .dlinks a:hover {
  903. opacity:1;
  904. -webkit-filter: blur(3px);
  905. -webkit-transition: all 0.6s ease-in-out;
  906. -moz-transition: all 0.6s ease-in-out;
  907. -o-transition: all 0.6s ease-in-out;
  908. -ms-transition: all 0.6s ease-in-out;
  909. transition: all 0.6s ease-in-out;
  910. color: #bd6868;
  911. text-shadow: 3px 3px 3px #bd6868;
  912. }
  913.  
  914.  
  915.  
  916.  
  917. .flinks {
  918. position:fixed;
  919. text-shadow: 0px 0px 0px #bd6868;
  920. left:140px;
  921. top:155px;
  922. transform: rotate(30deg);
  923. font-family: 'Montserrat', sans-serif;
  924. font-size: 45px;}
  925.  
  926.  
  927. .flinks a {
  928. padding:10px;
  929. color:#bd6868;
  930. margin-right:0px;
  931. -webkit-filter: blur(0px);
  932. -webkit-transition: 0.8s ease-in;
  933. -moz-transition: 1s ease-in;
  934. transition: 1s ease-in;
  935. }
  936.  
  937. .flinks a:hover {
  938. opacity:1;
  939. -webkit-filter: blur(3px);
  940. -webkit-transition: all 0.6s ease-in-out;
  941. -moz-transition: all 0.6s ease-in-out;
  942. -o-transition: all 0.6s ease-in-out;
  943. -ms-transition: all 0.6s ease-in-out;
  944. transition: all 0.6s ease-in-out;
  945. color: #bd6868;
  946. text-shadow: 3px 3px 3px #bd6868;
  947. }
  948.  
  949. .glinks {
  950. position:fixed;
  951. text-shadow: 0px 0px 11px #bd6868;
  952. left:215px;
  953. top:195px;
  954. transform: rotate(-10deg);
  955. font-family: 'Montserrat', sans-serif;
  956. font-size: 30px;}
  957.  
  958.  
  959. .glinks a {
  960. padding:10px;
  961. color:#bd6868;
  962. margin-right:0px;
  963. -webkit-filter: blur(0px);
  964. -webkit-transition: 0.8s ease-in;
  965. -moz-transition: 1s ease-in;
  966. transition: 1s ease-in;
  967. }
  968.  
  969. .glinks a:hover {
  970. opacity:1;
  971. -webkit-filter: blur(3px);
  972. -webkit-transition: all 0.6s ease-in-out;
  973. -moz-transition: all 0.6s ease-in-out;
  974. -o-transition: all 0.6s ease-in-out;
  975. -ms-transition: all 0.6s ease-in-out;
  976. transition: all 0.6s ease-in-out;
  977. color: #bd6868;
  978. text-shadow: 3px 3px 3px #bd6868;
  979. }
  980.  
  981.  
  982. .credit {
  983. position:fixed;
  984. text-shadow: 0px 0px 11px #ffe7e5;
  985. right:15px;
  986. bottom:15px;
  987. transform: rotate(60deg);
  988. font-family: helvetica;
  989. font-size: 60px;
  990.  
  991. }
  992.  
  993.  
  994. .credit a {
  995. padding:10px;
  996. color:#ffe7e5;
  997. margin-right:0px;
  998. -webkit-filter: blur(0px);
  999. -webkit-transition: 0.8s ease-in;
  1000. -moz-transition: 1s ease-in;
  1001. transition: 1s ease-in;
  1002. }
  1003.  
  1004. .credit a:hover {
  1005. opacity:1;
  1006. -webkit-filter: blur(3px);
  1007. -webkit-transition: all 0.6s ease-in-out;
  1008. -moz-transition: all 0.6s ease-in-out;
  1009. -o-transition: all 0.6s ease-in-out;
  1010. -ms-transition: all 0.6s ease-in-out;
  1011. transition: all 0.6s ease-in-out;
  1012. color: #ffe7e5;
  1013. text-shadow: 3px 3px 3px #ffe7e5;
  1014. }
  1015.  
  1016.  
  1017.  
  1018.  
  1019. /* JUMBLED LINKS ENDS */
  1020.  
  1021.  
  1022.  
  1023. #pagination {
  1024. position:fixed;
  1025. font-family: 'Lobster', cursive;
  1026. width:300px;
  1027. font-size:20px;
  1028. top:150px;
  1029. left:470px;
  1030. letter-spacing:3px;
  1031. text-align:center;
  1032. z-index:999999999999;
  1033. }
  1034.  
  1035. #pagination a {
  1036. text-transform:lowercase;
  1037. color:#dfd0d5;
  1038. }
  1039.  
  1040. #pagination a:hover {
  1041. color:#dfd0d5;
  1042. -webkit-filter: blur(2px);
  1043. -webkit-transition: 0.2s ease-in;
  1044. -moz-transition: 1s ease-in;
  1045. transition: 1s ease-in;
  1046. }
  1047.  
  1048.  
  1049. #audio {
  1050. width: 220px;
  1051. height:auto;
  1052. min-height:60px;
  1053. padding-bottom:0px;
  1054.  
  1055. }
  1056.  
  1057.  
  1058. .cover {
  1059. position:absolute;
  1060. z-index:1;
  1061. width:60px;
  1062. height:60px;
  1063.  
  1064. }
  1065.  
  1066. .cover img {
  1067. float:left;
  1068. width:60px;
  1069. height:60px;
  1070.  
  1071. }
  1072. .playbox {
  1073. opacity:0.6;
  1074. width:27px;
  1075. height:30px;
  1076. overflow:hidden;
  1077. position:absolute;
  1078. z-index:1000;
  1079. margin-left:17px;
  1080. margin-top:17px;
  1081. text-align:center;
  1082.  
  1083. }
  1084. .info {
  1085. margin-left:73px;
  1086. margin-top:4px;
  1087. line-height:13px;
  1088.  
  1089. }
  1090.  
  1091. .infooo{
  1092. position:relative;
  1093. background:#fff;
  1094. border:1px solid gray;
  1095. padding:8px;
  1096. font-family:Inconsolata;
  1097. font-size:10px;
  1098. overflow-x:auto;
  1099. letter-spacing:1px;
  1100. font-style:italic;
  1101. text-transform:;
  1102. height:64px;
  1103. margin-top:-20px;
  1104. margin-bottom:20px;
  1105. margin-left:85px;
  1106. padding-left:5px;
  1107. line-height:10px;
  1108. background: url(https://66.media.tumblr.com/1116bda2f55ea6071b204f75cd6ee218/tumblr_nrm6luNrJM1qkuwvto1_500.gif);
  1109. background-repeat: repeat;
  1110. background-attachment: scroll;
  1111. background-size: 200px;
  1112. color:white;
  1113. opacity: 0.8;
  1114.  
  1115. filter: alpha(opacity=50); /* For IE8 and earlier */
  1116.  
  1117. }
  1118.  
  1119. .audioplayerr{
  1120. position:absolute;
  1121. border:1px solid ;
  1122. padding:2px;
  1123. padding-top:5px;
  1124. background: #fff;
  1125. text-align:center;
  1126. margin-left:24px;
  1127. margin-top:5px;
  1128. width:29px;
  1129. height:27px;
  1130. opacity:0.9;
  1131. overflow:hidden;
  1132. -webkit-transition: all 0.5s ease-in-out;
  1133. -moz-transition: all 0.5s ease-in-out;
  1134. -o-transition: all 0.5s ease-in-out;
  1135. -ms-transition: all 0.5s ease-in-out;
  1136. transition: all 0.5s ease-in-out;}
  1137.  
  1138.  
  1139. .albumartt{
  1140. margin-left:0px;
  1141. margin-bottom:20px;
  1142. }
  1143.  
  1144. .albumartt img{
  1145. background-color:white;
  1146. width:60px;
  1147. float:left;
  1148. padding:10px;
  1149. border:1px solid #f0f0f0;
  1150. }
  1151.  
  1152. audioshit{
  1153. border-bottom:1px solid #f2f2f2;
  1154. font-style:normal;
  1155. font-size:10px;
  1156. }
  1157.  
  1158.  
  1159.  
  1160.  
  1161. /* QUESTIONS & ANSWERS DETAILS */
  1162.  
  1163.  
  1164. #asker {
  1165. font-family: 'Arizonia', cursive;
  1166. font-style:none;
  1167. letter-spacing:2px;
  1168. text-align:center;
  1169. padding-top: 10px;
  1170. margin-left:0px;
  1171. text-transform:lowercase;
  1172. color:#8c6970;
  1173. font-size:35px;
  1174. padding:5px;
  1175. letter-spacing:0px
  1176.  
  1177. }
  1178.  
  1179.  
  1180. #asker a{
  1181. font-family: 'Arizonia', cursive;
  1182. font-style:none;
  1183. letter-spacing:2px;
  1184. text-transform:lowercase;
  1185. font-size:35px;
  1186. letter-spacing: 0px;
  1187. text-shadow: none;
  1188. color: #8c6970;
  1189. text-shadow:0 0 2px #8c6970;
  1190. -webkit-filter: blur(0.5px);
  1191. }
  1192.  
  1193.  
  1194. #asker a:hover {
  1195. color: #ba736d;
  1196. letter-spacing: 2px;
  1197.  
  1198. -webkit-filter: blur(2px);
  1199. -webkit-transition:all .5s ease-in-out;
  1200. -moz-transition:all .5s ease-in-out;
  1201. transition:all .5s ease-in-out;
  1202. }
  1203.  
  1204.  
  1205.  
  1206. #ask {
  1207. font-family:Inconsolata;
  1208. text-shadow: none;
  1209. width:225px;
  1210. font-size:12px;
  1211. text-align:center;
  1212. padding-top: 5px;
  1213. margin-left:0px;
  1214. text-transform:auto;
  1215. letter-spacing:3px
  1216. margin-top:-10px;
  1217. padding:5px;
  1218. background: #000;
  1219. background: url("https://67.media.tumblr.com/93de81b5de69cf684af95a6a11bf93d4/tumblr_odwant0FBJ1vwtxzao1_500.gif");
  1220. color:#5a5757;
  1221. border-bottom-left-radius: 10px;
  1222. border-bottom-right-radius: 10px;
  1223. border-top-left-radius: 10px;
  1224. border-top-right-radius: 10px;
  1225. padding:10px;
  1226. letter-spacing:2px;
  1227. border-bottom:solid 1px #ba736d;
  1228. border-top:solid 1px #ba736d;
  1229. }
  1230.  
  1231.  
  1232. .ans {
  1233. text-align:center;
  1234. padding:10px;
  1235. }
  1236.  
  1237.  
  1238. /* POST INFO DETAILS */
  1239.  
  1240.  
  1241.  
  1242. #info {
  1243. background: url("https://media.giphy.com/media/1ZAgKCCipvi7K/giphy.gif");
  1244. background-repeat: repeat;
  1245. background-attachment: scroll;
  1246. border: 1px solid #73505b;
  1247. border-radius: 15px 50px;
  1248. width:255px;
  1249. height:25px;
  1250. text-align:center;
  1251. letter-spacing:10px;
  1252. margin-top:8px;
  1253. margin-bottom:50px;
  1254. text-transform:uppercase;
  1255. font-size:15px;
  1256. font-style:none;
  1257. }
  1258.  
  1259.  
  1260.  
  1261.  
  1262. #info a {
  1263. color:#dbd9db;}
  1264.  
  1265. #info a:hover {
  1266. color:#dbd9db;}
  1267.  
  1268.  
  1269.  
  1270.  
  1271. #tags {
  1272. font-family: helvetica;
  1273. color:#dbd9db;
  1274. padding-bottom:35px;
  1275. letter-spacing:2px;
  1276. text-transform:uppercase;
  1277. font-size:7px;
  1278. font-style:normal;
  1279. margin-top:10px;
  1280. text-align:right;
  1281. float:right;
  1282. }
  1283.  
  1284.  
  1285. #tags a {
  1286. display:inline-block;
  1287. padding:-3px;
  1288. opacity:0.8;
  1289. text-align:center;
  1290. color:#dbd9db;
  1291.  
  1292. }
  1293.  
  1294.  
  1295. #tags a:hover {
  1296. color:#fff;
  1297. }
  1298.  
  1299.  
  1300.  
  1301.  
  1302.  
  1303.  
  1304. .note {
  1305. text-transform:uppercase;
  1306. font-style:normal;
  1307. letter-spacing:0px;
  1308. font-size: 10px;
  1309. text-align:left;
  1310. line-height:90%;
  1311. margin-left:-40px;}
  1312.  
  1313. .note li {
  1314. list-style-type:none;
  1315. border-bottom:0px solid {color:border};
  1316. padding:10px 25px 10px 25px;
  1317. text-align:left;
  1318. margin:0px;
  1319. -moz-transition-duration:0.5s;
  1320. -webkit-transition-duration:0.5s;
  1321. -o-transition-duration:0.5s;}
  1322.  
  1323. .note img.avatar {
  1324. margin-right: 10px;
  1325. width: 16px;
  1326. height: 16px;}
  1327.  
  1328.  
  1329.  
  1330.  
  1331. /*--BASIC POP-UP DETAILS--*/
  1332.  
  1333.  
  1334.  
  1335. .popup_block{
  1336. display:none;
  1337. background: url("http://img08.deviantart.net/ecd1/i/2017/025/2/c/random_galaxy_bg__f2u__by_koverkat-dawp60w.png");
  1338. padding:10px;
  1339. float:left;
  1340. height: 430px;
  1341. top:50%;
  1342. left:30%;
  1343. position:fixed;
  1344. z-index: 99999;
  1345. border-radius: 15px 50px;
  1346. border: solid 1px #262626;
  1347. }
  1348.  
  1349.  
  1350. *html #fade {position: absolute;}
  1351. *html .popup_block {position: absolute;}
  1352. #fade {
  1353. display:none;
  1354. position:fixed;
  1355. left:0px;
  1356. top:0px;
  1357. width:1366px;
  1358. height:667px;
  1359. z-index:9999;
  1360. background:transparent;
  1361.  
  1362. }
  1363.  
  1364.  
  1365.  
  1366.  
  1367. .popupnavlinks {
  1368. padding-top:5px;
  1369. text-align:center; }
  1370.  
  1371.  
  1372. .popupnavlinks a {
  1373. display:inline-block;
  1374. width:120px; height:8px;
  1375. margin:2px; padding:6px 6px 10px;
  1376. text-align:center;
  1377. font-family:'helvetica';
  1378. font-size:8px;
  1379. text-transform:uppercase;
  1380. letter-spacing:1px;
  1381. color:#ffffff;
  1382. border:1px dotted;
  1383. border-color: #9b9b9b;
  1384. border-radius: 15px 50px;
  1385. background-image:url("https://media.giphy.com/media/1ZAgKCCipvi7K/giphy.gif");
  1386. }
  1387.  
  1388.  
  1389. .popupnavlinks a:hover {
  1390. display:inline-block;
  1391. width:120px; margin:2px;
  1392. padding:6px 6px 10px;
  1393. text-align:center;
  1394. font-family:'helvetica';
  1395. font-size:8px;
  1396. text-transform:uppercase;
  1397. letter-spacing:1px;
  1398. color:#ffffff;
  1399. background-image:url("https://media.giphy.com/media/1ZAgKCCipvi7K/giphy.gif");
  1400. background:transparent
  1401. border-radius: 15px 50px;
  1402. }
  1403.  
  1404.  
  1405.  
  1406. .popupclose {
  1407. float:right; top:0px; right:0px;
  1408. margin-top:-10px; margin-right:-10px;
  1409. font-family:'Scada', sans serif;
  1410. font-size:10px;
  1411. font-weight:bold }
  1412.  
  1413. .popupclose a {
  1414. color:#aaa }
  1415.  
  1416.  
  1417.  
  1418. /*--TOOLTIP DETAILS--*/
  1419.  
  1420.  
  1421.  
  1422. #s-m-t-tooltip{
  1423. max-width:400px;
  1424. margin:15px;
  1425. padding:2px 8px;
  1426. color:#effbff;
  1427. z-index:99999999999999999999;
  1428. font-size:25px;
  1429. letter-spacing:2px;
  1430. font-style:bold;
  1431. letter-spacing:2px;
  1432. font-family: 'Lobster', cursive;
  1433. box-shadow:1px 1px 3px rgba(0,0,0,.1);
  1434. background:transparent;
  1435.  
  1436. }
  1437.  
  1438.  
  1439.  
  1440.  
  1441.  
  1442. </style>
  1443.  
  1444.  
  1445. </head>
  1446.  
  1447. <body>
  1448.  
  1449. <div id="content">
  1450.  
  1451. <div id="sidebar">
  1452.  
  1453. <img src="{image:Sidebar}" />
  1454.  
  1455. <div id="description">{description}</div>
  1456.  
  1457.  
  1458. </div>
  1459.  
  1460. <div id="pagination">
  1461. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">previous</a> • {/block:PreviousPage}{block:NextPage} <a href="{NextPage}">next</a>{/block:NextPage}{/block:Pagination}
  1462. </div>
  1463.  
  1464.  
  1465. <div id="links">
  1466.  
  1467.  
  1468. <div id="linkbar">
  1469.  
  1470.  
  1471.  
  1472.  
  1473.  
  1474.  
  1475. <div class="alinks">
  1476. <a href="/" title="refresh."> <img src="http://static.tumblr.com/fvrke3n/0NLorxyw6/title.png"> </a>
  1477. </div>
  1478.  
  1479.  
  1480. <div class="blinks">
  1481. <a href="#?w=310" rel="box1" class="poplight" title="ask."> ✮ </a>
  1482. </div>
  1483.  
  1484.  
  1485. <div class="clinks">
  1486. <a href="#?w=310" rel="box2" class="poplight" title="laws."> ✮ </a>
  1487. </div>
  1488.  
  1489.  
  1490. <div class="flinks">
  1491. <a href="#?w=310" rel="box5" class="poplight" title="gps."> ✮ </a>
  1492. </div>
  1493.  
  1494. <div class="glinks">
  1495. <a href="#?w=310" rel="box6" class="poplight" title="selection."> ✮ </a>
  1496. </div>
  1497.  
  1498.  
  1499. <div class="credit">
  1500. <a href="http://agirlingrey.tumblr.com/" title="agirlingrey." >✮
  1501. </a>
  1502. </div>
  1503.  
  1504.  
  1505.  
  1506.  
  1507. </div></div>
  1508.  
  1509.  
  1510.  
  1511.  
  1512. <div id="pcontainer">
  1513.  
  1514. <div id="content"><div id="posts">
  1515. {block:Posts}
  1516.  
  1517.  
  1518. {block:Quote}<quotetext>"{Quote}"</quotetext>&nbsp; <br><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; — {Source} {/block:Quote}
  1519. {block:Title}<h1>{Title}&nbsp;</h1>{/block:Title}
  1520. {block:Text}{Body}{/block:Text}
  1521.  
  1522. {block:Link}<a href="{URL}" class="link" {Target}><h1>{Name}&nbsp;</h1></a>
  1523.  
  1524. {block:Description}<P>{Description}</p>{/block:Description}{/block:Link}
  1525.  
  1526. {block:Photo}<center>{LinkOpenTag}<img src="{PhotoURL-HighRes}" width="360px">{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1527. {block:Photoset}<center>{Photoset}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1528.  
  1529. {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}
  1530.  
  1531. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1532.  
  1533.  
  1534. {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}
  1535.  
  1536.  
  1537. {block:Audio}
  1538. <div class="albumartt">{block:AlbumArt} <img src="{AlbumArtURL}"> {/block:AlbumArt}</div><div class="audioplayerr">{AudioPlayer}</div> <div class="infooo">
  1539. {block:Artist} <audioshit>Artist:</audioshit>{Artist} {/block:Artist}<br>
  1540. {block:TrackName}<audioshit>TrackName:</audioshit>"{TrackName}" {/block:TrackName}</br>
  1541. {block:Album}<audioshit>Album Name:</audioshit>{Album} {/block:Album}</br>
  1542. <audioshit>Play Count:</audioshit> {block:PlayCount}{PlayCount} times{/block:PlayCount}</div>
  1543.  
  1544. {/block:Audio}
  1545.  
  1546.  
  1547. <div id="info">
  1548. <br>
  1549.  
  1550. &nbsp; &nbsp;
  1551.  
  1552.  
  1553. {block:Date}
  1554. <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>
  1555. {/block:Date}
  1556.  
  1557.  
  1558. {block:RebloggedFrom}
  1559. <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>
  1560. {/block:RebloggedFrom}
  1561.  
  1562.  
  1563. {block:ContentSource}
  1564. <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>
  1565. {/block:ContentSource}
  1566.  
  1567.  
  1568. <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>
  1569.  
  1570.  
  1571. <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>
  1572.  
  1573.  
  1574. <br>
  1575.  
  1576. {block:HasTags}<div id="tags">{block:Tags} & <a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}</div> &nbsp;
  1577. {/block:Posts}
  1578. <div class="note">
  1579. {block:PostNotes}{PostNotes}{/block:PostNotes}
  1580. </div>
  1581.  
  1582. {/block:Posts}</div></div>
  1583.  
  1584.  
  1585.  
  1586. </div> </div> </div> </div> </div> </div>
  1587.  
  1588.  
  1589.  
  1590. </body>
  1591.  
  1592. <!-- SCM Music Player http://scmplayer.net -->
  1593. <script type="text/javascript" src="http://scmplayer.net/script.js"
  1594. data-config="{'skin':'http://static.tumblr.com/wx6pget/SaSnc7p16/.css','volume':15,'autoplay':true,'shuffle':true,'repeat':0,'placement':'bottom','showplaylist':false,'playlist':[{'title':'<3','url':'https://www.youtube.com/watch?v=IqnZPhKxQ4E'}]}" ></script>
  1595. <!-- SCM Music Player script end -->
  1596.  
  1597.  
  1598.  
  1599.  
  1600. <div id="box1" class="popup_block">
  1601.  
  1602. <h3>
  1603. yay messages
  1604. </h3>
  1605.  
  1606. <center>
  1607.  
  1608.  
  1609.  
  1610. <p><iframe frameborder="0" height="250" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/featherchan.tumblr.com" width="100%"></iframe></p>
  1611.  
  1612. </div>
  1613.  
  1614. </center>
  1615.  
  1616.  
  1617.  
  1618. <div id="box2" class="popup_block">
  1619.  
  1620. <div style="width:auto;height:405px;overflow:scroll;padding:5px;">
  1621.  
  1622.  
  1623. <h3><b>Interaction</b></h3>
  1624. <p>I don’t mind RP with anyone. Preferable mainly Saiyuki or any fandom I know of. May it be an alternate universe (AU), multi-verse, semi-AU or whatever verse, I have yet known. I’m happy to RP with anyone including OC’S (since I myself have several OC’s of my own. =D ). I’m fine with anything. &nbsp;<br><br>Point blank is, I just love to RP</p>
  1625.  
  1626. <h3><b>Genre</b></h3>
  1627. <p>So far, I don’t mind RP any sort of genre. The genre I’m really into is romance, drama, supernatural, fantasy and angst.<br><br>
  1628.  
  1629. <h3><b>Limitation</b></h3>
  1630.  
  1631. <p>
  1632. <b>+</b>I personally, as the MUN have no limitations and I have no problem going into smut genre. As I<b> AM</b> 18+ therefore, I will only do smut with those <b>ONLY</b> of 18+. That including our OC’S or Canon.<br><br>
  1633.  
  1634. <b>+</b>&nbsp;I will<b> CHECK YOUR RULES</b> in your Tumblr account to be sure. That you <b>HAVE STATED</b> that you are legally 18+ for everyone benefit.<br><br>
  1635.  
  1636. <b>+</b>Do <b>NOT</b> mark that you are <b>OPEN</b> to smut if you are not or <b>LIE </b>about your age if you’re not 18+.<br><br>
  1637.  
  1638. <b>+</b><b>WHY?</b> Cause it’s illegal, and it can get people into serious trouble with the law. They could be unintentionally be registered as a sex offender permanently and ruin their life. I will <b>NOT</b> hesitate to<b> BLOCK </b>you and <b>WARN</b> other MUN about you, therefore you have been warned.<br>
  1639.  
  1640. <h3><b>Triggers</b></h3>
  1641.  
  1642. <p>I personally do not have any triggers, but if you do. Please let me know
  1643. beforehand.</p>
  1644.  
  1645. <h3><b>Planning before writing</b></h3>
  1646.  
  1647. <br>I personally prefer if you message me beforehand to discuss the plot, rather than jumping right into one. I like to plan things out and get a rough idea. What’s the plot is about? or where is it going? I mean, who knows. I might actually give you some awesome idea.<br>
  1648.  
  1649. <br>*wink*<br><br>Or if you’re not a planner, just give me a rough idea. Give me a plot tehn i’m fine.<br><br>
  1650.  
  1651.  
  1652. <h3><b>Characters Details</b></h3>
  1653.  
  1654. <p><b>&nbsp;+</b>
  1655. I prefer if you provide some <b>BASIC INFORMATION</b> about your character personality and backstory (on you Tumblr page), it doesn’t matter whether they are OC’s or Canon<br>.<br>
  1656.  
  1657. <b>&nbsp;+</b>
  1658. Feather’s RP is an indie multi-muses blog. Therefore, please <b>READ </b>my OC’s Characters Details before you ask me, who they are and etc. <b>WHY?</b> Cause I work damn hard on them to bring them to life. So please <b>READ IT!</b></p><p><b>Shipping</b><br>I love shipping. xD Don’t get me wrong but let’s see where the boat float first, between our characters before we dead set on it.</p>
  1659.  
  1660. <p><b>Writing Style</b><br>I prefer para (meaning 2 or more sentences long) and multipara (meaning multiple paragraphs). I don’t mind waiting for a good lengthy reply if needed. Just let me know. Cause I will do the same. This will explains, why it takes me several hours or days to reply.</p>
  1661.  
  1662.  
  1663. <h3><b>I’m OKAY with:</b></h3>
  1664.  
  1665. <p><b>+&nbsp;</b>Language / Cursing: Some of my OC’s will curse like a sailor, but keep it a minimum<br>
  1666.  
  1667. <b>+</b>&nbsp; Alcohol / Smoking Consumption<br><b>+&nbsp;</b>
  1668.  
  1669. Abuse<br>
  1670.  
  1671. <b>+</b>&nbsp; Blood<br>
  1672.  
  1673. <b>+</b>
  1674.  
  1675. Torture<br>
  1676.  
  1677. <b>+</b>&nbsp; Creepy / Scary Stuff<br>
  1678.  
  1679. <b>+</b>&nbsp; Gore: Keep it a minimum. Something we all can stomach with<br>
  1680.  
  1681. <b>+</b>
  1682.  
  1683. And etc</p>
  1684.  
  1685. <h3><b>I’m NOT OKAY with:</b></h3>
  1686.  
  1687.  
  1688. <br>I will give you a gentle reminder but if it continued. I’m sorry. I will unfollow you.</p>
  1689. <p><b>+</b> Godmodding<br>
  1690. <b>+</b> Powerplaying<br>
  1691. <b>+</b> Character playing<br>
  1692. <b>+</b> Metagaming: MEANING? Knowing information that your characters doesn’t know and acts upon it. NO FAIR!</p>
  1693.  
  1694. <h3><b>Only human</b></h3>
  1695. <br>I’m only human. I do make mistake, like grammatical error and etc. However, they are never ill intended. Therefore, critic me respectfully. But, I will try to do my very best and often use spellcheck before replying. That being said, please refrain from being negative on me.<br> <br>I’m also a working adult.
  1696.  
  1697. Meaning I might not be able to reply quickly or be on hiatus, due my job deadline<br><br>Lastly, thank you for reading the Rules. You can <b>‘Ask’</b> me away now. =D</p><p><br></p>
  1698. </div>
  1699. </div>
  1700.  
  1701.  
  1702.  
  1703.  
  1704. <div id="box3" class="popup_block">
  1705.  
  1706. <h3>verses</h3>
  1707.  
  1708. <ul id="tabs">
  1709. <li class="active">VERSE 01.</li>
  1710. <li>VERSE 02.</li>
  1711. <li>EMPTY.</li>
  1712. <li>EMPTY.</li>
  1713. </ul>
  1714.  
  1715. <div style="width:auto;height:335px;overflow:scroll;padding:5px;">
  1716.  
  1717.  
  1718.  
  1719. <ul id="tab">
  1720. <li class="active">
  1721.  
  1722.  
  1723. <img src="https://66.media.tumblr.com/4a6bfe0a828db8068a57a7e94716bf04/tumblr_inline_ofjzd15hI51szbcoo_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;"><br>
  1724.  
  1725.  
  1726. <p><b>#A LIE(ACT 01):&nbsp;</b><b>survival of the fittest</p> <p>Verse Setting: </b>During&nbsp;the ‘Fullbring’ Arc.</p>
  1727.  
  1728. <br><br><br>
  1729.  
  1730.  
  1731. <img src="https://67.media.tumblr.com/ec824af0e9d29f8a8431d9ea8891f882/tumblr_inline_ofjzcp4YMD1szbcoo_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1732.  
  1733. <p><b>#DISAPPEARANCE(ACT 02):</b><b>where have you gone?</b></p>
  1734.  
  1735. <p><b>Verse Setting: </b>After the&nbsp;‘Fullbring’ Arc.<br>Riruka Dokugamine disappears. Where did she go? What is she doing?&nbsp;</p>
  1736.  
  1737. <br><br><br>
  1738.  
  1739.  
  1740.  
  1741. <img src="https://66.media.tumblr.com/64374451d6df5b63a18ac87ac62eb34e/tumblr_inline_ofjzcr2emD1szbcoo_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1742.  
  1743. <p><b>#NO GIMMICKS(ACT 03):guess who's back &nbsp;back again &nbsp;shady's back &nbsp;tell a friend&nbsp;</b><br></p>
  1744.  
  1745. <p><b>Verse Setting: </b>Chapter 625 Arc.&nbsp;<br>“I’m the star, Grimmjow can SUCK IT.”&nbsp;<br></p>
  1746.  
  1747.  
  1748. <br><br><br>
  1749.  
  1750.  
  1751.  
  1752. </li>
  1753. <li>
  1754.  
  1755.  
  1756.  
  1757.  
  1758. <img src="https://66.media.tumblr.com/497c5c954c2fe796e2808a50c5eef39e/tumblr_inline_ofjzctsyUe1szbcoo_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1759.  
  1760. <b>#END(ACT 04):&nbsp;sike! new beginning</b></p>
  1761.  
  1762. <p><b>Verse Setting: </b>Bleach Finale.<br>Why does everyone have a family now? ( Forever alone?)</p>
  1763.  
  1764.  
  1765. <br><br><br>
  1766.  
  1767.  
  1768.  
  1769. <img src="https://67.media.tumblr.com/5da33c1257e454cfd41b6b37939caa53/tumblr_inline_ofjzcupDUi1szbcoo_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1770.  
  1771. <p><b>#LOST(ACT 05):where am i?</b></p>
  1772.  
  1773. <p><b>Verse Setting:</b>No setting.</p>
  1774.  
  1775.  
  1776. <br><br>
  1777.  
  1778.  
  1779. </li>
  1780. <li>
  1781.  
  1782.  
  1783.  
  1784. <a href="/tagged/VERSE">VERSE NAME.</a>
  1785. <img src="https://66.media.tumblr.com/36cd27cb529fdd5f20561ac9dbb6d1d5/tumblr_inline_ofjzcvgafR1szbcoo_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1786.  
  1787.  
  1788. <br>
  1789.  
  1790. 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.
  1791.  
  1792.  
  1793. <br><br><br>
  1794.  
  1795.  
  1796. <a href="/tagged/VERSE">VERSE NAME.</a>
  1797. <img src="https://67.media.tumblr.com/9abbbe7b546d1e14a1fe8bc5af3b51f6/tumblr_inline_ofjzczUnvH1szbcoo_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1798.  
  1799.  
  1800. <br>
  1801.  
  1802. 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.
  1803.  
  1804.  
  1805. <br><br>
  1806.  
  1807.  
  1808.  
  1809. </li>
  1810. <li>
  1811.  
  1812.  
  1813.  
  1814.  
  1815. <a href="/tagged/VERSE">VERSE NAME.</a>
  1816. <img src="https://65.media.tumblr.com/c714f5380c75fbc6560ddcb63bbd65ce/tumblr_inline_ofjzd0l6rl1szbcoo_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1817.  
  1818.  
  1819. <br>
  1820.  
  1821. 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.
  1822.  
  1823.  
  1824. <br><br><br>
  1825.  
  1826.  
  1827. <a href="/tagged/VERSE">VERSE NAME.</a>
  1828. <img src="https://66.media.tumblr.com/4a6bfe0a828db8068a57a7e94716bf04/tumblr_inline_ofjzd15hI51szbcoo_540.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1829.  
  1830.  
  1831. <br>
  1832.  
  1833. 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.
  1834.  
  1835.  
  1836. <br><br>
  1837.  
  1838.  
  1839. </li>
  1840. </ul>
  1841.  
  1842.  
  1843. </div>
  1844. </div>
  1845.  
  1846.  
  1847.  
  1848. <div id="box4" class="popup_block">
  1849.  
  1850. <div style="width:auto;height:400px;overflow:scroll;padding:5px;">
  1851.  
  1852. <h3>basic information</h3>
  1853.  
  1854. <ul>
  1855. <li><b>FULL NAME:</b> Riruka Dokugamine</li>
  1856. <li><b>NICKNAME:</b> ‘Riru’</li><small><sup>( WARNING: MIGHT POKE YOU IN THE EYE IF YOU TRY.)</sup></small>
  1857. <li><b>AGE:</b>18 Y.O</li> <small><sup>(verse dependent)</sup></small>
  1858. <li><b>BIRTH DATE:</b> April 14</li>
  1859. <li><b>ETHNICITY:</b> Japanese</i></li>
  1860. <li><b>RACE:</b> Human ( Fullbringer )</i></li>
  1861.  
  1862. <br>
  1863.  
  1864. <li><b>GENDER:</b> Female.</li>
  1865. <li><b>ROMANTIC ORIENTATION:</b>Demiromantic</li>
  1866. <li><b>SEXUAL ORIENTATION:</b>Heteroflexible</li>
  1867. <br>
  1868. <li><b>OCCUPATION:</b> Unknown</li>
  1869. <li><b>AFFILIATION:</b> Xcution</li>
  1870. </ul>
  1871.  
  1872. <h3>relationships</h3>
  1873.  
  1874. <ul>
  1875. <li><b>PARENTS:</b> Unknown</li>
  1876. <li><b>SIBLINGS:</b> Gina Dokugamine </li>
  1877. </ul>
  1878.  
  1879. <h3>physical traits</h3>
  1880.  
  1881. <ul>
  1882. <li><b>EYE COLOUR:</b> Magenta hues</li>
  1883. <li><b>HAIR COLOUR:</b> Magenta hues</li>
  1884. <li><b>HEIGHT:</b> 156 cm (5'1½") </li>
  1885. <li><b>WEIGHT:</b> 43 kg (95 lbs.) </li>
  1886. <li><b>BODY BUILD:</b> Petite </li>
  1887. <li><b>NOTABLE PHYSICAL TRAITS:</b> hair & eyes.</li>
  1888. <p>Riruka tends to stand out due to her appearance since she’s quite pretty and carries herself very well although she doesn’t look very approachable due to her ‘mean’ expression ( Bitch face syndrome ). Her voice tends to go very high, especially when annoyed or overly excited. While she’s considerably short, she usually wear high heels, she doesn’t really care about how short she is until someone actually mocks her for it.</p>
  1889.  
  1890. <p>She also suffers from myopia, but refuses to wears glasses or contacts this is one of the reason why she ‘leers’ a lot. </p>
  1891.  
  1892. </li>
  1893. </ul>
  1894.  
  1895. <h3>phobias and disorders</h3>
  1896.  
  1897. <ul>
  1898. <li><b>PHOBIAS:</b> Athagoraphobia & Athazagoraphobia. </li>
  1899. <li><b>MENTAL DISORDERS:</b> Hoarder.</li>
  1900. <li><b>WHEN WAS THIS DIAGNOSED?:</b> Not Diagnosed</li><br>
  1901. Riruka is surprisingly mentally stable and is able to cope with her mild case of depression and possibly anger issues quite well. She’s not too keen on creating ‘deep’ relationship due to her fear of abandonment and being ignored, she’s highly in denial with her issues and the ‘hoarding’ (collecting?) is probably her coping mechanism.
  1902.  
  1903. </ul>
  1904.  
  1905. <h3>personality</h3>
  1906.  
  1907. <ul>
  1908. <li><b>INTELLIGENCE:</b> High Average</li>
  1909. <li><b>LIKES:</b> generally anything cute, has a penchant for sweet things,bishounen probably...</li>
  1910. <li><b>DISLIKES:</b> Nothing specifically but easily annoyed. </li>
  1911. <li><b>TEMPRAMENT:</b> Ambivert </li>
  1912. <li><b>ALIGNMENT:</b> Chaotic Neutral</li>
  1913.  
  1914. <p>Riruka has a loud personality, hot-tempered and impatient with a blatant insistence of what she wants. “It’s her way or the high-way.” She’s also rather vain, fashion & looks are very important to her and desires to keep herself CUTE no matter what.<p>
  1915.  
  1916. <p>While Riruka is temperamental & emotional, she’s also easily embarrassed and rather dishonest with her feelings, she’s unable to act kind without covering it up with banters,insults and denials. ( Not that she is any good at it. )
  1917.  
  1918. <p>Riruka is also notably obsessive when it comes to the things she likes, she’s a collector of all cute things.<p>
  1919.  
  1920. <p>While Riruka likes to act ‘tough’ she’s actually easily swayed and surprisingly very kind towards those she knows well. <p>
  1921.  
  1922. </ul>
  1923.  
  1924. <h3>biography</h3>
  1925.  
  1926. <p>Riruka discovered her Fullbring at the age of 5 and by 6, she claimed to be unrivaled. At the age of 7, she fell in love with a boy. She used her Fullbring to lock him away in a chest and brought him sweets every day. She clung to the belief that he would love her, but this did not happen. Locking him away frightened him and she could see it in his eyes. She became unable to stand looking at him and let him go, but she did not stop to think what would happen if he told others about her ability. At some point, Riruka turned to bullying her sister Gina, whom she stole a toy from, causing Gina to cry out for their </p>
  1927.  
  1928. <p>At some point, Riruka met Shukuro Tsukishima and Kugo Ginjo, and along with other Fullbringers, namely Yukio, Jackie, and Giriko, was convinced to join Kugo, forming Xcution. She and other Fullbringers made a pact with Kugo to share each other's powers and a small promise not meant to be broken.</p>
  1929.  
  1930. <p>Seventeen months after Aizen's defeat, Riruka along with Kugo and the rest of Xcution fell under the influence of Tsukishima's Fullbring, to make Tsukishima look like the sole villain, as part of their plan to steal Ichigo Kurosaki's Fullbring to strengthen their own.</p>
  1931.  
  1932. <h3>abilities</h3>
  1933.  
  1934. <ul>
  1935. <li> <b>Spiritual Awareness:</b> As a spiritual being, Riruka is able to sense Humans with spiritual pressure, such as Tatsuki Arisawa.She also has enough spiritual awareness to see Shinigami.</li>
  1936.  
  1937. <li> <b>Dollhouse:</b> Riruka's Fullbring gives her the ability to freely move people and objects into or out of anything that she adores or finds cute. Riruka refers to this as an ability of "love," which allows her to draw out the maximum power of anything she falls in love with.To achieve this, she generates a small, heart-shaped "pass" in her hand, which has the letter "R" on it, and then launches it at her target. Once the pass has been attached, she can transfer the target into an object with the command, "I permit you" the target is shrunk down to accommodate for the size of the object she is transferring it into. She deactivates her ability by sneezing on the object, returning the ones she placed into it to normal.Additionally, if the container affected by Dollhouse is destroyed, its contents are forcibly ejected and returned to its normal size.</li>
  1938.  
  1939. <li> <b> Enhanced Dollhouse: </b> After receiving some of Ichigo's powers from Ginjo, Riruka gains white bands of armor covering her forearms with two yellow spikes in the area of each of her hands and the pieces on her hat taking the form of rabbit-like ears. She also has a yellow collar around her neck and pink tie with white armor covering her chest shaped like a broken heart as well as her legs </li>
  1940.  
  1941. <li> <b> Addiction shot: </b> Using the command "Addiction Shot", Riruka points her arm at a target and the letter "R" appears in a circular protrusion on the back of her gauntlet. She launches a heart from her fist, which attaches itself to the target. Riruka then calls the name of the target and states that she admits them, allowing her to place the person inside an object of her choosing, such as shrinking Rukia Kuchiki and placing her inside a plushie. By sneezing on the plush, this effect can be negated, and the sealed person is freed and returns to their original size.</li>
  1942.  
  1943. <li> <b> human container:</b> Using the command "Addiction Shot", Riruka points her arm at a target and the letter "R" appears in a circular protrusion on the back of her gauntlet. She launches a heart from her fist, which attaches itself to the target. Riruka then calls the name of the target and states that she admits them, allowing her to place the person inside an object of her choosing, such as shrinking Rukia Kuchiki and placing her inside a plushie. By sneezing on the plush, this effect can be negated, and the sealed person is freed and returns to their original size.</b> </li>
  1944. </ul>
  1945.  
  1946.  
  1947.  
  1948. <br><br><br>
  1949.  
  1950.  
  1951.  
  1952. </div>
  1953. </div>
  1954.  
  1955.  
  1956.  
  1957. <div id="box5" class="popup_block">
  1958.  
  1959. <div style="width:auto;height:400px;overflow:scroll;padding:5px;">
  1960.  
  1961. <h3>navigation</h3>
  1962.  
  1963. <center>
  1964.  
  1965. <div class="popupnavlinks">
  1966.  
  1967.  
  1968. <a href="/mun">WRITER.</a>
  1969. <a href="/occ">OOC.</a>
  1970. <br>
  1971. <a href="/tagged/lioness">KANAKO THREADS</a>
  1972. <a href="/tagged/foxlady">NOBURUTHREADS</a>
  1973. <br>
  1974. <a href="/tagged/shorebird">CHIDORI THREADS</a>
  1975. <a href="/tagged/themoon">MI YUE THREADS</a>
  1976. <br>
  1977. <a href="/tagged/link">? ? ?</a>
  1978. <a href="/tagged/link">? ? ?</a>
  1979. <br>
  1980. <a href="/tagged/link">? ? ?</a>
  1981. <a href="/tagged/link">? ? ?</a>
  1982. <br>
  1983. <a href="/tagged/link">? ? ?</a>
  1984. <a href="/tagged/link">? ? ?</a>
  1985. <br>
  1986. <br>
  1987.  
  1988.  
  1989. </div>
  1990. </div>
  1991. </div>
  1992.  
  1993.  
  1994. <div id="box6" class="popup_block">
  1995.  
  1996. <h3>MUSE</h3>
  1997.  
  1998. <ul id="tabs">
  1999. <li class="active">KANAKO.</li>
  2000. <li>NOBURU.</li>
  2001. <li>CHIDORI.</li>
  2002. <li>MI YUE.</li>
  2003. <li>TOMA.</li>
  2004. </ul>
  2005.  
  2006. <div style="width:auto;height:335px;overflow:scroll;padding:5px;">
  2007.  
  2008.  
  2009.  
  2010. <ul id="tab">
  2011. <li class="active">
  2012.  
  2013. <figure><img src="http://static.tumblr.com/fvrke3n/Dzoorxtvj/kanako.png"></figure>
  2014. <p><b>Name:</b> Ryuuzaki Kanako<br>
  2015. <b>Nickname:</b> Kana, Lioness<br>
  2016. <b>Age:</b> 23<br>
  2017. <b>Birth date:</b> April 17th<br>
  2018. <b>Height:</b>160 cm or 5'3"<br>
  2019. <b>Gender:</b> Female<br>
  2020. <b>Species:</b> Human<br>
  2021. <b>Hair Color:</b> Black<br>
  2022. <b>Eye Color:</b> Purple<br>
  2023. <b>Sexual Orientation:</b> Straight<br>
  2024. <b>Relationship Status:</b> Single</p>
  2025. <p><b>Occupation:</b></p>
  2026. + Inn Keeper of Rose Bed, and Breakfast<br>
  2027. + Medicine Paddler (Part-time)<br>
  2028. <p><b>Face Claim: </b>Rei Hino from Sailor Moon</p>
  2029.  
  2030.  
  2031. <h3><b>History:</b></h3>
  2032.  
  2033. <p>Daughter of a medicine seller, Kanako grew up in a happy household. At the age of 15, she fell in love with an older man. A café owner name Hijikata Taika who was 20 years older than her. At the marrying age of 16, they got marry, much to the displeasure of their families and friends. However, their marriage and happiness were short-lived.</p>
  2034.  
  2035. <p>At age 17, on a cold winter night, they were suddenly ambushed and attacked by a couple of thugs. Killing the happy couples after robbing them of their valuables. Miraculously surviving death. She soon fell into a deep depression after finding out that not only her husband was killed, her womb and unborn child had to be removed, in order to save her own life as well.</p><p>At the age of 18, she discovered that Taika dead was orchestrate. Infuriated, she swore to seeks revenge, with Makoto Noburu, her best friend, and Taika adoptive sister.</p>
  2036.  
  2037.  
  2038. <h3><b>Personality:</b></h3>
  2039.  
  2040. <p>Compassionate and nurturing. Kanako is concerned with the well-being of things around her, such as her surroundings, the people around her, and those she cares about. She is very well-mannered, despite her sarcasm at certain times. Traumatised in the past, she may not always be the most positive person but manages to get through an obstacle with an attitude. Often, her self-confidence is usually dependent upon how people respond to her.</p>
  2041.  
  2042. <p>She’s packed with a fiery temper. Easily provoke by annoying, sexist (Yes, sexist) and offensive comments, especially in a moody state or when her patience is running thin. People fear Kanako’s fury temper, as they know and can expect no mercy from her, even dubbed her the ‘Lioness’</p>
  2043.  
  2044. <p>Quiet, serious and emotional. She has a bad habit of bottling up all of her emotion and frustration until she hits her limits. Ending up taking out her frustration on her love ones, without meaning to offend them. She easily gets her tongue tied, when nervous, like being around her crush, or being under pressure by her surroundings. &nbsp; &nbsp;</p>
  2045.  
  2046.  
  2047. <h3><b>Skills \ Weapon</b></h3>
  2048.  
  2049. <p>Kanako was forbidden from holding any weapons when growing up, so she had no fighting skills at the beginning. With her lack of strength, she learns various forms of self-defence to seek revenge and protect herself and those dear to her. Disliking the concept to engaging into a fight, she prefers to use a non-lethal method, instead of a weapon.</p>
  2050.  
  2051. <p><b>Intermediate Martial Arts</b></p>
  2052. <p><b>Expert marksmen</b></p><p>Her choice of weapon is 9mm semi auto. Her abilities with shooting are still at a beginner’s level at first, but after consistently practising every day (and secretly every night), she eventually reaches a point where she can fire at any moving target without fail. She also gains accuracy on her aiming and is able now to kill an animal (and a person) with one shot.</p><p><b>Extensive knowledge of herbs and plant<br></b>Being the daughter of a medicine seller, she acquires an extensive knowledge of herbs and being taught of its purpose for medicine usage.<br><br><b>Potion-Brewer and Expert Toxicology<br></b>A secret art that only been taught to the female Ryuuzaki lineage, from identifying poisons and determining cures, studying and inventing potions, who are warned about rules they must abide, or face dire consequences. Some of the concoction commonly used by Kanako are:<br><br><b>Topaz Dream:<br></b>Makes people forgets all events and memories of the last 24 hours.<br><br><b>Dragon Breath:<br></b>By taking a little sip of the potion, and by using a controlled special breathing techniques. Kanako is able to exhale flame like a flame thrower.<br><br><b>Velvet Seduction:<br></b>Makes people susceptible to mind control around her, although strong-minded people are usually capable of resisting.<br><br><b>Emerald Illusion:<br></b>A poison that caused people to experience an illusion. Creating an illusion, they long for or desire to see. Although strong-minded people are capable of shaking it off easily.<br><br><b>Blue Drop:<br></b>A potion that is capable to immobilized victim with ice. But, strong individual with brute strength, can easily break the ice to free themselves. &nbsp;<br><br><b>Salvia Kiss:<br></b>A poison that paralyzes people for a certain period of time, depending on the amount of poison used.<br><br><b>White Mist:<br></b>Inhaling or smelling the poison, it caused people falls asleep instantly.<br><br><b>Black Torch:<br></b>Ryuuzaki’s most powerful, dangerous and forbidden potion. Giving the user inhuman movements and strength to becoming faster and stronger but by more than two sips of the poison. It’s only to use for last resort, as it takes a heavy toll on the user body, gambling their own future away.</p>
  2053.  
  2054.  
  2055. <h3><b>Trivia</b></h3>
  2056. <p>+ Kanako fears ghost.<br>
  2057. + She’s farsighted and requires reading glasses for reading.<br>
  2058. + Kanako has multiple scars on her right wrist from attempting suicide. She hides it by wearing long sleeves.<br>
  2059. + She still suffers and battle with depression but less severe in her earlier days and continues to take medication to counter it.<br>
  2060. + Even though, Kanako is straight. She believes love has no label, gender or race. She might fall in love with the same gender if there’s chemistry.<br>
  2061. + In her past life, she was a goddess called ‘Mi Yue’</p>
  2062.  
  2063.  
  2064. </li>
  2065.  
  2066.  
  2067. <li>
  2068.  
  2069. <figure data-orig-width="300" data-orig-height="150" class="tmblr-full"><img src="https://68.media.tumblr.com/e7f1f06f2a9650956fe05bf2fcda1540/tumblr_inline_orxuijD8Pf1ty07ne_540.png" data-orig-width="300" data-orig-height="150"></figure><p><b>
  2070.  
  2071. Name:</b> Makoto Noburu<br>
  2072. <b>Nickname: </b>Fox-Lady, Vixen<br>
  2073. <b>Age:</b> 25<br><b>Birth date:</b> March 5th<br>
  2074. <b>Height:</b> 162 cm or 5'4"<br>
  2075. <b>Gender:</b> Female<br>
  2076. <b>Species:</b> Demon (Fox Demon)<br>
  2077. <b>Hair Color:</b> Black<br>
  2078. <b>Eye Color:</b> Green<br>
  2079. <b>Sexual Orientation:</b> Bisexual<br>
  2080. <b>Relationship Status:</b> Single</p>
  2081. <p><b>Occupation:</b></p>
  2082. <p>+ Cook of Rose Bed. and Breakfast<br>+ Bartender (Part-time)</p>
  2083. <p><b>Face Claim:</b> Nana Osaki from Nana</p>
  2084.  
  2085. <h3><b>History:</b></h3>
  2086.  
  2087. <p>When Noburu was a child, both her parents sold her to the Black Lotus. Later, &nbsp;she was trained in the arts of espionage and combat, becoming a highly effective assassin. At the age of 15, she was assigned to a partner, named Hijikata Taika, a kind man who treats her like a little sister. When Noburu was wounded grievously and poisoned, she was refused of medical care as punishment for failing her mission. Black Lotus cruelty disturbs Taika and leaves the organization, taking Noburu with him. However, the poison had taken a great toll on Noburu, confining her to a wheelchair (leaving her) in a physically and emotionally weakened state.</p>
  2088.  
  2089. <p>Months later, they decided to settle down in a little town and opens a little café, to support themselves. They cross paths with a teenage girl, name Ryuuzaki Kanako, Taika’s future wife, who came from a family specialize in toxicology and was happy to help them. Her family came up with a cure to completely neutralize the poison. Allowing her to quickly recover. </p>
  2090.  
  2091. <p>Shortly after Taika and Kanako marriage, she was devastated by the news, when she found out the misfortune that had fallen onto them. She soon left town and in search for the murderer. She caught words. Behind the Taika, assassination entangles with his dark past, during his assassins days. She came and offered to train Kanako to protect herself and seek revenge against the people who stolen everything from them.</p>
  2092.  
  2093. <h3><b>Personality: </b></h3>
  2094.  
  2095. <p>Noburu used to be a ruthless and psychotic assassin. Enjoyed killing to a high extent to those of who she was assigned to kill, almost as if it was some sadistic hobbies of hers. But with Taika kindness and brotherly love, it began to rub off her. She slowly changes and regains her humanity, that she thought she lost to the Black Lotus association.</p>
  2096.  
  2097. <p>Noburu may look like a tough chick, but she actually has a lay back personality with a kind heart and a devoted friend, despite her sarcastic attitude at times. Noburu may tend to act flirtatious around men or women she’s attracted to. Due to this, people then calls her a “vixen” (or Fox Lady). She tends to display a lack of ladylike manners, like consuming large amounts of alcohol and smoking. But, serves as “a dependable big sister”, to Kanako and Chidori. She may be good in everything she does, but comment herself as sucks in being an emotional support to her love ones.</p>
  2098.  
  2099. <p>Despite her layback attitude, she takes unkindly to anyone who messed with her love ones, especially vicious if anyone lay a hand on them.</p>
  2100.  
  2101. <h3><b>Skills \ Weapon</b></h3>
  2102.  
  2103. <p>During her years under the Black Lotus, she became a skilled assassin with many talents. She preferable wielding dual sword then to guns, despite her skills as a marksman. Despite to her past injuries, she still considerably dangerous and deadly, as she could easily take out a target easily if she wants too.</p>
  2104.  
  2105. <p>+ Expert Martial Arts<br>
  2106. + Expert Swordsman<br>
  2107. + Weapons Expert<br>
  2108. + Gourmet Chef<br>
  2109. + Intermediate Mixology (Bartending)<br>
  2110. + Danger Sense<br>As a trained assassin, Noburu has sharp senses and was very aware of her surroundings, being able to detect someone’s killing intent at a long distance, identifying suspicious characters in a group, as well as spotting hidden individuals even if they weren’t directly within her line of sight.<br>+ Spiritual Powers<br>Noburu has a spiritual sense, allowing her to see and sense spirit. Her ability is also what helps her sense when her sisters are in danger. She enjoys using to scare Kanako who is afraid of ghost, and she would usually point them out. Telling her about a fella who has only ‘one eye’ or ‘missing a hand’ to frighten her.</p>
  2111.  
  2112. <h3><b>Trivia</b></h3>
  2113.  
  2114. <p>+ Noburu’s favored cigarette brand is Seven Stars.<br>
  2115. + Her demonic mark ironically looks like a lotus flower on her upper left arm.<br>
  2116. + She has five piercings in her left ear, three in her right which are actually power-limiting devices, to regulate her demi-human abilities and allow her to retain her human appearance.<br>
  2117. + Being a fox youkai, she is scared of dogs.<br>
  2118. + Due to her past injuries, her legs tends to ache when it rains or snows.&nbsp;<br>
  2119. + In her past life, Kanako and herself were sisters. Branded as a witch by rumors. She shortly dies, being burnt alive.</p>
  2120.  
  2121. </li>
  2122.  
  2123. <li>
  2124.  
  2125. <figure class="tmblr-full" data-orig-height="150" data-orig-width="300"><img src="https://68.media.tumblr.com/e110c7e7213289875ff0c2654520c36d/tumblr_inline_orxv78m8rM1ty07ne_540.png" data-orig-height="150" data-orig-width="300"></figure><p><b>
  2126.  
  2127. Name</b>: Yuze Chidori<br>
  2128. <b>Nickname:</b> None<br>
  2129. <b>Age:</b> 16<br>
  2130. <b>Birth date:</b> June 30th<br>
  2131. <b>Height:</b> 154 cm or 5’ 1"<br>
  2132. <b>Gender:</b> Female<br>
  2133. <b>Species:</b> Demon (Bird Demon)<br>
  2134. <b>Hair Color:</b> Red<br>
  2135. <b>Eye Color: </b>Red<br>
  2136. <b>Sexual Orientation:</b> Straight<br>
  2137. <b>Relationship Status: </b>Single</p>
  2138. <p><b>Occupation:</b></p>
  2139. <p>+ Waitress of Roses’s Bed and Breakfast<br>
  2140. + Cleaning Girl of Roses Bed, and Breakfast<br>
  2141. + Errand Girl</p>
  2142.  
  2143. <p><b>Face Claim:</b> Hiyori Nishiyama from Hiyori</p>
  2144.  
  2145. <h3><b>History:</b></h3>
  2146.  
  2147. <p>Chidori is a hanyou, a cross between a youkai and a human. Born from an unknown human father and a youkai mother, her mother left her in the care of the village elders, in a small village, when she was 2 years old. Chidori has not seen her mother since and thus forgotten what she looks likes. Because she is a half breed, Chidori gets labeled and targeted by adult and children alike in her village. They called her, a child of taboo and filthy by those who recognize her origins. Hiding her pain and discomfort. She kept her hair bangs long in order to hide her face. </p>
  2148.  
  2149. <p>At the age of 5, she crosses path with Kanako Ryuuzaki. She started to follow and observing her, after being kindly offered a piece of candy. A kindness she has never experienced in all her life. For odd reasons, the village elders asked her to follow Kanako and she happily agrees. Eventually, she learns the sad truth, why she was asked to follow Kanako by the village elders to be sent to an orphanage. She begged Kanako while crying, not to throw her away. Kanako replies to her. That she was gonna to be taken into the Ryuuzaki household and was happily welcome with open arms.</p>
  2150.  
  2151. <h3><b>Personality:</b></h3>
  2152.  
  2153. <p>Chidori is usually very upbeat, extroverted and outgoing. She may sometimes come across as naïve, clumsy, dense and clueless, but she has her perceptive moments on occasion. Though sometimes she’s quite gullible and believes what everyone (especially Noburu) tells her. Chidori’s optimistic and trustworthy character allows her to be friendly with everybody, always giving everyone the benefit of the doubt, believing in the good in everyone.</p>
  2154.  
  2155. <p>At times she can become very shy, insecure and sad, in the eye of society from their harsh taunting, due to her hanyou status. She initially hated her red hair that she inherited from her parents (youkai father and human mother), usually covering it up and keeping her bangs long in order to hide her face until Kanako stated that she loves her hair, as it reminded her of “red spider lilies full bloom in spring.” From day onwards, Chidori no longer was self-conscious of her red hair, cut her bangs and seemingly took pride in it (or saw it as what defines her). </p>
  2156.  
  2157. <h3><b>Skills</b></h3>
  2158.  
  2159. <p>+ Intermediate in cooking<br>
  2160. + Basic knowledge herbs and plant.<br>
  2161. + Talented in sketching and drawing<br><br>
  2162. + Singing:<br> She has a lovely and angelic singing voice but is very shy to sing in front of a crowd. She can always be heard singing alone when no one is around.<br><br>
  2163. + Spiritual Powers:<br>Chidori is born with an ability, allowing her to see and sense spirit. Like Noburu, her ability also allows her to sense when her sisters are in danger.</p>
  2164.  
  2165. <h3><b>Trivia</b></h3>
  2166.  
  2167. <p>+ Chidori is very close and clingy to Kanako because of she first-hand witness, Kanako attempting to commit suicide in the past.<br><br>
  2168. + In her past life, she was born as Kanako’s child. She dies shortly after being drowned by her husband.</p>
  2169.  
  2170. </li>
  2171.  
  2172. <li>
  2173.  
  2174. <figure data-orig-width="300" data-orig-height="150" class="tmblr-full"><img src="https://68.media.tumblr.com/33c474f22fd181dfe92526500d8a05a3/tumblr_inline_orxvt6NsL11ty07ne_540.png" data-orig-width="300" data-orig-height="150"></figure><p><b>
  2175.  
  2176. Name:</b> Mi Yue<br>
  2177. <b>Age:</b> Unknown (appear to look like in her 20’s or mid-20’s)<br>
  2178. <b>Nickname:</b> None<br>
  2179. <b>Birthdate:</b> Unknown<br>
  2180. <b>Height: </b>160 cm or 5'3"<br>
  2181. <b>Gender:</b> Female<br>
  2182. <b>Species:</b> Goddess (Low-Level)<br>
  2183. <b>Hair Color:</b> Black<br>
  2184. <b>Eye Color:</b> Purple<br>
  2185. <b>Occupation:</b> Heaven’s Librarian Staff<br>
  2186. <b>Sexual Orientation:</b> Straight<br>
  2187. <b>Relationship Status:</b> Married <br>
  2188. <b>Face Claim:</b> Mimi from The Wedding<br><br>
  2189.  
  2190. <h3><b>History:</b></h3>
  2191.  
  2192. <p>Mi Yue is a low-level goddess who lived in Heaven and married a high-ranking god officer, name Kazama Toma. People believe their relationship and marriage were matched made in heaven literally, a fairy tales love story. But no one knew behind closed door, her husband is an abusive man, who hits and verbally abuse her from anything to everything, or for no reason at all. Ashamed. She dresses quite conservatively to hid his mark on her.</p>
  2193.  
  2194. <p>The abuse became too much for her and shortly, she dies in his hand. Exposing the heaven the monster who he really is. Enrage with his ego tainted. He curses her soul to suffer a dreadful dead for her next 100 reincarnations. Currently, Ryuuzaki Kanako is one of her current reincarnation.<p>
  2195.  
  2196. <h3><b>Personality:</b></h3>
  2197.  
  2198. <p>Mi Yue is incredibly courteous and friendly towards everyone around her. Compassionate. She values the lives and happiness of others much more than her own, and always desires to make everybody happy no matter what the cost is to herself. While many see this part of her personality as being one of her more endearing qualities, it has also driven her to disregard her own feelings, thus making it difficult for her to voice her own thoughts when she believes it would hurt others. Mostly likely to be a target and taken advantages for her compassionate nature. She rarely holds a grudge and is always willing to forgive anyone (even her husband) who harms her.</p>
  2199.  
  2200. <p>Quiet and reserved (who’s an introvert). Mi Yue rarely speaks unless she needs too. But if anything peaks her interest, like books (of all kind) and anything related the human worlds. She can be quite talkative.</p>
  2201.  
  2202. <h3><b>Skills</b></h3>
  2203.  
  2204. + Erhu
  2205. <br>Mi Yue is known as a talented erhu player which was taught to her by her mother. Some people even comments that she is gifted even to the untrained ears.<br><br>
  2206.  
  2207. + Speed Reading<br>
  2208. With the connection, Mi Yue husband was able to get his wife, a part-time job to assist with the Heaven’s library. Knowing how much his beloved wife loves to read. She could read an endless amount of them in the library.
  2209.  
  2210. <br><br>But on one the condition, that she must return home before curfew. Frustrated. That she’s unable to take any of the books home with her or read them finish in time. She taught herself to be a fast reader. Allowing her to finish reading any current book she reads quickly before returning home but it all depends on the book volume.
  2211.  
  2212.  
  2213. </li>
  2214.  
  2215. <li>
  2216.  
  2217. <figure data-orig-width="300" data-orig-height="150" class="tmblr-full"><img src="https://68.media.tumblr.com/091463a22e6a13401c58424467d90c5a/tumblr_inline_orxwadUoBs1ty07ne_540.png" data-orig-width="300" data-orig-height="150"></figure><p><b>
  2218.  
  2219. Name:</b> Kazama Toma<br>
  2220. <b>Age: </b>Unknown (appear to look in his mid 20’s)<br>
  2221. <b>Birthdate: </b>Unknown<br>
  2222. <b>Height: </b>182 cm or 6’0”<br>
  2223. <b>Gender: </b>Male<br>
  2224. <b>Species:</b> God<br>
  2225. <b>Hair Color:</b> Grayish White<br>
  2226. <b>Eye Color: </b>Dark Blue<br>
  2227. <b>Sexual Orientation:</b> Straight<br>
  2228. <b>Relationship Status:</b> Married<br><br>
  2229. <b>Face Claim:</b> Prince Diamond from Sailor Moon</p>
  2230.  
  2231. <h3><b>History:</b></h3>
  2232.  
  2233. <p>Kazama Toma is a god, who was born into the Kazama clan, a well-known noble family in the Heaven. At a young age, Kazama household forces their children to undergo countless hours training and excruciating academic regimen. Designed to prepare and groom them to fight over for the leadership of the Kazama family, continued to uphold their family noble status in the Heaven and to be bestowed the ‘third eye’ from the current family head. Obsess to please his parents. He willing killed his own blood relative who originally appointed as the next successor, instead of him.</p>
  2234.  
  2235. <p>Several years later, he met and fall in love with a low-level goddess name Mi Yue, whom to his surprise was immune to one of his ‘third-eye’ abilities, the power of attraction. Falling head and heels over her. He finds himself deeply attracted to her and her compassionate nature, an emotion even his own parents had never shown him, whom only saw him as a tool than a son. Deeply in love with the goddess. He marries her disregarding her status and willing even to break the rules by accepting her into noble Kazama clan.</p>
  2236.  
  2237. <p>Times goes by, over using the power of the ‘third eye’, combined with his massive responsibility and stress to uphold the Kazama clan name, brought out Toma’s destructive emotions as he slowly descended into madness. He turns into an abusive husband. Hitting and verbally abusing his wife for the smallest mistake done in their home. The abuse became too much for her and in her final moment, she rebels against him and was killed by his own bare hands. Exposing the heaven, the monster he was and shaming the Kazama clan name. Enrage. He blames her for his downfall and curses her soul to suffer 100 reincarnated lives in agony and dreadful dead.</p>
  2238.  
  2239. <p>Escaping from the heaven. He set on an endless journey to hunt down Mi Yue’s reincarnated soul, the woman who cause him everything. Finding and making her his’s, reliving their marriage life in the Heaven, killing her again and again if ‘things doesn’t work out for them’. As Mi Yue’s soul was reborn and reincarnated, again and again, she begins to grow and mature, becoming a stronger individual in each reincarnated life. Increasing his obsessing to hunt her down and ‘taming’ his wife.</p>
  2240.  
  2241. <h3><b>Personality:</b></h3>
  2242.  
  2243. <p>Kazama Toma’s personality is ambiguous. For the most part, he is kind, well-respected officer and was looked up to by many. However, this was just a mask to disguise dark and sanguinary side— a ruthless, cold and calculating psychopath, who cares very little for his underlings and is willing to use almost everyone around him as pawns to achieve his goals. He is willing to stop at nothing to further to achieve his goal and raise Kazama family status, including manipulating or killing anyone if he deems it to be necessary. </p>
  2244.  
  2245. <p>After meeting Mi Yue, a woman who was immune to one of his ‘third eye’ power of attraction. He grew to love her immense. However, this immense love for her also gives way to an equally massive fear of losing her. Overusing and succumbing to the power ‘third eyes’. It slowly robs him of his sanity and humanity every time he used it. He quickly develops an abusive, horrific, paranoid and psychotic mania with Mi Yue that dwells on his need for her to stay by his side. As he reveals her as his light and anchor of what’s left of his sanity and humanity.</p>
  2246.  
  2247. <p>He would write romantic confessions of love in their husband and wife, exchange diary. A possessive method he used to manipulate and tie her down to him.</p>
  2248.  
  2249. <h3><b>Skills</b></h3>
  2250.  
  2251. <p>The third eye is an ability possessed and passed down within Kazama clan. It appears on the forehead. Those who chosen will be bestowed and be appointed as the head of the Kazama clan.</p>
  2252.  
  2253. <p>The third eye has three abilities: -</p>
  2254.  
  2255. <p><b>Eye of Attraction</b></p><p>Looking directly into the user’s eyes. It breaks the spirit of the person making them do whatever he wants them to do as will make them fall in love with him. Mi Yue is somehow immune to this power, as she could already have been in love with Toma or just fairly too innocent in attraction.</p>
  2256.  
  2257. <p><b>Eye of Truth</b></p><p>Looking directly into the user’s eyes. It allows the user to look into one soul to see if they are lying or telling the truth. The user could mentally inflict them the pain to force them, to tell the truth.</p>
  2258.  
  2259. <p><b>Eye of Persuasion</b></p><p>Looking directly into the user’s eyes. It allows the user to break of a person the spirit for a short time. Forcing them to do whatever he wants them, unwilling and aware of their own action.</p>
  2260.  
  2261. <p>The user must never abuse or overuse the third eyes abilities, as it could slowly eat away the user humanity and sanity, descending them into madness.</p>
  2262.  
  2263. <h3><b>Trivia.</b></h3>
  2264.  
  2265. <p>Mi Yue reincarnated life that he has killed.</p>
  2266.  
  2267. <p><b>+ Unnamed Princess</b></p>
  2268.  
  2269. <p>Mi Yue was reborn into a princess in a small country. Struggling to remain in power due to a power struggles between the royal families. Kazama Toma reverts up the people, to start a revolution and brought war to the royals downstep. In exchange for peace, Toma lies and request the hand of marriage with their princess. The princess’ protector, her knight, saw through his lies and attacked him. He got himself kill before mortally wounding Toma. Exchanging his unrequited love to the princess before dying. &nbsp;Infuriated. Toma hangs and killed all the royal family members, including the princess.</p>
  2270.  
  2271. <p>That knight was later reborn as Hijikata Taika, Ryuuzaki Kanako late husband.</p>
  2272.  
  2273. <p><b>+ The Sister, Seraphine and Serafina</b></p>
  2274.  
  2275. <p>Mi Yue was reborn as Seraphine, to a daughter of a merchant, who was married to two wives. From her second mother, she has a sister name Serafina. &nbsp;Despite, coming from a different mother, their relationship and bond are close, many even mistake them as twins.</p>
  2276.  
  2277. <p>Kazama Toma approaches the merchant family and requested the hand in marriage for Seraphine. Serafina having a knack judging person true intention, she distrusts the man and advises her family to turn down the proposal. Angry and upset. Toma started spreading ill rumours about Serafina being a witch. Poison by his word. The villages burn Serafina on the stake. Unable to live without her sister, Seraphine jumps into the fire, burn and dies along with her sister, Serafina.</p>
  2278.  
  2279. <p>Serafina was later reborn as Makoto Noburu.</p>
  2280.  
  2281. <p><b>+ Kikyo, Temporary Family</b></p>
  2282.  
  2283. <p>Kazama Toma manages to marry Mi Yue next reincarnation, name Kikyo, without anyone getting in the way. But after having their first child, Kikyo attention was more focus on their child needs than his needs. Displease by her motherly action. He makes his wife watch as he drowns the baby in the river, killing the child by his own hand. Kikyo went mad shortly after and killed herself.</p>
  2284.  
  2285. <p>The child was later reborn as Yuze Chidori. </p>
  2286.  
  2287. </li>
  2288.  
  2289.  
  2290.  
  2291. </ul>
  2292.  
  2293.  
  2294. </div>
  2295. </div>
  2296. </div>
  2297.  
  2298.  
  2299.  
  2300. <div id="bite">
  2301. <div id="thekey"></div>
  2302. <div class="death">
  2303. <div id="actualnews">
  2304.  
  2305. <center>
  2306.  
  2307. <div style="width:auto;height:280px;overflow:scroll;padding:5px;">
  2308.  
  2309. <h3>
  2310. FEATHER
  2311. </h3>
  2312.  
  2313. BELIEVE IN <b><font color="#711c18"> LUCK</font> & <font color="#711c18"> FATE</font> </b> BELIEVE IN <b><font color="#711c18"> KARMA</font>.</b><br>
  2314. THAT THE <u>ENERGY</u> YOU PUT OUT IN THE WOLRD </br></br>
  2315. <font color="#711c18"><i><u>comes back to meet you.</u></i></font></br>
  2316.  
  2317.  
  2318.  
  2319. <h3>
  2320. Eyes here
  2321. </h3>
  2322. <ul>
  2323. <li><u>INDIE.</u> BLOG.<br></li>
  2324. <li><font color="000000"></font>MULTI-MUSE.<br></li>
  2325. <li><font color="000000"></font>SAIYUKI OCS.<br></li>
  2326. </ul>
  2327.  
  2328. <h3>WELCOME</h3>
  2329. Currently dedicated to Saiyuki,please read rules for more information.
  2330.  
  2331. </center>
  2332.  
  2333.  
  2334. </div>
  2335. </div></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement