Advertisement
annaleese

RP THEME

Feb 19th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 60.89 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  5. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  6.  
  7.  
  8.  
  9. <!--
  10. BLOBS IN A JAR
  11. -->
  12.  
  13.  
  14. <script type="text/javascript">
  15. // <![CDATA[
  16. var colour="#7e7072"; // what colour are the blobs
  17. var speed=66; // speed of animation, lower is faster
  18. var blobs=5; // how many blobs are in the jar
  19. var charc=String.fromCharCode(9679); // a blob - can be changed to charc="hello" or charc="*" for a different effect
  20.  
  21. /***************************\
  22. * Blobs in a Jar Effect *
  23. *(c)2012-13 mf2fm web-design*
  24. * http://www.mf2fm.com/rv *
  25. * DON"T EDIT BELOW THIS BOX *
  26. \***************************/
  27.  
  28. var div;
  29. var xpos=new Array();
  30. var ypos=new Array();
  31. var zpos=new Array();
  32. var dx=new Array();
  33. var dy=new Array();
  34. var dz=new Array();
  35. var blob=new Array();
  36. var swide=800;
  37. var shigh=600;
  38. var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
  39.  
  40. function addLoadEvent(funky) {
  41. var oldonload=window.onload;
  42. if (typeof(oldonload)!="function") window.onload=funky;
  43. else window.onload=function() {
  44. if (oldonload) oldonload();
  45. funky();
  46. }
  47. }
  48.  
  49. addLoadEvent(fill_the_jar);
  50.  
  51. function fill_the_jar() {
  52. var i, dvs;
  53. div=document.createElement("div");
  54. dvs=div.style;
  55. dvs.position="fixed";
  56. dvs.left="0px";
  57. dvs.top="0px";
  58. dvs.width="1px";
  59. dvs.height="1px";
  60. document.body.appendChild(div);
  61. set_width();
  62. for (i=0; i<blobs; i++) {
  63. add_blob(i);
  64. jamjar(i);
  65. }
  66. }
  67.  
  68. function add_blob(ref) {
  69. var dv, sy;
  70. dv=document.createElement("div");
  71. sy=dv.style;
  72. sy.position="absolute";
  73. sy.textAlign="center";
  74. if (ie_version && ie_version<10) {
  75. sy.fontSize="10px";
  76. sy.width="100px";
  77. sy.height="100px";
  78. sy.paddingTop="40px";
  79. sy.color=colour;
  80. dv.appendChild(document.createTextNode(charc));
  81. }
  82. else if (ie_version) {
  83. sy.fontSize="1px";
  84. sy.width="0px";
  85. sy.height="0px";
  86. }
  87. else {
  88. dv.appendChild(document.createTextNode(charc));
  89. sy.color="rgba(0,0,0,0)";
  90. }
  91. ypos[ref]=Math.floor(shigh*Math.random());
  92. dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  93. xpos[ref]=Math.floor(swide*Math.random());
  94. dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  95. zpos[ref]=Math.random()*20;
  96. dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
  97. blob[ref]=dv;
  98. div.appendChild(blob[ref]);
  99. set_blob(ref);
  100. }
  101.  
  102. function rejig(ref, xy) {
  103. if (xy=="y") {
  104. dx[ref]=(0.5+Math.random())*sign(dx[ref]);
  105. dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
  106. }
  107. else {
  108. dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
  109. dy[ref]=(0.5+Math.random())*sign(dy[ref]);
  110. }
  111. }
  112.  
  113. function sign(a) {
  114. if (a<0) return (-2);
  115. else if (a>0) return (2);
  116. else return (0);
  117. }
  118.  
  119. function set_blob(ref) {
  120. var sy;
  121. sy=blob[ref].style;
  122. sy.top=ypos[ref]+"px";
  123. sy.left=xpos[ref]+"px";
  124. if (ie_version && ie_version<10) {
  125. sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
  126. sy.fontSize=30-zpos[ref]+"px";
  127. }
  128. else if (ie_version) {
  129. sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
  130. }
  131. else {
  132. sy.textShadow=colour+" 0px 0px "+zpos[ref]+"px";
  133. sy.fontSize=40+zpos[ref]+"px";
  134. }
  135. }
  136.  
  137. function jamjar(ref) {
  138. if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, "y");
  139. ypos[ref]+=dy[ref];
  140. if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, "x");
  141. xpos[ref]+=dx[ref];
  142. if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
  143. zpos[ref]+=dz[ref];
  144. set_blob(ref);
  145. setTimeout("jamjar("+ref+")", speed);
  146. }
  147.  
  148. window.onresize=set_width;
  149. function set_width() {
  150. var sw_min=999999;
  151. var sh_min=999999;
  152. if (document.documentElement && document.documentElement.clientWidth) {
  153. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  154. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  155. }
  156. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  157. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  158. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  159. }
  160. if (document.body.clientWidth) {
  161. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  162. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  163. }
  164. if (sw_min==999999 || sh_min==999999) {
  165. sw_min=800;
  166. sh_min=600;
  167. }
  168. swide=sw_min;
  169. shigh=sh_min;
  170. }
  171. // ]]>
  172. </script>
  173.  
  174.  
  175. <link rel="shortcut icon" href="{Favicon}">
  176. <link rel="altertnate" type="application/rss+xml" href="{RSS}">
  177. <meta name="description" content="" />
  178. <meta http-equiv="x-dns-prefetch-control" content="off"/>
  179.  
  180. <meta name="color:background" content="#000000"/>
  181. <meta name="color:text" content="#a1a0a0"/>
  182. <meta name="color:description" content=transparent/>
  183. <meta name="color:link" content="#e0d3ed"/>
  184. <meta name="color:link hover" content="#989898" />
  185. <meta name="color:bold" content="#cdc2f0" />
  186. <meta name="color:italic" content="#ffffff" />
  187. <meta name="color:border" content="#292828" />
  188. <meta name="color:scrollbar" content="#000000" />
  189. <meta name="color:postbg" content=transparent />
  190. <meta name="color:blockquote" content="#121212" />
  191. <meta name="color:tags" content="#e0d3ed"/>
  192. <meta name="text:maintitle" content="octomoosey">
  193.  
  194. <meta name="color:links" content=""/>
  195. <meta name="color:links hover" content=""/>
  196. <meta name="color:side links" content=""/>
  197. <meta name="color:side links hover" content=""/>
  198.  
  199. <meta name="text:link 1 symbol" content=""/>
  200. <meta name="text:link 2 symbol" content=""/>
  201. <meta name="text:link 3 symbol" content=""/>
  202. <meta name="text:link 4 symbol" content=""/>
  203. <meta name="text:link 5 symbol" content=""/>
  204. <meta name="text:link 1" content=""/>
  205. <meta name="text:link 2" content=""/>
  206. <meta name="text:link 3" content=""/>
  207. <meta name="text:link 4" content=""/>
  208. <meta name="text:link 5" content=""/>
  209. <meta name="text:link 1 title" content=""/>
  210. <meta name="text:link 2 title" content=""/>
  211. <meta name="text:link 3 title" content=""/>
  212. <meta name="text:link 4 title" content=""/>
  213. <meta name="text:link 5 title" content=""/>
  214.  
  215.  
  216. <link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
  217.  
  218. <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
  219.  
  220. <link href="https://fonts.googleapis.com/css?family=Hind:400,500,700" rel="stylesheet" type="text/css">
  221.  
  222. <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
  223.  
  224. <link href="http://fonts.googleapis.com/css?family=Maven+Pro:400,500,700,900" rel="stylesheet" type="text/css">
  225.  
  226. <link href="https://fonts.googleapis.com/css?family=Fredericka+the+Great" rel="stylesheet">
  227.  
  228.  
  229. <link href="https://static.tumblr.com/qudkd6d/OcDnl99gb/style.css" rel="stylesheet" type="text/css"/>
  230. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  231. <script src="https://static.tumblr.com/qudkd6d/Az6nkemqr/pxuphotoset.min.js"></script>
  232.  
  233.  
  234.  
  235. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  236. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  237. <script>
  238. (function($){
  239. $(document).ready(function(){
  240. $("a[title]").style_my_tooltips({
  241. tip_follows_cursor:true,
  242. tip_delay_time:90,
  243. tip_fade_speed:600,
  244. attribute:"title"
  245. });
  246. });
  247. })(jQuery);
  248. </script>
  249.  
  250. <link href="https://static.tumblr.com/qudkd6d/OcDnl99gb/style.css" rel="stylesheet" type="text/css"/>
  251. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  252. <script src="https://static.tumblr.com/qudkd6d/Az6nkemqr/pxuphotoset.min.js"></script>
  253.  
  254.  
  255. <script>
  256. $(document).ready(function(){
  257. $(".photo-slideshow").pxuPhotoset({
  258. lightbox: true,
  259. rounded: "corners",
  260. gutter: "1px",
  261. borderRadius: "3px",
  262. photoset: ".photo-slideshow",
  263. photoWrap: ".photo-data",
  264. photo: ".pxu-photo"
  265. });
  266. });
  267. </script>
  268.  
  269. <!--
  270. CUSTOM FONTS
  271. -->
  272.  
  273.  
  274. <link href="https://fonts.googleapis.com/css?family=Playfair+Display" rel="stylesheet" type="text/css">
  275.  
  276. <link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" type="text/css">
  277.  
  278. <link href="https://fonts.googleapis.com/css?family=Arizonia" rel="stylesheet" type="text/css">
  279.  
  280. <link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet" type="text/css">
  281.  
  282.  
  283.  
  284. <script type="text/javascript"
  285. src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  286. <script>
  287. $(document).ready(function() {
  288. //
  289. $('a.poplight[href^=#]').click(function() {
  290. var popID = $(this).attr('rel'); //Get Popup Name
  291. var popURL = $(this).attr('href'); //Get Popup href to define size
  292. var query= popURL.split('?');
  293. var dim= query[1].split('&');
  294. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  295. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  296. var popMargTop = ($('#' + popID).height() + 80) / 2;
  297. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  298. //Apply Margin to Popup
  299. $('#' + popID).css({
  300. 'margin-top' : -popMargTop,
  301. 'margin-left' : -popMargLeft
  302. });
  303. $('body').append('<div id="fade"></div>');
  304. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  305. return false;
  306. });
  307. $('a.close, #fade').live('click', function() {
  308. $('#fade , .popup_block').fadeOut(function() {
  309. $('#fade, a.close').remove(); //fade them both out
  310. });
  311. return false;
  312. });
  313. });
  314. </script>
  315. <style type="text/css">
  316.  
  317.  
  318.  
  319.  
  320. #topbar {
  321. position:fixed;
  322. width:100%;
  323. background:{color:containerbg};
  324. height:50px;
  325. }
  326.  
  327.  
  328.  
  329.  
  330. /*customization for popup blocks */
  331. .popup_block{
  332. display:none;
  333. float:left;
  334. background-color:#000;
  335. border: 10px ;
  336. border-image:url("https://static.tumblr.com/hjqurm6/bSVpi16uc/border.png");
  337. border-image-repeat:stretch;
  338. border-image-outset: 1;
  339. border-image-slice: 10;
  340. padding:20px;
  341. position:fixed;
  342. width:300px;
  343. max-height:300px;
  344. top:50%;left:50%;
  345. z-index: 99999;
  346. overflow:auto;
  347. }
  348.  
  349. *html #fade {position: absolute;}
  350. *html .popup_block {position: absolute;}
  351. #fade {
  352. display:none;
  353. position:fixed;
  354. left:0px;
  355. top:0px;
  356. width:100%;
  357. height:100%;
  358. z-index:9999;
  359. background:#000; /* change to #fff for solid white */
  360. opacity:0.5; /* change to opacity:1; */
  361. }
  362.  
  363.  
  364. ::-webkit-scrollbar {
  365. height: 0px;
  366. width: 2px;
  367. background:transparent;
  368. border-left:0px solid transparent;
  369. border-right:0px solid transparent;}
  370.  
  371.  
  372. ::-webkit-scrollbar-thumb {
  373. background:transparent;}
  374.  
  375.  
  376.  
  377. #s-m-t-tooltip {
  378. max-width:100px;
  379. margin-top:-25px;
  380. margin-left:-25px;
  381. font-size: 2px;
  382. font-family: calibri;
  383. padding:2px;
  384. color:{color:text};
  385. font-weight:;
  386. letter-spacing:1px;
  387. text-align:center;
  388. text-transform:uppercase;
  389. background-color:{color:Background};
  390. z-index:999999999999999999999999999999999999;
  391. }
  392.  
  393.  
  394.  
  395. #infos {
  396. text-align:center;
  397. font-size:15px;
  398. padding:20px;
  399. color:#fff;
  400. margin-top:-10px;
  401.  
  402. }
  403.  
  404. #infos a {
  405. margin:7px;
  406. line-height:50px;
  407. background:#857b81;
  408. width:120px;
  409. display:inline-block;
  410. overflow:hidden;
  411. text-align:center;
  412. padding:0px;
  413. -o-transition: all 0.4s ease-out;
  414. -webkit-transition: all 0.4s ease-out;
  415. transition: all 0.4s ease-out;
  416. }
  417.  
  418. #infos a:hover {
  419. color:#fff;
  420. background:#000;
  421. border-radius:0px;
  422. }
  423.  
  424.  
  425.  
  426.  
  427. /* the hover update thing */
  428.  
  429.  
  430.  
  431. #bite
  432. #bite a{
  433. display:block
  434. }
  435. #bite .death {
  436. margin-top:0px;filter: alpha(opacity = 1.0);
  437. opacity:1.0;-webkit-transition: all 0.5s ease-out;
  438. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  439. }
  440.  
  441. #bite:hover .death {
  442. margin-top:0px;
  443. -webkit-transition: all 0.8s ease-out;
  444. -moz-transition: all 0.8s ease-out;
  445. transition: all 0.8s ease-out;
  446. filter: alpha(opacity = 100);
  447. filter: alpha(opacity = 100);
  448. opacity:100;
  449. }
  450.  
  451. /* selection font and background */
  452.  
  453.  
  454. ::selection {
  455. background: #444;
  456. color:#fff; }
  457.  
  458.  
  459. ::-moz-selection {
  460. background: #444;
  461. color:#fff; }
  462.  
  463. /* general look & background */
  464.  
  465.  
  466.  
  467.  
  468.  
  469. body {
  470. background:#000;
  471. background-image: url("https://static.tumblr.com/hjqurm6/UCFpi10u3/psd2.png");
  472. background-attachment: fixed;
  473. background-repeat: no-repeat,repeat;
  474. background-position: left top;
  475. color:#8c8c8c;
  476. font-family: calibri;
  477. text-align:justify;
  478. font-size: 10px;
  479. letter-spacing:1px;
  480. line-height:135%;
  481.  
  482. }
  483.  
  484.  
  485.  
  486. a:link, a:active, a:visited {
  487. text-decoration: none;
  488. color: #857b81;
  489. -moz-transition-duration:.6s;
  490. -webkit-transition-duration:.6s;
  491. -o-transition-duration:.6s;
  492. -webkit-filter: blur(0px);}
  493.  
  494. a:hover {
  495. color: #8f8f8f;
  496. -moz-transition-duration:.6s;
  497. -webkit-transition-duration:.6s;
  498. -o-transition-duration:.6s;
  499. -webkit-filter: blur(1px);}
  500.  
  501.  
  502.  
  503. h1 {
  504. background-color: transparent;
  505. font-family: "Montserrat", sans-serif;
  506. font-size: 16px;
  507. line-height: 20px;
  508. letter-spacing: 2px;
  509. text-align: center;
  510. text-transform:uppercase;
  511. color: #857b81;
  512. }
  513.  
  514.  
  515. h2 {
  516. background-color: transparent;
  517. font-family: "Montserrat", sans-serif;
  518. font-size: 15px;
  519. line-height: 16px;
  520. letter-spacing: 2px;
  521. text-align: left;
  522. text-transform:uppercase;
  523. color: #857b81;
  524. }
  525.  
  526.  
  527.  
  528.  
  529. h3 {
  530. font-family:'bebas neue', sans-serif;
  531. font-size:12px;
  532. padding: 2px
  533. margin: 5px 0px 0px;
  534. letter-spacing: 1px;
  535. background-color:#857a7d;
  536. background-repeat:no-repeat;
  537. background-attachment:fixed;
  538. border:dashed 1px #fff;
  539. line-height: normal;
  540. text-transform: uppercase;
  541. color:#fff;
  542. text-align: center;
  543. width:auto;
  544. }
  545.  
  546.  
  547.  
  548. quotetext {
  549. background-color: transparent;
  550. font-family: times;
  551. font-size: 14px;
  552. line-height: 20px;
  553. letter-spacing: 2px;
  554. text-align: center;
  555. text-transform:uppercase;
  556. color: #dadada;
  557. }
  558.  
  559.  
  560.  
  561. blockquote {
  562. word-wrap: break-word;
  563. padding:2px 7px;
  564. margin:3px 0 3px 10px;
  565. border-left:1px solid {color:border};
  566. background-color:transparent;}
  567.  
  568.  
  569. blockquote img{
  570. max-width:100%;
  571. height:auto;
  572. }
  573.  
  574. blockquote blockquote img{
  575. max-width:100%;
  576. height:auto;
  577. }
  578.  
  579.  
  580.  
  581.  
  582.  
  583. b, bold {
  584. font-size:12px;
  585. text-transform:uppercase;
  586. letter-spacing:1px;
  587. font-family: 'bebas neue';
  588. color: #857b81;
  589. }
  590.  
  591.  
  592. i, italic {
  593. font-size:12px;
  594. color: #857b81;
  595. font-family: "summerhearts", sans-serif;
  596. text-shadow: 0px 0px 2px #5a5a5a;
  597. letter-spacing:1px;
  598. text-transform:lowercase;
  599. }
  600.  
  601.  
  602.  
  603. p {
  604. margin-top:5px;
  605. margin-bottom:5px;}
  606.  
  607.  
  608. ol {
  609. list-style:normal;}
  610.  
  611.  
  612. ul {
  613. list-style:square;}
  614.  
  615.  
  616. small {
  617. font-size:10px}
  618.  
  619.  
  620. sup,sub {
  621. font-size:11px}
  622.  
  623.  
  624. pre {
  625. font-size: 10px;
  626. letter-spacing:1px;
  627. background-color:none;
  628. font-family: "Times New Roman", Times, serif;
  629. font-style: none;
  630. text-align:center;
  631. }
  632.  
  633.  
  634.  
  635. big {
  636. font-size:14px;
  637. text-transform:uppercase;
  638. letter-spacing:2px;
  639. font-family:"summerhearts";
  640. color: #;
  641. text-shadow: 0px 0px 2px #383838;
  642. }
  643.  
  644.  
  645.  
  646. {block:IfGreyscale}
  647.  
  648. img {
  649. -webkit-filter:grayscale(100%);
  650. -webkit-transition: all 0.9s ease-in-out;
  651. -moz-transition: all 0.9s ease-in-out;
  652. -o-transition: all 0.9s ease-in-out;
  653. -ms-transition: all 0.9s ease-in-out;
  654. transition: all 0.9s ease-in-out;}
  655.  
  656. img:hover {
  657. -webkit-filter:none;}
  658.  
  659. .html_photoset {
  660. -webkit-filter: grayscale(100%);
  661. -webkit-transition: all 0.9s ease-in-out;
  662. -moz-transition: all 0.9s ease-in-out;
  663. -o-transition: all 0.9s ease-in-out;
  664. -ms-transition: all 0.9s ease-in-out;
  665. transition: all 0.9s ease-in-out;}
  666.  
  667. .html_photoset:hover {
  668. -webkit-filter: none;}
  669.  
  670. {/block:IfGreyscale}
  671.  
  672.  
  673.  
  674. #pcontainer {
  675. position:fixed;
  676. background-color:#000;
  677. overflow-y:scroll;
  678. overflow-x:hidden;
  679. top:0px;
  680. left:640px;
  681. height:400px;
  682. width:325px;
  683. -webkit-mask-image: -webkit-gradient(
  684. linear, center 75%, bottom,
  685. from(rgba(0,0,0,40)),
  686. to(rgba(10,0,0,0)));
  687. }
  688.  
  689.  
  690. #pcontainer img {
  691. max-width:100%;
  692. padding:10px;
  693.  
  694. }
  695.  
  696.  
  697.  
  698. #pcontainer {
  699. -webkit-mask-image: -webkit-gradient(
  700. linear, center 25%, center bottom,
  701. from(rgba(0,0,0,40)),
  702. to(rgba(40,0,0,0)));
  703. }
  704.  
  705.  
  706. #content {
  707. margin-left:62px;
  708. width:310px;
  709. margin-top: -100px;
  710. }
  711.  
  712.  
  713. #posts {
  714. width:300px;
  715. padding:10px;
  716. margin-top: 85px;
  717. margin-left:-70px;
  718. padding-bottom:0px;}
  719.  
  720.  
  721. #sidebar {
  722. padding-top:10px;
  723. left:722px;
  724. top:230px;
  725. line-height:15px;
  726. width: 180px;
  727. position: fixed;
  728. top: 20px;
  729. text-align: center; }
  730.  
  731.  
  732. #sidebar img {
  733. width:150px;
  734. padding-top:10px;
  735. padding-bottom:10px;
  736. }
  737.  
  738.  
  739.  
  740.  
  741.  
  742.  
  743. #actualnews {
  744. background-color:#000;
  745. font-family: 'times new roman', sans-serif;
  746. font-size:10px;
  747. color: #9e9f9f;
  748. width:180px;
  749. height:130px;
  750. left: 1000px;
  751. top: 200px;
  752. text-align:justify;
  753. position:fixed;
  754.  
  755. }
  756.  
  757.  
  758.  
  759. #actualnews:hover {
  760. -webkit-filter:none;
  761. -webkit-transition: all 0.6s ease-in-out;
  762. opacity:1;
  763. -webkit-transition: all 0.6s ease-in-out;
  764. -moz-transition: all 0.6s ease-in-out;
  765. -o-transition: all 0.6s ease-in-out;
  766. -ms-transition: all 0.6s ease-in-out;
  767. transition: all 0.6s ease-in-out; }
  768.  
  769.  
  770.  
  771. #thekey {
  772. position:fixed;
  773. color:#000;
  774. background-color:#000;
  775. text-shadow: 0px 0px 2px #fff;
  776. margin-top:0px;
  777. margin-left:55px;
  778. width:710px;
  779. padding:9px;
  780. letter-spacing:2px;
  781. word-spacing:5px; /*this defines the separation of each word of the links*/
  782. font-family:'bebas neue', sans-serif;
  783. font-size:15px;
  784. text-align:center;
  785. background:transparent;
  786. text-transform:uppercase;
  787. -webkit-transform: rotate(-90deg);
  788. -moz-transform: rotate(-90deg);
  789. -o-transform: rotate(-90deg);
  790. }
  791.  
  792. /* JUMBLED LINKS */
  793.  
  794. .alinks {
  795. position:fixed;
  796. text-shadow: 0px 0px 0px #000;
  797. left:10px;
  798. top:10px;
  799. transform: rotate(0deg);
  800. font-family:'bebas neue', sans-serif;
  801. font-weight:bold;
  802. font-size: 20px;}
  803.  
  804.  
  805. .alinks a {
  806. opacity:0.5;
  807. padding:10px;
  808. color:#000;
  809. margin-right:0px;
  810. -webkit-filter: blur(0px);
  811. -webkit-transition: 0.8s ease-in;
  812. -moz-transition: 1s ease-in;
  813. transition: 1s ease-in;
  814. }
  815.  
  816. .alinks a:hover {
  817. opacity:1;
  818. -webkit-filter: blur(3px);
  819. -webkit-transition: all 0.6s ease-in-out;
  820. -moz-transition: all 0.6s ease-in-out;
  821. -o-transition: all 0.6s ease-in-out;
  822. -ms-transition: all 0.6s ease-in-out;
  823. transition: all 0.6s ease-in-out;
  824. color: #c7c7c7;
  825. text-shadow: 3px 3px 3px #000;
  826. }
  827.  
  828.  
  829. .blinks {
  830. position:fixed;
  831. text-shadow: 0px 0px 0px #000;
  832. left:540px;
  833. top:50px;
  834. font-family:'bebas neue', sans-serif;
  835. font-weight:bold;
  836. color:#000;
  837. font-size: 30px;}
  838.  
  839.  
  840. .blinks a {
  841. padding:10px;
  842. color:#fff;
  843. margin-right:0px;
  844. }
  845.  
  846. blinks a:hover {
  847. -webkit-transition: all 0.6s ease-in-out;
  848. -moz-transition: all 0.6s ease-in-out;
  849. -o-transition: all 0.6s ease-in-out;
  850. -ms-transition: all 0.6s ease-in-out;
  851. transition: all 0.6s ease-in-out;
  852. color: #695d60;
  853. text-shadow: 2px 2px 2px #000;
  854. }
  855.  
  856. .animatedlink1 {
  857. -webkit-animation-name: scalex;
  858. -webkit-animation-duration:5s;
  859. -webkit-animation-iteration-count:infinite;
  860. -webkit-animation-timing-function:ease-in-out;
  861. -moz-animation-name: scale;
  862. -moz-animation-duration:5s;
  863. -moz-animation-iteration-count:infinite;
  864. -moz-animation-timing-function:ease-in-out;
  865. }
  866.  
  867. @-webkit-keyframes scalex{
  868. from {-webkit-transform: scale(1.0);}
  869. 45% {-webkit-transform: scale(0.8);}
  870. to {-webkit-transform: scale(1.0);}
  871. }
  872.  
  873. @-moz-keyframes scale{
  874. from {-webkit-transform: scale(1.0);}
  875. 45% {-webkit-transform: scale(0.8);}
  876. to {-webkit-transform: scale(1.0);}
  877. }
  878.  
  879.  
  880.  
  881. .clinks {
  882. position:fixed;
  883. text-shadow: 0px 0px 0px #000;
  884. left:540px;
  885. top:100px;
  886. transform: rotate(0deg);
  887. font-family:'bebas neue', sans-serif;
  888. font-weight:bold;
  889. font-size: 30px;}
  890.  
  891.  
  892. .clinks a {
  893. padding:10px;
  894. color:#fff;
  895. margin-right:0px;
  896. }
  897.  
  898. .animatedlink2 {
  899. -webkit-animation-name: scalex;
  900. -webkit-animation-duration:5s;
  901. -webkit-animation-iteration-count:infinite;
  902. -webkit-animation-timing-function:ease-in-out;
  903. -moz-animation-name: scale;
  904. -moz-animation-duration:5s;
  905. -moz-animation-iteration-count:infinite;
  906. -moz-animation-timing-function:ease-in-out;
  907. }
  908.  
  909. @-webkit-keyframes scalex{
  910. from {-webkit-transform: scale(1.0);}
  911. 45% {-webkit-transform: scale(0.8);}
  912. to {-webkit-transform: scale(1.0);}
  913. }
  914.  
  915. @-moz-keyframes scale{
  916. from {-webkit-transform: scale(1.0);}
  917. 45% {-webkit-transform: scale(0.8);}
  918. to {-webkit-transform: scale(1.0);}
  919. }
  920.  
  921. .dlinks {
  922. position:fixed;
  923. text-shadow: 0px 0px 0px #000;
  924. left:540px;
  925. top:150px;
  926. transform: rotate(0deg);
  927. font-family:'bebas neue', sans-serif;
  928. font-weight:bold;
  929. font-size: 30px;}
  930.  
  931.  
  932. .dlinks a {
  933. padding:10px;
  934. color:#fff;
  935. margin-right:0px;
  936. }
  937.  
  938. .animatedlink3 {
  939. -webkit-animation-name: scalex;
  940. -webkit-animation-duration:5s;
  941. -webkit-animation-iteration-count:infinite;
  942. -webkit-animation-timing-function:ease-in-out;
  943. -moz-animation-name: scale;
  944. -moz-animation-duration:5s;
  945. -moz-animation-iteration-count:infinite;
  946. -moz-animation-timing-function:ease-in-out;
  947. }
  948.  
  949. @-webkit-keyframes scalex{
  950. from {-webkit-transform: scale(1.0);}
  951. 45% {-webkit-transform: scale(0.8);}
  952. to {-webkit-transform: scale(1.0);}
  953. }
  954.  
  955. @-moz-keyframes scale{
  956. from {-webkit-transform: scale(1.0);}
  957. 45% {-webkit-transform: scale(0.8);}
  958. to {-webkit-transform: scale(1.0);}
  959. }
  960.  
  961.  
  962.  
  963.  
  964. .elinks {
  965. position:fixed;
  966. text-shadow: 0px 0px 0px #000;
  967. left:540px;
  968. top:200px;
  969. transform: rotate(0deg);
  970. font-family:'bebas neue', sans-serif;
  971. font-weight:bold;
  972. font-size: 30px;}
  973.  
  974.  
  975. .elinks a {
  976. padding:10px;
  977. color:#fff;
  978. margin-right:0px;
  979. }
  980.  
  981. .animatedlink4 {
  982. -webkit-animation-name: scalex;
  983. -webkit-animation-duration:5s;
  984. -webkit-animation-iteration-count:infinite;
  985. -webkit-animation-timing-function:ease-in-out;
  986. -moz-animation-name: scale;
  987. -moz-animation-duration:5s;
  988. -moz-animation-iteration-count:infinite;
  989. -moz-animation-timing-function:ease-in-out;
  990. }
  991.  
  992. @-webkit-keyframes scalex{
  993. from {-webkit-transform: scale(1.0);}
  994. 45% {-webkit-transform: scale(0.8);}
  995. to {-webkit-transform: scale(1.0);}
  996. }
  997.  
  998. @-moz-keyframes scale{
  999. from {-webkit-transform: scale(1.0);}
  1000. 45% {-webkit-transform: scale(0.8);}
  1001. to {-webkit-transform: scale(1.0);}
  1002. }
  1003.  
  1004.  
  1005.  
  1006. .flinks {
  1007. position:fixed;
  1008. text-shadow: 0px 0px 0px #000;
  1009. left:540px;
  1010. top:200px;
  1011. transform: rotate(0deg);
  1012. font-family:'bebas neue', sans-serif;
  1013. font-weight:bold;
  1014. font-size: 30px;}
  1015.  
  1016.  
  1017. .flinks a {
  1018. padding:10px;
  1019. color:#fff;
  1020. margin-right:0px;
  1021.  
  1022. }
  1023.  
  1024. .animatedlink5 {
  1025. -webkit-animation-name: scalex;
  1026. -webkit-animation-duration:5s;
  1027. -webkit-animation-iteration-count:infinite;
  1028. -webkit-animation-timing-function:ease-in-out;
  1029. -moz-animation-name: scale;
  1030. -moz-animation-duration:5s;
  1031. -moz-animation-iteration-count:infinite;
  1032. -moz-animation-timing-function:ease-in-out;
  1033. }
  1034.  
  1035. @-webkit-keyframes scalex{
  1036. from {-webkit-transform: scale(1.0);}
  1037. 45% {-webkit-transform: scale(0.8);}
  1038. to {-webkit-transform: scale(1.0);}
  1039. }
  1040.  
  1041. @-moz-keyframes scale{
  1042. from {-webkit-transform: scale(1.0);}
  1043. 45% {-webkit-transform: scale(0.8);}
  1044. to {-webkit-transform: scale(1.0);}
  1045. }
  1046.  
  1047. .glinks {
  1048. position:fixed;
  1049. text-shadow: 0px 0px 0px #000;
  1050. left:540px;
  1051. top:250px;
  1052. transform: rotate(0deg);
  1053. font-family:'bebas neue', sans-serif;
  1054. font-weight:bold;
  1055. font-size: 30px;}
  1056.  
  1057.  
  1058. .glinks a {
  1059. padding:10px;
  1060. color:#fff;
  1061. margin-right:0px;
  1062.  
  1063. }
  1064.  
  1065. .animatedlink6 {
  1066. -webkit-animation-name: scalex;
  1067. -webkit-animation-duration:5s;
  1068. -webkit-animation-iteration-count:infinite;
  1069. -webkit-animation-timing-function:ease-in-out;
  1070. -moz-animation-name: scale;
  1071. -moz-animation-duration:5s;
  1072. -moz-animation-iteration-count:infinite;
  1073. -moz-animation-timing-function:ease-in-out;
  1074. }
  1075.  
  1076. @-webkit-keyframes scalex{
  1077. from {-webkit-transform: scale(1.0);}
  1078. 45% {-webkit-transform: scale(0.8);}
  1079. to {-webkit-transform: scale(1.0);}
  1080. }
  1081.  
  1082. @-moz-keyframes scale{
  1083. from {-webkit-transform: scale(1.0);}
  1084. 25% {-webkit-transform: scale(0.8);}
  1085. to {-webkit-transform: scale(1.0);}
  1086. }
  1087.  
  1088. .hlinks {
  1089. position:fixed;
  1090. text-shadow: 0px 0px 0px #000;
  1091. left:380px;
  1092. top:460px;
  1093. transform: rotate(0deg);
  1094. font-family:'bebas neue', sans-serif;
  1095. font-weight:bold;
  1096. font-size: 30px;}
  1097.  
  1098.  
  1099. .hlinks a {
  1100. padding:10px;
  1101. color:#2a2a2a;
  1102. margin-right:0px;
  1103.  
  1104. }
  1105.  
  1106. .animatedlink7 {
  1107. -webkit-animation-name: scalex;
  1108. -webkit-animation-duration:5s;
  1109. -webkit-animation-iteration-count:infinite;
  1110. -webkit-animation-timing-function:rotate(0deg);
  1111. -moz-animation-name: ro;
  1112. -moz-animation-duration:5s;
  1113. -moz-animation-iteration-count:infinite;
  1114. -moz-animation-timing-function:ease-in-out;
  1115. }
  1116.  
  1117. @-webkit-keyframes scalex{
  1118. from {-webkit-transform: scale(0.8);}
  1119. 45% {-webkit-transform: scale(1.0);}
  1120. to {-webkit-transform: scale(0.8);}
  1121. }
  1122.  
  1123. @-moz-keyframes scale{
  1124. from {-webkit-transform: scale(1.0);}
  1125. 100% {-webkit-transform: scale(0.8);}
  1126. to {-webkit-transform: scale(1.0);}
  1127. }
  1128.  
  1129. .credit {
  1130. position:fixed;
  1131. text-shadow: 0px 0px 11px #7C6868;
  1132. right:15px;
  1133. bottom:15px;
  1134. transform: rotate(0deg);
  1135. font-family: helvetica;
  1136. font-size: 14px; }
  1137.  
  1138.  
  1139. .credit a {
  1140. padding:10px;
  1141. color:#191919;
  1142. margin-right:0px;
  1143. -webkit-filter: blur(1px);
  1144. -webkit-transition: 0.8s ease-in;
  1145. -moz-transition: 1s ease-in;
  1146. transition: 1s ease-in;
  1147. }
  1148.  
  1149. .credit a:hover {
  1150. -webkit-transition: all 0.6s ease-in-out;
  1151. -moz-transition: all 0.6s ease-in-out;
  1152. -o-transition: all 0.6s ease-in-out;
  1153. -ms-transition: all 0.6s ease-in-out;
  1154. transition: all 0.6s ease-in-out;
  1155. color: #000000;
  1156. text-shadow: 2px 2px 2px #000000;
  1157. }
  1158.  
  1159.  
  1160.  
  1161.  
  1162. #pagination {
  1163. position:fixed;
  1164. font-family:'bebas neue';
  1165. width:300px;
  1166. color: #000;
  1167. font-size:20px;
  1168. top:185px;
  1169. left:1000px;
  1170. letter-spacing:3px;
  1171. text-align:center;
  1172. z-index:999999999999;
  1173. }
  1174.  
  1175. #pagination a {
  1176. text-transform:uppercase;
  1177. color:#fff;
  1178. -webkit-filter: blur(1px);
  1179. -webkit-transition: 0.8s ease-in;
  1180. -moz-transition: 1s ease-in;
  1181. transition: 1s ease-in;
  1182. z-index:999999999999;
  1183. }
  1184.  
  1185. #pagination a:hover {
  1186. color:#857b81;
  1187. -webkit-filter: blur(0px);
  1188. -webkit-transition: 0.2s ease-in;
  1189. -moz-transition: 1s ease-in;
  1190. transition: 1s ease-in;
  1191. }
  1192.  
  1193.  
  1194. .audio {
  1195. width:335px;
  1196. padding-bottom:10px;
  1197. background-color:{color:#000000};}
  1198.  
  1199. .albumart {
  1200. float:left;
  1201. padding:0px 10px 10px 0px;}
  1202.  
  1203. .albumart img {
  1204. width:65px;
  1205. height:65px;}
  1206.  
  1207. .playercontainer {
  1208. text-align:left;
  1209. padding:10px;
  1210. background-color:#090909;
  1211. width:335px;}
  1212.  
  1213. .audioinfo {
  1214. padding:10px;
  1215. color:{color:text};}
  1216.  
  1217.  
  1218.  
  1219.  
  1220.  
  1221. /* QUESTIONS & ANSWERS DETAILS */
  1222.  
  1223.  
  1224. #asker {
  1225. font-family: "Arizonia", cursive;
  1226. font-style:none;
  1227. letter-spacing:2px;
  1228. text-align:center;
  1229. padding-top: 10px;
  1230. margin-left:0px;
  1231. text-transform:lowercase;
  1232. color: #fff;
  1233. font-size:20px;
  1234. padding:5px;
  1235. letter-spacing:0px
  1236. text-shadow:0 0 2px #aeaeae;
  1237. }
  1238.  
  1239.  
  1240. #asker a{
  1241. font-family: "Arizonia", cursive;
  1242. font-style:none;
  1243. letter-spacing:2px;
  1244. text-transform:lowercase;
  1245. font-size:20px;
  1246. letter-spacing: 0px;
  1247. text-shadow: none;
  1248. color: #c9c9c9;
  1249. text-shadow:0 0 2px #1a1a1a;
  1250. }
  1251.  
  1252.  
  1253. #asker a:hover {
  1254. color: #656565;
  1255. letter-spacing: 0px;
  1256. text-shadow:0 0 2px #000;
  1257. -webkit-filter: blur(2px);
  1258. -webkit-transition:all .5s ease-in-out;
  1259. -moz-transition:all .5s ease-in-out;
  1260. transition:all .5s ease-in-out;
  1261. }
  1262.  
  1263.  
  1264.  
  1265. #ask {
  1266. font-family: times;
  1267. width:280px;
  1268. font-size:8px;
  1269. text-align:center;
  1270. padding-top: 5px;
  1271. margin-left:5px;
  1272. text-transform:auto;
  1273. letter-spacing:3px
  1274. margin-top:-10px;
  1275. padding:5px;
  1276. background: #000;
  1277. background: url(" https://static.tumblr.com/hjqurm6/bSVpi16uc/border.png");
  1278. color:#dcdcdc;
  1279. text-transform: uppercase;
  1280. border-bottom-left-radius: 10px;
  1281. border-bottom-right-radius: 10px;
  1282. border-top-left-radius: 10px;
  1283. border-top-right-radius: 10px;
  1284. padding:5px;
  1285. letter-spacing:2px;
  1286. border-bottom:solid 1px #717171;
  1287. border-top:solid 1px #717171;
  1288. }
  1289.  
  1290.  
  1291. .ans {
  1292. width:200px;
  1293. }
  1294.  
  1295.  
  1296. /* POST INFO DETAILS */
  1297.  
  1298.  
  1299.  
  1300. #info {
  1301. background-color:#857b81;
  1302. border: 1px solid #857b81;
  1303. border-bottom-right-radius: 15px;
  1304. border-bottom-left-radius: 15px;
  1305. border-top-right-radius: 15px;
  1306. border-top-left-radius: 15px;
  1307. width:300px;
  1308. height:5px;
  1309. text-align:center;
  1310. letter-spacing:10px;
  1311. margin-top:8px;
  1312. text-transform:uppercase;
  1313. font-size:15px;
  1314. font-style:none;
  1315. padding-bottom:20px;
  1316. }
  1317.  
  1318.  
  1319.  
  1320.  
  1321. #info a {
  1322. color:#dcdcdc;}
  1323.  
  1324. #info a:hover {
  1325. color:#000;}
  1326.  
  1327.  
  1328.  
  1329.  
  1330. #tags {
  1331. width:300px;
  1332. font-family: times;
  1333. color:#fff;
  1334. letter-spacing:0px;
  1335. text-transform:uppercase;
  1336. font-size:8px;
  1337. font-style:normal;
  1338. margin-top:0px;
  1339. padding-bottom:10px;
  1340. }
  1341.  
  1342.  
  1343. #tags a {
  1344. opacity:0.8;
  1345. color:#fff;
  1346.  
  1347. }
  1348.  
  1349.  
  1350. #tags a:hover {
  1351. color:{color:text};
  1352. }
  1353.  
  1354.  
  1355.  
  1356.  
  1357.  
  1358.  
  1359. .note {
  1360. text-transform:uppercase;
  1361. font-style:normal;
  1362. letter-spacing:0px;
  1363. font-size: 10px;
  1364. text-align:left;
  1365. line-height:90%;
  1366. margin-left:-40px;}
  1367.  
  1368. .note li {
  1369. list-style-type:none;
  1370. border-bottom:0px solid {color:border};
  1371. padding:10px 25px 10px 25px;
  1372. text-align:left;
  1373. margin:0px;
  1374. -moz-transition-duration:0.5s;
  1375. -webkit-transition-duration:0.5s;
  1376. -o-transition-duration:0.5s;}
  1377.  
  1378. .note img.avatar {
  1379. margin-right: 10px;
  1380. width: 16px;
  1381. height: 16px;}
  1382.  
  1383.  
  1384. #s-m-t-tooltip {
  1385. max-width:300px;
  1386. padding:5px;
  1387. margin-left:25px;
  1388. color: #fff;
  1389. background-image:url("https://static.tumblr.com/hjqurm6/Qrjpi1164/border.png");
  1390. border:1px solid #fff;
  1391. font-weight:bold;
  1392. font-size:10px;
  1393. text-transform:uppercase;
  1394. border-radius:20px 0px 20px 0px;
  1395. font-family:arial;
  1396. text-shadow:1px 1px1px #fff;
  1397. z-index:999999999999999999999999999999;
  1398. }
  1399.  
  1400. /* THE VERSES TABS */
  1401.  
  1402.  
  1403. ul#tabs {
  1404. list-style-type: none;
  1405. padding: 0;
  1406. text-align: center;
  1407. font-size:8px;
  1408. letter-spacing:1px;
  1409. text-shadow:1px 1px 0px #4c4c4c,
  1410. 1px -1px 0px #4c4c4c,
  1411. -1px -1px 0px #4c4c4c,
  1412. -1px 1px 0px #4c4c4c,
  1413. 0px 1px 0px #4c4c4c,
  1414. 0px -1px 0px #4c4c4c,
  1415. 1px 0px 0px #4c4c4c,
  1416. -1px 0px 0px #4c4c4c;
  1417.  
  1418. }
  1419.  
  1420.  
  1421.  
  1422. ul#tabs li {
  1423. background-image: url(https://static.tumblr.com/hjqurm6/Qrjpi1164/border.png);
  1424. background-repeat:repeat;
  1425. background-attachment:fixed;
  1426. border-left: double 3px #000;
  1427. border-top: double 3px #000;
  1428. border-right: double 3px #000;
  1429. border-bottom: double 3px #000;
  1430. color:#e6e6e6;
  1431. text-shadow:1px 1px 0px #000,
  1432. 1px -1px 0px #000,
  1433. -1px -1px 0px #000,
  1434. -1px 1px 0px #000,
  1435. 0px 1px 0px #000,
  1436. 0px -1px 0px #000,
  1437. 1px 0px 0px #000,
  1438. -1px 0px 0px #000;
  1439. display: inline-block;
  1440. padding: 4px 10px;
  1441. margin-bottom: 4px;
  1442. cursor: pointer;
  1443. }
  1444.  
  1445.  
  1446.  
  1447. ul#tabs li:hover {
  1448. background-color: transparent;
  1449. color: #eaeaea;
  1450. }
  1451.  
  1452. ul#tabs li.active {
  1453. background-image: url('');
  1454. background:#151515;
  1455. background-repeat:repeat;
  1456. background-attachment:fixed;
  1457. border-left: double 3px #000;
  1458. border-top: double 3px #000;
  1459. border-right: double 3px #000;
  1460. border-bottom: double 3px #000;
  1461. color:#e6e6e6;
  1462. text-shadow:1px 1px 0px #000,
  1463. 1px -1px 0px #000,
  1464. -1px -1px 0px #000,
  1465. -1px 1px 0px #000,
  1466. 0px 1px 0px #000,
  1467. 0px -1px 0px #000,
  1468. 1px 0px 0px #000,
  1469. -1px 0px 0px #000;
  1470. display: inline-block;
  1471. padding: 4px 10px;
  1472. margin-bottom: 4px;
  1473. cursor: pointer;
  1474. }
  1475.  
  1476.  
  1477.  
  1478. ul#tab {
  1479. list-style-type: none;
  1480. margin: 0;
  1481. padding: 0;
  1482. }
  1483.  
  1484. ul#tab li {
  1485. display: none;
  1486. }
  1487.  
  1488. ul#tab li.active {
  1489. display: block;
  1490. }
  1491.  
  1492. @font-face{font-family:"summerhearts";src:url('http://static.tumblr.com/it5srtk/Jkcorx9q0/summerhearts-regular.otf');}
  1493. @font-face{font-family:"nightingale";src:url('http://static.tumblr.com/it5srtk/1yeorxbk2/nightingale_sample.ttf');}
  1494. @font-face { font-family: "jenna sue"; src: url('https://dl.dropboxusercontent.com/s/bsju94guldr45k8/JennaSue.ttf?dl=0'); format("truetype");}
  1495. @font-face{font-family:"dead island";src:url('http://static.tumblr.com/zx3ibzm/0p7orvnuc/dead_island.ttf');}
  1496. @font-face { font-family: "bebas_neue"; src: url('https://dl.dropboxusercontent.com/s/scbj3da4dz3dfmf/bebasneue.otf?dl=1'); format(“truetype”);}
  1497. @font-face { font-family: "lucky dream"; src: url('https://dl.dropboxusercontent.com/s/5v9ppz3132j74gj/Lucky%20Dream.ttf'); format("truetype");}
  1498. </style>
  1499. </head>
  1500.  
  1501. <body>
  1502.  
  1503.  
  1504. <div id="content">
  1505.  
  1506. <div id="sidebar">
  1507.  
  1508.  
  1509. <img src="{image:Sidebar}" />
  1510.  
  1511. <div id="description">{description}</div>
  1512.  
  1513. </div>
  1514.  
  1515. <div id="pagination">
  1516. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">previous</a> • {/block:PreviousPage}{block:NextPage} <a href="{NextPage}">next</a>{/block:NextPage}{/block:Pagination}
  1517. </div>
  1518.  
  1519.  
  1520.  
  1521. <div id="links">
  1522.  
  1523. <div class="blinks">
  1524. <DIV CLASS="animatedlink1">
  1525. <a href="http://www.restoringpeace.tumblr.com/ask" title="ask">01.</a></a>
  1526. </div>
  1527. </div>
  1528.  
  1529.  
  1530. <div class="clinks">
  1531. <div class="animatedlink2">
  1532. <a href="#?w=340" rel="box2" class="poplight"title="guidelines">02.</a> </a>
  1533. </div>
  1534. </div>
  1535.  
  1536.  
  1537. <div class="dlinks">
  1538. <div class="animatedlink3">
  1539. <a href="#?w=340" rel="box3" class="poplight"title="dossier">03.</a></a> </a>
  1540. </div>
  1541. </div>
  1542.  
  1543.  
  1544.  
  1545.  
  1546. <div class="flinks">
  1547. <div class="animatedlink5">
  1548. <a href="#?w=340" rel="box4" class="poplight"title="Navigation">04.</a></a> </a>
  1549. </div>
  1550. </div>
  1551.  
  1552. <div class="glinks">
  1553. <div class="animatedlink6">
  1554. <a href="#?w=340" rel="box5" class="poplight"title="VERSES">05.</a></a> </a> </a></a> </a>
  1555. </div>
  1556. </div>
  1557.  
  1558. <div class="hlinks">
  1559. <div class="animatedlink7">
  1560. <a href="#?w=340" rel="box6" class="poplight"title="home"></a></a> </a> </a></a> </a>
  1561. </div>
  1562. </div>
  1563. <div class="credit">
  1564.  
  1565. <a href="http://agirlingrey.tumblr.com/" title="agirlingrey.">A.</a>
  1566. </div>
  1567.  
  1568.  
  1569. </div></div>
  1570.  
  1571. <div id="pcontainer">
  1572.  
  1573. <div id="content"><div id="posts">
  1574. {block:Posts}
  1575.  
  1576. {block:Quote}<quotetext>"{Quote}"</quotetext>&nbsp; <br><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; — {Source} {/block:Quote}
  1577. {block:Title}<h1>{Title}&nbsp;</h1>{/block:Title}
  1578. {block:Text}{Body}{/block:Text}
  1579.  
  1580. {block:Link}<a href="{URL}" class="link" {Target}><h1>{Name}&nbsp;</h1></a>
  1581.  
  1582. {block:Description}<P>{Description}</p>{/block:Description}{/block:Link}
  1583.  
  1584. {block:Photo}<padding-top="10px" ><center>{LinkOpenTag}<img src="{PhotoURL-HighRes}" width="360px">{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1585. {block:Photoset}<center><padding-top="10px" ><{Photoset}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1586.  
  1587. {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}
  1588.  
  1589. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1590.  
  1591.  
  1592. {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}
  1593.  
  1594.  
  1595. {block:Audio}<div class="audio">
  1596.  
  1597. {block:AlbumArt}
  1598. {/block:AlbumArt}
  1599.  
  1600.  
  1601. <div class="audioinfo">{block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}{block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  1602. {/block:ExternalAudio}<b>Played:</b> {PlayCount} times</div>
  1603. <br><div class="playercontainer">{AudioPlayerBlack}</div></div>
  1604. {block:Caption}{Caption}{/block:Caption}<br>{/block:Audio}
  1605.  
  1606.  
  1607. <div id="info">
  1608. <br>
  1609.  
  1610.  
  1611. &nbsp; &nbsp;
  1612.  
  1613.  
  1614. {block:Date}
  1615. <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>
  1616. {/block:Date}
  1617.  
  1618.  
  1619. {block:RebloggedFrom}
  1620. <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>
  1621. {/block:RebloggedFrom}
  1622.  
  1623.  
  1624. {block:ContentSource}
  1625. <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>
  1626. {/block:ContentSource}
  1627.  
  1628.  
  1629. <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>
  1630.  
  1631.  
  1632. <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>
  1633.  
  1634.  
  1635. <br>
  1636.  
  1637. {block:HasTags}<div id="tags">{block:Tags} <a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}</div> &nbsp;<br><br>
  1638. <br>
  1639.  
  1640.  
  1641. {/block:Posts}
  1642. <div class="note">
  1643. {block:PostNotes}{PostNotes}{/block:PostNotes}
  1644. </div>
  1645.  
  1646. {/block:Posts}</div></div>
  1647.  
  1648.  
  1649.  
  1650. </div> </div> </div> </div> </div> </div>
  1651.  
  1652.  
  1653.  
  1654. </div>
  1655.  
  1656. </body>
  1657.  
  1658. <!--only touch this part of the code if you've got popup links-->
  1659.  
  1660. <!----------------- BEGIN POPUPS ------------------------------->
  1661.  
  1662. <!--this is your askbox and submitbox popup -->
  1663. <div id="box1" class="popup_block">
  1664.  
  1665. <h1><h1 style="font-family: times; font-size: 20px; color:857b81;"> QUESTIONS && QUERIES</h1>
  1666. <p>{text:askbox text}</p>
  1667.  
  1668. <iframe frameborder="0" height="200" id="ask_form" scrolling="no" src="http://www.restoringpeace.tumblr.com/ask" width="100%"></iframe>
  1669.  
  1670. <p><p>
  1671.  
  1672.  
  1673. </div></div></div></div></div></div></div></div></div></div>
  1674.  
  1675. <!--this is your rules popup, but it can be used for anything else-->
  1676. <div id="box2" class="popup_block">
  1677.  
  1678. <h1><h1 style="font-family: times; font-size: 20px; color:857b81;">law && GUIDELINES</h1><!--you can change this title if you want-->
  1679.  
  1680. <p><center><img src="https://68.media.tumblr.com/24076b3e12f8ba3ebbec7c61792e1de8/tumblr_inline_oqgnaldo6q1um5094_500.png" /><img src="https://68.media.tumblr.com/3082bba136eb5b52613046542707c360/tumblr_inline_oqgnauMThf1um5094_500.png" /><img src="https://68.media.tumblr.com/15383d49eb940f7caf5f3daa9f81ba36/tumblr_inline_oqgnb4lge81um5094_500.png" /></center><p>Firstly, I am<b> NOT</b> affliated with Dragon Age series in <b>any</b> shape or form. &nbsp;Neither I nor the writing on this <i>independent</i> and<b> private </b>roleplay blog are in any way <b>connected</b> with the game. <b>LAVELLAN's</b> persona is heavily based upon the in game information, personal gameplay choices and voicelines as well as my own personal headvcanons, as well as other influences from fanart and other media. </p><p>This blog will frequently contain <b>MATURE THEMES</b>. &nbsp;I will do my best to tag any nsfw roleplays and triggers the best I can, but If you are unconformable with gore and the premises of the warfare/ fighting, this might not be the blog for you, and I’m terribly sorry for that !! &lt;3</p><h2> </p><h2>( &amp; INTERACTIONS )</h2><p>This is a <b>SELECTIVE RP BLOG,</b> which means that I will only interact with <i>MUTUALS</i>. This is normally because I like to keep my dash clean! It also means that starter calls, open starters and any kind of in character interaction is <b>MUTUAL ONLY</b> too ( unless mentioned otherwise). I may <b>not</b> always FOLLOW BACK but please do not take offence!! Most cases it's just because I don't see our characters working/interacting or maybe untagged content as I mentioned above I do like to keep a clean dash. However, <i>Don't be afraid</i> to send me a message if I haven't followed you back !! </p><p>I don't have<b> exclusives</b> ( even though I have favourites lbr ) mainly because &nbsp;I love interacting within this community :_:! It's also so <b>interesting</b> to see <i>different interpretations</i> of characters and events !!</p><h2>( &amp; THE GRAPHICS )</h2><p>All icon’s found on this blog were personally edited by<b> ME!</b> BUT NONE OF THE ART IS DRAWN BY ME! &nbsp;I would prefer If you would <b>NOT STEAL</b> them. If you’re looking to use my icons, all you really need to do is ask :)</p><p></p><h2>( &amp; SHIPPING/VERSES )</h2><p>this blog is <b><i>selective multiship.</i></b> Please do not try and FORCE ROMANTICISM upon me. I did not create this blog for shipping, rather development. I have <b>NO PROBLEMS</b> of Lavellan becoming involved with other characters, but I like to focus more on the <i>actual dynamic and chemistry</i> of the characters rather than anything else. &nbsp;That being said, I do love to explore all<b> differing types</b> of relationships from teammates to mortal enemies !! I also love pre-established relationships, so if you've any interesting ideas<b>, send me a message</b> and we can see if we can work something out!</p></p><p><h2>( &amp; NSFW )</h2></p><p>As mentioned before, <b>TRIGGERING CONTENT</b> will be <i>TAGGED ACCORDINGLY</i>. If you are triggered by anything on my blog, please don’t hesitate to tell me, or even unfollow me. Your wellbeing should come first.</p><p><h2>( &amp; BEHIND THE MUSE )</h2></p><p>I’m Anna and I’m 20, and cole is my demon baby. Feel free to message me or send me an ask about anything!</p>
  1681.  
  1682. </div></div></div></div></div></div></div></div></div></div>
  1683.  
  1684. <!--this is your about/muse popup, but it can be used for anything else-->
  1685. <div id="box3" class="popup_block">
  1686.  
  1687.  
  1688.  
  1689. <h1 style="font-family: times; font-size: 20px; color: 857b81;">DOSSIER &amp;&amp; BIOGRAPHY</h1>
  1690. <p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<img src="https://66.media.tumblr.com/04a611222c97100ce78f7e6131f3bde3/tumblr_inline_pjf6wk094k1ws7th7_500.gif" /></p><p><br><sub> &nbsp;&nbsp; &nbsp;</sub>❛ &nbsp; our &nbsp;𝐜𝐨𝐧𝐜𝐞𝐫𝐧&nbsp;&nbsp;<b>must &nbsp;</b>be &nbsp;the &nbsp;ORDER &nbsp;and &nbsp;safety of &nbsp;<i>this&nbsp;</i> world &nbsp;, &nbsp;<b>not &nbsp;</b>the &nbsp;NEXT &nbsp;. &nbsp;i’m <b>&nbsp;</b>&nbsp;𝐍𝐎𝐓&nbsp; <i>chosen</i> , &nbsp;i &nbsp;&nbsp;𝐇𝐀𝐕𝐄 &nbsp; chosen &nbsp;<b><i>!</i></b> &nbsp;and &nbsp;i &nbsp;will &nbsp;lead &nbsp;us &nbsp;to &nbsp;𝐯𝐢𝐜𝐭𝐨𝐫𝐲&nbsp;<i>! &nbsp;</i>⏤ &nbsp; &nbsp;❜ &nbsp;<sub>&nbsp;&nbsp;</sub>&nbsp;</p>
  1691. <p></p>
  1692. <p></p>
  1693. <hr />
  1694. <h2><big>( &amp; THE BASICS )</big></h2>
  1695. <ul>
  1696. <li><strong>FULL NAME:</strong>&nbsp;Atish'an&nbsp;Lavellan</li>
  1697. <li><strong>TITLE: </strong><em>THE INQUISITOR , HERALD OF ANDRASTE</em></li>
  1698. <li><strong>AGE:</strong> Twenty Eight &nbsp;( 19 eluviesta , 9:13 dragon )</li>
  1699. <li><strong>SPECIES: </strong>Dalish Elf</li>
  1700. <li><strong>COMBAT CLASS</strong>: MAGE - Necromancer.&nbsp;</li>
  1701. <li><strong>GENDER IDENTITY:</strong> Cisgender Female.</li>
  1702. <li><strong>SEXUAL ORIENTATION</strong><small><strong>:</strong> &nbsp;</small> Demisexual.</li>
  1703. </ul>
  1704. <h2><big>( &amp; APPEARANCE. )</big></h2>
  1705. <ul>
  1706. <li><strong>HEIGHT:</strong> 5&rsquo;8&rdquo;.</li>
  1707. <li><strong>BODY BUILD:</strong>&nbsp;buxom ; shapely with small definition.&nbsp;</li>
  1708. <li><strong>EYE COLOUR:</strong>&nbsp;light hazel with minimal &nbsp;tints of yellow.</li>
  1709. <li><strong>COMPLEXION</strong>: dewy and tanned, freckles notable across forehead and rosy cheeks&nbsp;</li>
  1710. <li><strong>HAIR COLOUR: </strong>deep brown &amp;&amp; tousled; reaching her lower back and often worn down.</li>
  1711. </ul>
  1712. <p><strong>NOTABLE PHYSICAL ATTRIBUTES :</strong></p>
  1713. <ul>
  1714. <li>(DEPENDANT ON VERSE) left arm missing just above the elbow, often hidden behind large, fur lined cloaks</li>
  1715. <li>(DEPENDANT ON VERSE) notable deep green Vallaslin dedicated to Falon'Din, covering the forehead and bridge of nose.&nbsp;</li>
  1716. </ul>
  1717. <h2><big>( &amp; PERSONALITY. )</big></h2>
  1718. <ul>
  1719. <li><strong>DISPOSITION</strong>: a child of passion and rage ; epitomny of the fire beneath fingers.&nbsp;</li>
  1720. <li><strong>MORAL ALIGNMENT:</strong>&nbsp;lawful neutral.</li>
  1721. <li><strong>PERSONALITY :&nbsp;</strong>Defender &nbsp;(ISFJ, -A/-T).</li>
  1722. <li><strong>TEMPERAMENT: &nbsp;</strong>Melancholic.</li>
  1723. <li><strong>ENNEAGRAM TYPE : &nbsp;</strong>the helper. &nbsp;</li>
  1724. </ul>
  1725. <h2><big>( &amp; BIOGRAPHY. )</big></h2>
  1726. <p>&nbsp;Atish'an was born to loving parents within the l<em>avellan Dalish</em> clan, which roamed the wilderness of the northern free marches. The name Atish'an was placed upon her, according to her father, because of the <strong>peaceful</strong> expression her mother held before Falon'Din lead her to rest. A brave and determined child ; she wanted nothing more than to be like her mother - AN ARCHER, with a featherlight touch and owllike vision. The corrosive flames that embedded beneath her fingertips, however, forced her into a new path ; the FIRST apprentice to keeper Deshanna - a cold, but influential power. &nbsp;</p>
  1727. <h2><big>( &amp; CHOICES. )</big></h2>
  1728. <blockquote>
  1729. <p><strong>I N Q U I S I T O R S &nbsp; P A T H :</strong>&nbsp;</p>
  1730. </blockquote>
  1731. <ul>
  1732. <li><strong>THE WRATH OF HEAVEN :</strong> chose the mountain path .</li>
  1733. <li><strong>IN HUSHED WHISPERS:</strong> mages offered equal alliance with the inquisition .&nbsp;</li>
  1734. <li><strong>IN YOUR HEART SHALL BURN :</strong> all haven residents rescued , confirms non belief and declares the inquisition for order.&nbsp;</li>
  1735. <li><strong>FATE OF CLAN LAVELLAN :&nbsp;</strong>destroyed , few scouts still searching for survivors.&nbsp;</li>
  1736. <li><strong>WICKED EYES AND WICKED HEARTS:</strong> briala, celene and Gaspard blackmailed into public truce.&nbsp;</li>
  1737. <li><strong>HERE LIES THE ABYSS :</strong> allows wardens to remain, rebuild and fight for the inquisition, warden stroud left behind in the fade.</li>
  1738. <li><strong>WHAT PRIDE HAD WROUGHT</strong>: completed elven rituals, allied with abelas and ancient elves. &nbsp;Drank from the well.&nbsp;</li>
  1739. <li><strong>THE FINAL PIECE</strong> : guardian of mythal tamed .</li>
  1740. <li><strong>&nbsp;DOOM UPON ALL THE WORLD :</strong> corypheus defeated &nbsp;&amp;&amp; leliana made divine victoria.&nbsp;</li>
  1741. <li><strong>TRESPASSER DLC</strong> : vows to redeem solas if possible . the inquisition is slowly moved to a PEACEKEEPING organisation.&nbsp;</li>
  1742. </ul>
  1743. <blockquote>
  1744. <p><strong>I N Q U I S I T I O N S &nbsp; &nbsp;R E A C H :&nbsp;</strong></p>
  1745. </blockquote>
  1746. <ul>
  1747. <li><strong>OVERALL</strong> : &nbsp;forces deployed regularly.&nbsp;</li>
  1748. <li><strong>CRESTWOOD</strong> : caer bronach captured , aids crestwood village by closing the rift across the lake.&nbsp;</li>
  1749. <li><strong>EMERALD GRAVES :</strong> refugees aided, Fairbanks identity revealed and aids the inquisition.&nbsp;</li>
  1750. <li><strong>EMPRISE DU LION :</strong> suledin Keep captured for the inquisition, townspeople rescued from quarry. Ishmael killed.&nbsp;</li>
  1751. <li><strong>EXALTED PLAINS :</strong> ramparts restored , high dalish favour with the clan.&nbsp;</li>
  1752. <li><strong>FALLOW MIRE:</strong> inquisition soldiers saved, avvar leader defeated. sky watcher recruited.&nbsp;</li>
  1753. <li><strong>FORBIDDEN OASIS :</strong> all tombs explored including inner sanctum&nbsp;</li>
  1754. <li><strong>HINTERLANDS:</strong> both apostate and templar encampments cleared, healer &amp;&amp; help from cultists send to &nbsp;secured crossroads to support. Master dennet recruited after watch towers built and wolves vanquished. Carta defeated.&nbsp;</li>
  1755. <li><strong>HISSING WASTES:</strong> tomb of Fairel explored, venatori presence dismissed.&nbsp;</li>
  1756. <li><strong>STORM COAST: &nbsp;</strong>bandit group dispelled. Bull&rsquo;s chargers told to retreat.&nbsp;</li>
  1757. <li><strong>WESTERN APPROACH</strong> : professor Frederic recruited, griffon keep captured.</li>
  1758. </ul>
  1759. <blockquote>
  1760. <p>&nbsp;<strong>J U D G E M E N T&nbsp;</strong></p>
  1761. </blockquote>
  1762. <ul>
  1763. <li><strong>GEREON ALEXIUS:</strong> forced to research magic arcana for the Inquisition</li>
  1764. <li><strong>GRAND DUCHESS FLORIANNE :</strong> common work with the common&nbsp;</li>
  1765. <li><strong>MAGISTER LIVIUS ERIMOND :</strong> execution</li>
  1766. <li><strong>SER RUTH :</strong> sent to be judged by the wardens.&nbsp;</li>
  1767. <li><strong>SAMSON :</strong> given to dagna for study</li>
  1768. <li><strong>MOVRAN THE UNDER :</strong> exiled to tevinter</li>
  1769. <li><strong>MAYOR GREGORY DEDRICK :</strong> exile</li>
  1770. <li><strong>CRASSIUS SERVIS:</strong> recruited as an Informant</li>
  1771. <li><strong>MISTRESS POULIN :</strong> ordered to rebuild the town&nbsp;</li>
  1772. </ul>
  1773. <blockquote>
  1774. <p><strong>&nbsp;C O M P A N I O N S&nbsp;</strong></p>
  1775. </blockquote>
  1776. <ul>
  1777. <li><strong>CASSANDRA PENTAGHAST:</strong> encouraged to rebuild the seekers, obtained book of secrets.&nbsp;</li>
  1778. <li><strong>VARRIC TETHRAS</strong>: red lyrium deposits destroyed, purseued lead on source of red lyrium</li>
  1779. <li><strong>VIVIENNE:</strong> given snowy wyvern heart</li>
  1780. <li><strong>THE IRON BULL:</strong> &nbsp;chargers retreated, made tal vashoth.&nbsp;</li>
  1781. <li><strong>SERA:</strong> killed hammond on her own</li>
  1782. <li><strong>DORIAN PAVUS:</strong> encouraged to reconcile with his father.&nbsp;</li>
  1783. <li><strong>SOLAS:</strong> friend released from bindings , mages not killed. &nbsp;&nbsp;</li>
  1784. <li><strong>BLACKWALL</strong> : released and &nbsp;pardoned&nbsp;</li>
  1785. <li><strong>COLE</strong>: made more human</li>
  1786. <li><strong>JOESPHINE:</strong> du paraquettes raised to minor lordship &nbsp;</li>
  1787. <li><strong>CULLEN</strong> : told &nbsp;not to use red lyrium</li>
  1788. <li><strong>LELIANNA:</strong> inspired , softened &amp;&amp; made divine.&nbsp;</li>
  1789. &nbsp;</ul>
  1790.  
  1791.  
  1792. </div></div></div></div></div></div></div></div></div></div>
  1793.  
  1794. <div id="box4" class="popup_block">
  1795. <div id="wrap">
  1796. <h1><h1 style="font-family: times; font-size: 20px; color:FFF;"> LINKS && NAVIGATION</h1>
  1797. <div id="infos">
  1798.  
  1799.  
  1800. <a href="https://restoringpeace.tumblr.com/tagged/─-━-│⌅-%C2%A0❝-ᵀʳᶦᵃⁿᵍˡᵉˢ-ᵃʳᵉ-ᵐʸ-ᶠᵃᵛᵒᵘʳᶦᵗᵉ-ˢʰᵃᵖᵉ-❞-%28-VISAGE.-%29">VISAGE</a>
  1801. <a href="https://restoringpeace.tumblr.com/tagged/─-━-│⌅-%C2%A0❝-ᵗʰʳᵉᵉ-ᵖᵒᶦⁿᵗˢ-ʷʰᵉʳᵉ-ᵗʷᵒ-ˡᶦⁿᵉˢ-ᵐᵉᵉᵗ-%C2%A0❞-%28-FACECLAIM.-%29">FACECLAIM</a>
  1802.  
  1803.  
  1804. </BR>
  1805.  
  1806. </div></div></div></div></div></div></div></div></div></div>
  1807.  
  1808. <div id="box5" class="popup_block">
  1809.  
  1810. <h1 style="background-color: transparent; font-family: times; font-size: 20px; line-height: 20px; letter-spacing: 2px; text-align: center; text-transform: uppercase; color: #857b81;">&amp;&amp; VERSES&nbsp;</h1>
  1811. <p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<img src="https://66.media.tumblr.com/787d9c97842a48c7d7c918f69b1dc25c/tumblr_inline_pjfjvwv5jX1ws7th7_500.gif" style="padding-left: 60px;" /></p>
  1812. <h2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MAIN VERSE</h2>
  1813. <p style="margin-top: 5px; margin-bottom: 5px;">&nbsp; ❛ &nbsp; &nbsp;whatever &nbsp;<em>you</em>&nbsp;&nbsp;are &nbsp;i&rsquo;m &nbsp;NOT&nbsp;&nbsp;𝐀𝐅𝐑𝐀𝐈𝐃&nbsp;&nbsp;!&nbsp;&nbsp;⏤ &nbsp; &nbsp;❜&nbsp;</p>
  1814. <blockquote>
  1815. <p style="margin-top: 5px; margin-bottom: 5px;">a&rsquo;tishan , now with the title of inquisitor and the weight of the whole of thedas thrust upon dainty shoulders ; declares the inquisition for order and promises to lead the masses to victory. the inquisition&rsquo;s forces spread across both orlais and ferelden , aiding those in need and closing rifts where possible. Intense struggles are hidden by false smiles and a positive fa&ccedil;ade . &nbsp;the voices of the well plague inner thoughts and unconsciously affect weighted choices (unbeknownst to the brunette) &nbsp;; as she plots to remove the unrelenting force of corypheus for good.&nbsp;</p>
  1816. </blockquote>
  1817. <hr />
  1818. <p style="margin-top: 5px; margin-bottom: 5px; caret-color: #8c8c8c; color: #8c8c8c; font-family: calibri; font-size: 10px; letter-spacing: 1px; text-align: justify;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<img src="https://66.media.tumblr.com/2961294c3bcfa18e054b27b1c8dffa0b/tumblr_inline_pjfjx0mVvK1ws7th7_500.gif" style="padding-left: 60px;" /></p>
  1819. <h2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;POST TRESPASSER VERSE</h2>
  1820. <p style="margin-top: 5px; margin-bottom: 5px; caret-color: #8c8c8c; color: #8c8c8c; font-family: calibri; font-size: 10px; letter-spacing: 1px; text-align: justify;">&nbsp; ❛ &nbsp;there&rsquo;s &nbsp;<em>worse</em> &nbsp;<strong>COMING</strong> &nbsp;than &nbsp;𝒂𝒏𝒚𝒕𝒉𝒊𝒏𝒈 &nbsp;you&rsquo;ve &nbsp;yet &nbsp;seen , &nbsp;so &nbsp;we&rsquo;ll &nbsp;play &nbsp;𝐍𝐈𝐂𝐄 . &nbsp; we&rsquo;ll &nbsp;𝐁𝐎𝐖 &nbsp;, &nbsp; but &nbsp; 𝒏 𝒐 𝒕 &nbsp; to &nbsp;𝐘 𝐎 𝐔 .&nbsp;&nbsp;&nbsp;❜&nbsp;</p>
  1821. <blockquote>
  1822. <p style="margin-top: 5px; margin-bottom: 5px; caret-color: #8c8c8c; color: #8c8c8c; font-family: calibri; font-size: 10px; letter-spacing: 1px; text-align: justify;">a&rsquo;tishan remains a public figurehead within the inquisitions slow and somewhat delayed configuration to a peacekeeping organization under divine justice Victoria . at the beginning of the complex change, she can often be seen close to the divine&rsquo;s side due the several but notably <em>failed</em> attempts upon her life , before slipping away to the regions around tevinter to focus on the upcoming threat of solas. Suspicion poisons a once jovial appearance; the brunette extremely wary of most unfamiliar faces, unfortunately even more so of her elvhen brethren, though the flurry of ancient voices often at hinting at those influenced &nbsp;by the dread wolf.&nbsp;</p>
  1823. </blockquote>
  1824. <hr />
  1825. <p style="margin-top: 5px; margin-bottom: 5px; caret-color: #8c8c8c; color: #8c8c8c; font-family: calibri; font-size: 10px; letter-spacing: 1px; text-align: justify;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<img src="https://66.media.tumblr.com/22d15f43f7120108eba8a2240dfb9a90/tumblr_inline_pjfjweDscR1ws7th7_500.gif" style="padding-left: 60px;" /></p>
  1826. <h2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;COMPANION VERSE</h2>
  1827. <blockquote>
  1828. <p style="margin-top: 5px; margin-bottom: 5px;"><strong>FULL TITLE:</strong> &nbsp;Mistress Atish'an Lavellan</p>
  1829. <p style="margin-top: 5px; margin-bottom: 5px;"><strong>MONIKERS:</strong> tish , boots ( by varric ; due to her constant lack of footwear )</p>
  1830. <p style="margin-top: 5px; margin-bottom: 5px;"><strong>SPECIES:</strong> Dalish Elf</p>
  1831. <p style="margin-top: 5px; margin-bottom: 5px;"><strong>COMBAT CLASS:</strong> MAGE - necromancer.</p>
  1832. <p style="margin-top: 5px; margin-bottom: 5px;"></p>
  1833. <p style="margin-top: 5px; margin-bottom: 5px;"><strong>R E C R U I T I O N &nbsp;:&nbsp;</strong></p>
  1834. <p style="margin-top: 5px; margin-bottom: 5px;"></p>
  1835. <p style="margin-top: 5px; margin-bottom: 5px;">atish'an can be found fighting several demons at val benahris in the exalted plains. the inquisitor has the option to intervene (it is likely the brunette will perish if not) and will gain dalish favour for both helping atish&rsquo;an and clearing the area as keeper hawen requested. &nbsp;the elf will express her gratitude for the much-needed help and will return to the dalish encampment. &nbsp;several strained conversations regarding the brunette&rsquo;s presence in the clan can be heard between the keeper and herself, judgment of her natural talent at necromancy, some whispers of her arrival likened to a curse ( &lsquo; what happened to your clan will only happen to ours! &rsquo; ) and the suspicion is only exemplified when the clan is notified of the death of valorin. When the inquisitor returns to the camp, they will quickly be involved in a heated argument between several of the clan members and atish&rsquo;an about her fate. The inquisitor can either deescalate the situation, encouraging the keeper to let the brunette stay, offer atish&rsquo;an a home with the inquisition in exchange for her services, or refuse to get involved (leaving atish&rsquo;an to end up roaming thedas alone).&nbsp;</p>
  1836. <br />
  1837. <p style="margin-top: 5px; margin-bottom: 5px;"></p>
  1838. <p style="margin-top: 5px; margin-bottom: 5px;"><strong>S K Y H O L D &nbsp;:</strong></p>
  1839. <p style="margin-top: 5px; margin-bottom: 5px;"></p>
  1840. <p style="margin-top: 5px; margin-bottom: 5px;">the brunette often moves around the fortress, but is most often found in the garden, occasionally tending to various, intricate plants or playing wicked grace with varric quite vocally, a scowl across a freckled visage.&nbsp;</p>
  1841. <p style="margin-top: 5px; margin-bottom: 5px;"></p>
  1842. <br />
  1843. <p style="margin-top: 5px; margin-bottom: 5px;"><strong>R E L A T I O N S H I P S &nbsp;:&nbsp;</strong></p>
  1844. <p style="margin-top: 5px; margin-bottom: 5px;"></p>
  1845. <strong>CASSANDRA :</strong> friends, mutual respect for each other due to their enjoyment of a particular set of smutty novels.<br /><strong>VARRIC :</strong> &nbsp;close friends, often heard bantering about nonsense, or varric teasing the elf about her continual losses at wicked grace.&nbsp;<br /><strong>VIVIENNE :</strong> &nbsp; civil acquaintances, often bickering regarding circles and treatment of mages, though atish&rsquo;an does thank the grand enchanter for her tips about improving combat. &nbsp;<br /><strong>THE IRON BULL :</strong> close acquaintances; if made tal vashoth become friends, though if remains with the qun at the sacrifice of the chargers, they remain civil, but atish&rsquo;an vocally disapproves.&nbsp;<br /><strong>SERA : &nbsp;</strong>on and off again friends, often disagreeing over the subject of elvhen culture and mages . often heard angrily speaking to sera about certain pranks.&nbsp;<br /><strong>DORIAN :</strong> &nbsp;friends, &nbsp;mutual appreciation of their similar specification and their differing uses of necromancy, though some bickering surrounding the disapproval of slavery.&nbsp;<br /><strong>SOLAS :</strong> &nbsp;in the beginning often heard aggressively bickering about the dalish , occasional curses in elvhen spat at each-other. though as time progresses, the pair often spotted friendly conversations, mostly in elvhen (much to sera&rsquo;s vocal dismay) becoming close friends.&nbsp;<br /><strong>BLACKWALL :</strong> friends &nbsp;, though after the reveal of his true identity it takes a lot of coaxing for the female to interact with the older individual as good natured as before.&nbsp;<br /><strong>COLE :</strong> friends , heavily encourages to explore his more human side. the brunette often angrily requests the younger individual to stop proclaiming her thoughts to the rest of the group, especially embarrassing ones</blockquote>
  1846. <hr />
  1847.  
  1848.  
  1849.  
  1850.  
  1851. </div>
  1852. </div>
  1853.  
  1854.  
  1855.  
  1856. <!--------------- END POPUPS -------------------->
  1857.  
  1858.  
  1859. <div id="bite">
  1860. <div id="thekey"></div>
  1861. <div class="death">
  1862. <div id="actualnews">
  1863. <center>
  1864.  
  1865. <div style="width:auto;height:120px;overflow:scroll;padding:5px;border: 1px dashed #7e7072;">
  1866.  
  1867. <h3>
  1868. Here comes the outsider
  1869. </h3>
  1870.  
  1871. <p>INDEPENDENT && SELECTIVE <br><big> inquisitor lavellan</big></b><br><br>MULTI-FANDOM,<br> PRIMARILY BASED ON HEADCANONS. <big><b><br></big> ART CREDIT <a href="https://www.deviantart.com/patrisska/art/Nisa-Tarot-Card-652321077">⌅</a></p></b>
  1872.  
  1873. <h3>
  1874. restoring peace with an army.
  1875. </h3>
  1876.  
  1877. <p><small><center> written by </small><big>ANNA</big></b><br><small>GMT TIMEZONE<br> established 12/11/2018<br><br>
  1878.  
  1879.  
  1880.  
  1881. tracking: <b><i>restoringpeace</i></b></big><br></b><small> please read all <i>guidelines</i> before interacting!<br>
  1882. </center>
  1883.  
  1884. <img src="https://static.tumblr.com/hjqurm6/mpkpi16ln/cute.png">
  1885.  
  1886.  
  1887.  
  1888.  
  1889.  
  1890.  
  1891. </div>
  1892. </div></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement