Advertisement
xmfc009

cat theme

Feb 9th, 2020
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 39.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head><title>{Title}</title>
  3. <link rel="shortcut icon" href="{Favicon}">
  4. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  5. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  6.  
  7. <!---- this is theme 56 by Hollywhood
  8. please don't remove the credit
  9. thank you
  10. --->
  11.  
  12. <meta name="color:Background" content="#ffffff"/>
  13. <meta name="color:Text" content="#9B9B9B"/>
  14. <meta name="color:Link" content="#b8b8b8"/>
  15. <meta name="color:Link Hover" content="#eeeeee"/>
  16.  
  17. <meta name="image:Background" content="/"/>
  18.  
  19. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  20. <script>
  21. $(document).ready(function() {
  22. //
  23. $('a.poplight[href^=#]').click(function() {
  24. var popID = $(this).attr('rel'); //Get Popup Name
  25. var popURL = $(this).attr('href'); //Get Popup href to define size
  26. var query= popURL.split('?');
  27. var dim= query[1].split('&');
  28. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  29. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  30. var popMargtop = ($('#' + popID).height() + 80) / 2;
  31. var popMargleft = ($('#' + popID).width() + 80) / 2;
  32. //Apply Margin to Popup
  33. $('#' + popID).css({
  34. 'margin-top' : -popMargtop,
  35. 'margin-left' : -popMargleft
  36. });
  37. $('body').append('<div id="fade"></div>');
  38. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  39. return false;
  40. });
  41. $('a.close, #fade').live('click', function() {
  42. $('#fade , .popup_block').fadeOut(function() {
  43. $('#fade, a.close').remove(); //fade them both out
  44. });
  45. return false;
  46. });
  47. });
  48. </script>
  49.  
  50.  
  51. <script>$(document).ready(function(){$('.ss').click(function(){
  52. $('.ss').toggleClass('checked');$('.ux').toggleClass('checked');
  53. $('.ut').toggleClass('checked');$('.ud').toggleClass('checked');
  54. });});</script>
  55.  
  56. <style>
  57. div#qTip {
  58. padding: 3px;
  59. display: none;
  60. text-align: center;
  61. position: absolute;
  62. font-size:7px;
  63. margin-left:10px;
  64. margin-top:-2px;
  65. line-height:9px;
  66. font-family:arial;
  67. z-index: 1000;
  68. border: 1px solid #cacaca;
  69. background-color:#fff;
  70. color: #9b9b9b;
  71. text-transform:uppercase;
  72. letter-spacing: 2px;
  73. }
  74. </style>
  75.  
  76. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  77.  
  78. <script src="https://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  79.  
  80. <script>
  81.  
  82. (function($){
  83.  
  84. $(document).ready(function(){
  85.  
  86. $("a[title]").style_my_tooltips({
  87.  
  88. tip_follows_cursor:true,
  89.  
  90. tip_delay_time:90,
  91.  
  92. tip_fade_speed:600,
  93.  
  94. attribute:"title"
  95.  
  96. });
  97.  
  98. });
  99.  
  100. })(jQuery);
  101.  
  102. </script>
  103. <!--basic tooltip from tutorial-baby! Enjoy-->
  104. <style>
  105. .tooltip{
  106. display: inline;
  107. position: relative;
  108. }
  109. #s-m-t-tooltip {width:80px;
  110. border-radius: 10px; /*change your border radius*/
  111. padding:10px; /*padding inside tooltip*/
  112. margin-left:-140px;
  113. box-shadow: 3px 3px 2px 0px rgba(0,0,0,0.2);
  114. margin-top:-10px;
  115. background-color:rgba(133,96,139,0.7); /*background color*/
  116. font-family:'Roboto Condensed', sans-serif; /*tooltip font*/
  117. text-align:center;
  118. font-size:11px; /*tooltip font size*/
  119. font-weight:normal;
  120. letter-spacing:1px;
  121. font-style:italic;
  122. text-transform:lowercase; /*makes the tooltip title uppercase*/
  123. color:#fff; /*tooltip font color*/
  124. text-shadow:1px 1px 0px rgba(0,0,0,0.5);
  125. z-index:9999;
  126. }
  127. </style>
  128.  
  129.  
  130. <!--FIREFLIES-->
  131.  
  132. <script type="text/javascript">
  133. // <![CDATA[
  134. var colour="rgba(176,150,167,0.2)"; // what colour are the blobs
  135. var speed=30; // speed of animation, lower is faster
  136. var blobs=15; // how many blobs are in the jar
  137. var charc=String.fromCharCode(9679); // a blob - can be changed to charc='hello' or charc='*' for a different effect
  138.  
  139. /***************************\
  140. * Blobs in a Jar Effect *
  141. *(c)2012-13 mf2fm web-design*
  142. * http://www.mf2fm.com/rv *
  143. * DON'T EDIT BELOW THIS BOX *
  144. \***************************/
  145.  
  146. var div;
  147. var xpos=new Array();
  148. var ypos=new Array();
  149. var zpos=new Array();
  150. var dx=new Array();
  151. var dy=new Array();
  152. var dz=new Array();
  153. var blob=new Array();
  154. var swide=800;
  155. var shigh=600;
  156. var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
  157.  
  158. function addLoadEvent(funky) {
  159. var oldonload=window.onload;
  160. if (typeof(oldonload)!='function') window.onload=funky;
  161. else window.onload=function() {
  162. if (oldonload) oldonload();
  163. funky();
  164. }
  165. }
  166.  
  167. addLoadEvent(fill_the_jar);
  168.  
  169. function fill_the_jar() {
  170. var i, dvs;
  171. div=document.createElement('div');
  172. dvs=div.style;
  173. dvs.position='fixed';
  174. dvs.left='0px';
  175. dvs.top='0px';
  176. dvs.width='1px';
  177. dvs.height='1px';
  178. document.body.appendChild(div);
  179. set_width();
  180. for (i=0; i<blobs; i++) {
  181. add_blob(i);
  182. jamjar(i);
  183. }
  184. }
  185.  
  186. function add_blob(ref) {
  187. var dv, sy;
  188. dv=document.createElement('div');
  189. sy=dv.style;
  190. sy.position='absolute';
  191. sy.textAlign='center';
  192. if (ie_version && ie_version<10) {
  193. sy.fontSize="10px";
  194. sy.width="100px";
  195. sy.height="100px";
  196. sy.paddingTop="40px";
  197. sy.color=colour;
  198. dv.appendChild(document.createTextNode(charc));
  199. }
  200. else if (ie_version) {
  201. sy.fontSize="1px";
  202. sy.width="0px";
  203. sy.height="0px";
  204. }
  205. else {
  206. dv.appendChild(document.createTextNode(charc));
  207. sy.color='rgba(0,0,0,0)';
  208. }
  209. ypos[ref]=Math.floor(shigh*Math.random());
  210. dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  211. xpos[ref]=Math.floor(swide*Math.random());
  212. dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  213. zpos[ref]=Math.random()*20;
  214. dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
  215. blob[ref]=dv;
  216. div.appendChild(blob[ref]);
  217. set_blob(ref);
  218. }
  219.  
  220. function rejig(ref, xy) {
  221. if (xy=='y') {
  222. dx[ref]=(0.5+Math.random())*sign(dx[ref]);
  223. dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
  224. }
  225. else {
  226. dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
  227. dy[ref]=(0.5+Math.random())*sign(dy[ref]);
  228. }
  229. }
  230.  
  231. function sign(a) {
  232. if (a<0) return (-2);
  233. else if (a>0) return (2);
  234. else return (0);
  235. }
  236.  
  237. function set_blob(ref) {
  238. var sy;
  239. sy=blob[ref].style;
  240. sy.top=ypos[ref]+'px';
  241. sy.left=xpos[ref]+'px';
  242. if (ie_version && ie_version<10) {
  243. sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
  244. sy.fontSize=30-zpos[ref]+"px";
  245. }
  246. else if (ie_version) {
  247. sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
  248. }
  249. else {
  250. sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
  251. sy.fontSize=40+zpos[ref]+'px';
  252. }
  253. }
  254.  
  255. function jamjar(ref) {
  256. if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
  257. ypos[ref]+=dy[ref];
  258. if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
  259. xpos[ref]+=dx[ref];
  260. if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
  261. zpos[ref]+=dz[ref];
  262. set_blob(ref);
  263. setTimeout("jamjar("+ref+")", speed);
  264. }
  265.  
  266. window.onresize=set_width;
  267. function set_width() {
  268. var sw_min=999999;
  269. var sh_min=999999;
  270. if (document.documentElement && document.documentElement.clientWidth) {
  271. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  272. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  273. }
  274. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  275. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  276. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  277. }
  278. if (document.body.clientWidth) {
  279. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  280. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  281. }
  282. if (sw_min==999999 || sh_min==999999) {
  283. sw_min=800;
  284. sh_min=600;
  285. }
  286. swide=sw_min;
  287. shigh=sh_min;
  288. }
  289. // ]]>
  290. </script>
  291.  
  292.  
  293. <style type="text/css">
  294.  
  295. @import url('https://fonts.googleapis.com/css?family=Bebas+Neue|Roboto+Condensed&display=swap');
  296.  
  297. html, body {cursor:url('https://78.media.tumblr.com/51aa4b0cb73356472f4336df13b2fc6b/tumblr_inline_p7nrx1388N1r1shc4_1280.png'), auto;}
  298.  
  299. a {cursor:url('https://78.media.tumblr.com/6fb38fc5e97353c67e3fc3a2e2b29bf9/tumblr_inline_p7nrx1hoRW1r1shc4_75sq.png'), auto;}
  300.  
  301. #bubble-music {
  302. position:fixed;
  303. left:20px;
  304. top:20px;
  305. width:30px;
  306. height:30px;
  307. background-color:#8f958f;
  308. border-radius:100%;
  309. -moz-border-radius:100%;
  310. overflow:hidden;
  311. -webkit-transition: all 0.5s ease-out;
  312. -moz-transition: all 0.5s ease-out;
  313. transition: all 0.5s ease-out
  314.  
  315. }
  316.  
  317. #bubble-music:hover {
  318. border-radius:9px;
  319. -moz-border-radius:9px;
  320. width:140px;
  321. height:30px;
  322. }
  323.  
  324. .music_embed {
  325. margin:-23px 0 0 70px;
  326. z-index:1;
  327. font-family:consolas;
  328. font-size:8px;
  329. -webkit-transition: all 0.5s ease-out;
  330. -moz-transition: all 0.5s ease-out;
  331. transition: all 0.5s ease-out
  332. }
  333.  
  334. #bubble-music:hover .music_embed {
  335. margin:-23px 0 0 34px;
  336. opacity:1;
  337. }
  338.  
  339.  
  340.  
  341. ::-webkit-scrollbar-thumb{
  342. background-color: transparent;
  343. height:auto;
  344. }
  345.  
  346. ::-webkit-scrollbar {
  347. height:auto;
  348. width:3px;
  349. background-color: transparent;
  350. }
  351.  
  352.  
  353. h1 {
  354. font-family:'Bebas Neue', cursive;
  355. font-size:16pt;
  356. text-transform:uppercase;
  357. letter-spacing:2px;
  358. text-align:center;
  359. line-height:100%;
  360. text-transform:normal;
  361. color:#cc474e;
  362. text-shadow:1px 1px 0px rgba(0,0,0,0.5);
  363. background-color:rgba(0,0,0,0.3);
  364. padding:5px;
  365. border-radius:20px;
  366. margin:10px 20px 10px 20px;
  367. }
  368.  
  369. h2 {
  370. font-size:14pt;
  371. letter-spacing:1px;
  372. margin:20px 0px 5px 0px;
  373. line-height:100%;
  374. color:{color:text};
  375. font-weight:normal;
  376. font-family:'bebas neue', cursive;
  377. text-transform:uppercase;
  378. text-shadow:0px 0px 6px #555;
  379. }
  380.  
  381.  
  382. blockquote {
  383. padding-left:10px;
  384. margin-left:10px;
  385. padding-top:1px;
  386. padding-bottom:1px;
  387. border-left:2px solid #534A4F;
  388. -moz-border-radius:10px;
  389. -webkit-border-radius:10px;
  390. }
  391.  
  392. blockquote blockquote {text-align:justify; margin-right:5px;}
  393.  
  394.  
  395. body {
  396. background:{color:background};
  397. margin:0px;
  398. color:{color:text};
  399. font-family:arial;
  400. font-size:11px;
  401. line-height:100%;
  402. background-attachment:fixed;
  403. background-image: url('{image:Background}');
  404. background-repeat:no-repeat;
  405. }
  406.  
  407. small, sub, sup {font-size:11px;}
  408.  
  409. a {
  410. text-decoration:none;
  411. outline:none;
  412. -moz-outline-style:none;
  413. color:{color:link};
  414. -moz-transition-duration:0.5s;
  415. -webkit-transition-duration:0.5s;
  416. -o-transition-duration:0.5s;
  417. }
  418.  
  419. a:hover {
  420. text-decoration:none;
  421. outline:none;
  422. -moz-outline-style:none;
  423. color:{color:link hover};
  424. }
  425.  
  426. img {
  427. border:none;
  428. }
  429.  
  430. #theme {
  431. width:400px;
  432. margin:0 auto -12px auto;
  433. }
  434.  
  435. #post {
  436. width:400px;
  437. padding-top:5px;
  438. padding-left:5px;
  439. padding-right:5px;
  440. padding-bottom:5px;
  441. margin-bottom:20px;
  442. background:rgba(255,255,255,0.15);
  443. font-size:12px;
  444. line-height:110%;
  445. border-radius:5px;
  446. }
  447.  
  448. #post b {color:#C0B5B5; text-shadow:1px 1px 0px rgba(0,0,0,0.2);
  449. font-family:'roboto condensed', sans-serif;
  450. }
  451.  
  452. #entries {
  453. width:421px;
  454. height:484px;
  455. left:326px;
  456. top:243px;
  457. margin-bottom:30px;
  458. position:fixed;
  459. overflow:scroll;
  460. overflow-x:hidden;
  461. background-color:transparent;
  462. }
  463.  
  464. #post img {max-width:100%;
  465. -webkit-filter:grayscale(50%);
  466. opacity:0.5;
  467. filter:alpha(opacity=50);
  468. -webkit-transition-duration:.7s;
  469. -moz-transition-duration:.7s;
  470. -o-transition-duration:.7s;
  471. -ms-transition-duration:.7s;}
  472. #post img:hover {opacity:1;
  473. filter:alpha(opacity=100);
  474. -webkit-filter:none;}
  475.  
  476. .html_photoset {opacity:0.5;
  477. filter:alpha(opacity=50);
  478. -webkit-filter: grayscale(50%);
  479. -webkit-transition: all .25s;}
  480.  
  481. .html_photoset:hover {opacity:1;
  482. filter:alpha(opacity=100);
  483. -webkit-filter: none;}
  484.  
  485. pre {background-color:rgba(0,0,0,0.2); margin:5px; padding:10px;
  486. font-family:'Roboto Condensed', sans-serif;
  487. border-radius:5px;
  488. white-space: pre-wrap;
  489. white-space: -moz-pre-wrap;
  490. white-space: -pre-wrap;
  491. white-space: -o-pre-wrap;
  492. word-wrap: break-word;
  493. }
  494.  
  495. /* ----- do not use ------- */
  496.  
  497.  
  498.  
  499. #link1 {position:fixed;
  500. top:90px; transform:rotate(-30deg);
  501. left:800px;
  502. font-family:'Roboto Condensed', sans-serif;
  503. text-shadow:2px 2px 5px #000;
  504. }
  505.  
  506. #link1 a {color:#E9D8D9; font-size:48px;
  507. -webkit-filter:blur(1px);
  508. -moz-transition-duration:.3s;
  509. -webkit-transition-duration:.3s;
  510. -o-transition-duration:.3s;}
  511.  
  512. #link2 {position:fixed;
  513. top:180px; transform:rotate(30deg);
  514. left:860px;
  515. font-family:'Roboto Condensed', sans-serif;
  516. text-shadow:2px 2px 5px #000;
  517. }
  518.  
  519. #link2 a {color:#E9D8D9; font-size:30px;
  520. -webkit-filter:blur(0.8px);
  521. -moz-transition-duration:.3s;
  522. -webkit-transition-duration:.3s;
  523. -o-transition-duration:.3s;}
  524.  
  525. #link3 {position:fixed;
  526. top:100px; transform:rotate(20deg);
  527. left:650px;
  528. font-family:'Roboto Condensed', sans-serif;
  529. text-shadow:2px 2px 5px #000;
  530. }
  531.  
  532. #link3 a {color:#DCCBCC; font-size:14px;
  533. -webkit-filter:blur(1px);
  534. -moz-transition-duration:.3s;
  535. -webkit-transition-duration:.3s;
  536. -o-transition-duration:.3s;}
  537.  
  538. #link4 {position:fixed;
  539. top:250px; transform:rotate(-20deg);
  540. left:820px;
  541. font-family:'Roboto Condensed', sans-serif;
  542. text-shadow:2px 2px 5px #000;
  543. }
  544.  
  545. #link4 a {color:#DCCBCC; font-size:16px;
  546. -webkit-filter:blur(0.6px);
  547. -moz-transition-duration:.3s;
  548. -webkit-transition-duration:.3s;
  549. -o-transition-duration:.3s;}
  550.  
  551. #link1 a:hover, #link2 a:hover, #link3 a:hover, #link4 a:hover {-webkit-filter:blur(0px);
  552. -moz-transition-duration:1s;
  553. -webkit-transition-duration:1s;
  554. -o-transition-duration:1s; }
  555.  
  556. .link1ani {-webkit-animation-name: scalex1;
  557. -webkit-animation-duration:7s;
  558. -webkit-animation-iteration-count:infinite;
  559. -webkit-animation-timing-function:ease-in-out;
  560. -moz-animation-name: scale;
  561. -moz-animation-duration:7s;
  562. -moz-animation-iteration-count:infinite;
  563. -moz-animation-timing-function:ease-in-out;
  564. }
  565.  
  566. @-webkit-keyframes scalex1{
  567. from {-webkit-transform: scale(2);}
  568. 45% {-webkit-transform: scale(1.5);}
  569. to {-webkit-transform: scale(2);}
  570. }
  571.  
  572. @-moz-keyframes scale1{
  573. from {-webkit-transform: scale(0);}
  574. 45% {-webkit-transform: scale(0);}
  575. to {-webkit-transform: scale(0);}
  576. }
  577.  
  578. .link2ani{
  579. -webkit-animation-name:scalex2;
  580. -webkit-animation-duration:3s;
  581. -webkit-animation-iteration-count:infinite;
  582. -webkit-animation-timing-function:ease-in-out;
  583. -moz-animation-name: scale;
  584. -moz-animation-duration:3s;
  585. -moz-animation-iteration-count:infinite;
  586. -moz-animation-timing-function:ease-in-out;
  587. }
  588.  
  589. @-webkit-keyframes scalex2{
  590. from {-webkit-transform: scale(2);}
  591. 45% {-webkit-transform: scale(1.6);}
  592. to {-webkit-transform: scale(2);}
  593. }
  594.  
  595. @-moz-keyframes scale2{
  596. from {-webkit-transform: scale(0);}
  597. 45% {-webkit-transform: scale(0);}
  598. to {-webkit-transform: scale(0);}
  599. }
  600.  
  601. .link3ani{
  602. -webkit-animation-name: scalex4;
  603. -webkit-animation-duration:4s;
  604. -webkit-animation-iteration-count:infinite;
  605. -webkit-animation-timing-function:ease-in-out;
  606. -moz-animation-name: scale;
  607. -moz-animation-duration:4s;
  608. -moz-animation-iteration-count:infinite;
  609. -moz-animation-timing-function:ease-in-out;
  610. }
  611.  
  612. @-webkit-keyframes scalex4{
  613. from {-webkit-transform: scale(2.2);}
  614. 45% {-webkit-transform: scale(1.5);}
  615. to {-webkit-transform: scale(2.2);}
  616. }
  617.  
  618. @-moz-keyframes scale4{
  619. from {-webkit-transform: scale(0);}
  620. 45% {-webkit-transform: scale(0);}
  621. to {-webkit-transform: scale(0);}
  622. }
  623.  
  624. .link4ani{
  625. -webkit-animation-name: scalex5;
  626. -webkit-animation-duration:5s;
  627. -webkit-animation-iteration-count:infinite;
  628. -webkit-animation-timing-function:ease-in-out;
  629. -moz-animation-name: scale;
  630. -moz-animation-duration:5s;
  631. -moz-animation-iteration-count:infinite;
  632. -moz-animation-timing-function:ease-in-out;
  633. }
  634.  
  635. @-webkit-keyframes scalex5{
  636. from {-webkit-transform: scale(1);}
  637. 45% {-webkit-transform: scale(.75);}
  638. to {-webkit-transform: scale(1);}
  639. }
  640.  
  641. @-moz-keyframes scale5{
  642. from {-webkit-transform: scale(0);}
  643. 45% {-webkit-transform: scale(0);}
  644. to {-webkit-transform: scale(0);}
  645. }
  646.  
  647. #pagination {position:fixed;
  648. background-color:rgba(0,0,0,0.2);
  649. width:auto;
  650. color:{color:text};
  651. font-family:'Roboto Condensed', sans-serif;
  652. font-weight:bold;
  653. font-size:9pt;
  654. top:120px;
  655. left:148px;
  656. padding:5px 10px 5px 10px;
  657. border-radius:10px;
  658. letter-spacing:1px;
  659. text-align:left;
  660. text-transform:uppercase;
  661. }
  662.  
  663. #pagination a {
  664. color:{color:link};
  665. font-weight:bold;
  666. text-shadow:1px 1px 1px rgba(0,0,0,0.4);
  667. -moz-transition-duration:.5s;
  668. -webkit-transition-duration:.5s;
  669. -o-transition-duration:.5s;
  670. }
  671. #pagination a:hover {color:#fff;
  672. -moz-transition-duration:.5s;
  673. -webkit-transition-duration:.5s;
  674. -o-transition-duration:.5s;
  675. }
  676.  
  677. #info {
  678. font-family:arial;
  679. width:400px;
  680. margin-top:5px;
  681. padding-top:7px;
  682. font-size:8px;
  683. color:{color:text};
  684. text-transform:uppercase;
  685. letter-spacing:1px;
  686. font-style:normal;
  687. text-align:center;
  688. -webkit-transition: all .7s linear;
  689. }
  690.  
  691. #info a {
  692. color:{color:link};
  693. background:{color:background};
  694. padding:4px;
  695. font-style:normal;
  696. }
  697.  
  698. #info a:hover {
  699. color:#fff;
  700. -webkit-transition: all .4s linear;
  701. }
  702.  
  703. .tags {
  704. font-family:arial;
  705. width:390px; padding:5px;
  706. font-style:normal;
  707. line-height:120%;
  708. margin-top:10px;
  709. font-size:9px;
  710. text-align:center;
  711. }
  712. .tags a{
  713. color:#393236;
  714. -webkit-transition: all .7s linear;
  715. }
  716. .tags a:hover{
  717. color:{color:link hover};
  718. -webkit-transition: all .7s linear;
  719. }
  720.  
  721. #line {
  722. width:400px;
  723. height:1px;
  724. margin-top:-6px;
  725. background-color:{color:Background};
  726. }
  727.  
  728. .musicplayer{
  729. background-color:#222;
  730. margin:45px 0px 0px 35px;
  731. position:absolute;
  732. opacity:0.3;
  733. filter:alpha(opacity=30);
  734. border-radius:20px;
  735. padding-right:5px;
  736. width:27px;
  737. height:27px;
  738. overflow:hidden;
  739. z-index:2;
  740. -webkit-transition: all 0.7s ease-in-out;
  741. -moz-transition: all 0.7s ease-in-out;
  742. -o-transition: all 0.7s ease-in-out;
  743. }
  744.  
  745. .audio{
  746. width:400px;
  747. padding-bottom:10px;
  748. }
  749.  
  750. .audioimg{
  751. float:left;
  752. padding:10px 0px 0px 0px;
  753. }
  754.  
  755. .audioimg img{
  756. float:left;
  757. width:100px;
  758. -moz-border-radius:10px 0px 0px 10px;
  759. -webkit-border-radius:10px 0px 0px 10px;
  760. }
  761.  
  762.  
  763. .audioinfo{
  764. max-width:400px;
  765. font-size:12pt;
  766. font-style:italic;
  767. text-transform:uppercase;
  768. font-family:'Roboto Condensed', sans-serif;
  769. color:{color:text};
  770. margin-left:51px;
  771. height:65px;
  772. display:block;
  773. text-align:center;
  774. background-color:rgba(0,0,0,0.2);
  775. padding-top:35px;
  776. -moz-border-radius:0px 10px 10px 0px;
  777. -webkit-border-radius:0px 10px 10px 0px;
  778. }
  779.  
  780. .chat {font-size:14px; letter-spacing:1px; font-weight:normal;
  781. line-height:150%;list-style:none; font-family:'Bebas Neue', cursive;}
  782.  
  783. .chat ul {
  784. list-style: none;
  785. margin:5px;
  786. padding: 0;
  787. text-shadow:2px 2px 2px rgba(0,0,0,0.2);
  788. }
  789.  
  790. .chat .odd {color:#C0B5B5;
  791. }
  792. .chat .even {color:#A69B9B;
  793. }
  794.  
  795. .label {
  796. padding-right:1px;
  797. text-transform:normal;
  798. font-weight:bold;
  799. color:{color:link};
  800. }
  801.  
  802. .question {
  803. padding:9px;
  804. text-align:left;
  805. text-transform:italic;
  806. color:#848781;
  807. font-size:10px;
  808. background-color:rgba(255,255,255,0.2);
  809. border-left:3px solid #838a85;
  810. line-height:120%;
  811. }
  812.  
  813. .answer {
  814. text-align:left;
  815. padding-top:5px;
  816. color:{color:text};
  817. font-size:12px;
  818. }
  819. .answer pre {font-size:10px;}
  820.  
  821. .popup_block{
  822. display:none;
  823. overflow:scroll;
  824. overflow-x:hidden;
  825. text-align:justify;
  826. font-size:11px;
  827. line-height:110%;
  828. width:425px;
  829. height:500px;
  830. background:#52484e;
  831. margin:0px; padding:0px;
  832. position:fixed;
  833. top:525px;left:571px;
  834. z-index: 99999;
  835. }
  836.  
  837. *html #fade {position: absolute;}
  838. *html .popup_block {position: absolute;}
  839. #fade {display:none;
  840. position: fixed; left: 0; top: 0;
  841. width: 100%; height: 100%;
  842. z-index:9999;
  843. }
  844.  
  845.  
  846. #updates{color:#DCCBCC;
  847. position:fixed;
  848. width:144px;
  849. height:593px;
  850. top:168px;
  851. left:163px;
  852. overflow-y:hidden;
  853. text-align:justify;
  854. font-family:trajan pro 3; text-shadow:1px 1px 0px rgba(0,0,0,0.1);
  855. font-size:11px;
  856. padding-right:2px;
  857. line-height:124%;
  858. }
  859.  
  860. #updates b {font-size:9pt;
  861. font-family:'Roboto Condensed', sans-serif;
  862. text-transform:uppercase;
  863. line-height:130%;
  864. font-weight:bold;
  865. }
  866.  
  867. .updtxt {margin-left:5px; margin-right:5px; word-spacing:4px; padding-left:4px; padding-right:5px;}
  868. .updtxt i {color:#DCCBCC;}
  869. .updtxt b {color:#E9D8D9; text-shadow:2px 2px 1px rgba(0,0,0,0.3);}
  870.  
  871. .heading{font-family:'bebas neue', cursive;
  872. font-size:18px;
  873. color:#cc484e;
  874. margin-bottom:3px;
  875. font-weight:normal;
  876. text-transform:uppercase;
  877. line-height:110%;
  878. letter-spacing:2px;
  879. text-shadow:1px 1px 1px rgba(0,0,0,0.5);
  880. }
  881.  
  882. .subheading{font-family:'Roboto Condensed', sans-serif;
  883. margin-top:5px; margin-right:3px; margin-left:3px;
  884. font-size:10px;
  885. letter-spacing:2px;
  886. text-transform:uppercase;
  887. line-height:120%;}
  888.  
  889. .brk {font-family:trajan pro 3;
  890. font-size:9px;
  891. padding:4px 5px 3px 4px;
  892. letter-spacing:2px;
  893. color:#bba0a1;
  894. text-transform:uppercase;
  895. text-align:center;
  896. font-weight:bold;
  897. background:rgba(0,0,0,0.3);
  898. line-height:120%;}
  899.  
  900.  
  901.  
  902. .king1 {font-family:'bebas neue', cursive; letter-spacing:2px;
  903. font-size:24pt; text-transform:uppercase;
  904. text-shadow:1px 1px 1px rgba(0,0,0,0.5);
  905. text-align:center;
  906. }
  907.  
  908. .king1 a {color:#cc484e; text-decoration:underline;}
  909.  
  910. .king2 {margin-left:20px; margin-right:20px; padding:5px; margin-top:5px;
  911. box-shadow: 0px 0px 10px 5px #6C6268;
  912. text-align:justify;
  913. background:#6C6268;
  914. border-radius:10px;
  915. height:250px; font-size:11px;
  916. overflow:scroll; overflow-x:hidden;
  917. }
  918. .king2 span {text-transform:uppercase;
  919. font-weight:bold; font-family:'Roboto Condensed', sans-serif;
  920. font-size:11px;
  921. }
  922. .king3 {margin-left:20px; margin-right:20px; padding:5px;
  923. line-height:120%;
  924. box-shadow: 0px 0px 10px 5px #6C6268;
  925. background:#6C6268;
  926. text-align:justify;
  927. border-radius:10px;
  928. font-size:11px;
  929. }
  930.  
  931. .king3 b {font-family:'Roboto Condensed', sans-serif;
  932. color:#fff; text-transform:lowercase; letter-spacing:0.5px;
  933. }
  934. .king3 span {text-transform:uppercase;
  935. font-weight:bold; font-family:'Roboto Condensed', sans-serif;
  936. font-size:11px;
  937. }
  938.  
  939. .verseleft {float:left; margin-right:3px;}
  940. .verseright {float:right; margin-left:3px;}
  941. .versetitle1 {text-transform:uppercase;
  942. letter-spacing:1px; padding-bottom:5px;
  943. font-weight:bold; font-family:talldark;
  944. font-size:13pt;}
  945. .versecontent1 {margin-right:10px; font-size:11px;}
  946. .versecontent1 span {text-transform:uppercase;
  947. font-weight:bold; font-family:'Roboto Condensed', sans-serif;
  948. font-size:10px;}
  949. .versetitle2 {text-transform:uppercase;
  950. letter-spacing:1px; margin-bottom:5px;
  951. font-weight:bold; font-family:talldark; text-align:right;
  952. font-size:13pt;}
  953. .versecontent2 {margin-left:10px; text-align:right;font-size:11px;}
  954. .versecontent2 span {text-transform:uppercase;
  955. font-weight:bold; font-family:'Roboto Condensed', sans-serif;
  956. font-size:10px;}
  957.  
  958.  
  959. {CustomCSS}</style></head><body>
  960.  
  961. <!-- SCM Music Player http://scmplayer.co -->
  962. <script type="text/javascript" src="https://scmplayer.co/script.js"
  963. data-config="{'skin':'https://static.tumblr.com/wx6pget/hAinc7m11/.css','volume':50,'autoplay':true,'shuffle':true,'repeat':1,'placement':'bottom','showplaylist':false,'playlist':[{'title':'KING.','url':'https://dl.dropbox.com/s/jv7r632a4424dnu/king.mp3'},{'title':'OF IRON AND GOLD.','url':'https://dl.dropbox.com/s/emh1c0vfj62voud/Of%20Iron%20and%20Gold.mp3'},{'title':'WINTERSAGA.','url':'https://dl.dropbox.com/s/hgrs3riqk9ccyp6/wintersaga.mp3'},{'title':'LOVE ALWAYS WAITS.','url':'https://dl.dropbox.com/s/dl58k50j33e5z9b/love%20always%20waits.mp3'},{'title':'TO CAMELOT.','url':'https://dl.dropbox.com/s/yccbsubn0d7046d/To%20Camelot.mp3'}]}" ></script>
  964. <!-- SCM Music Player script end -->
  965.  
  966.  
  967.  
  968.  
  969. <div id="theme">
  970.  
  971. <div id="link1"><div class="link1ani"><a href="#?w=425" rel="box1" class="poplight" title="โ€”the future king.">โœถ</a></div></div>
  972. <div id="link2"><div class="link2ani"><a href="#?w=425" rel="box3" class="poplight" title="โ€”contract.">๐ŸŸ„</a></div></div>
  973. <div id="link3"><div class="link3ani"><a href="#?w=425" rel="box4" class="poplight" title="โ€”speak.">โœฆ</a></div></div>
  974. <div id="link4"><div class="link3ani"><a href="#?w=425" rel="box5" class="poplight" title="โ€”travel.">โœฆ</a></div></div>
  975.  
  976.  
  977.  
  978.  
  979. <div id="entries">{block:Posts}<div id="post">
  980.  
  981. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1><div style="text-align:justify; margin:10px;">{Body}</div> {/block:Text}
  982.  
  983. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}" width="400">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  984.  
  985. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  986.  
  987. {block:Quote} <div style="text-align:justify; font-size:16pt;text-transform:lowercase; padding:5px; font-family:'Bebas Neue', cursive; letter-spacing:1px; word-spacing:1px; font-weight:normal; line-height:110%; padding-top:5px; text-shadow:2px 2px 2px rgba(0,0,0,0.2);">{Quote}</div>{block:Source} <div style="text-align:right; font-size:11px; font-style:italic; padding-right:10px; padding-top:5px; padding-bottom:5px;">โ€” {Source}</div>{/block:Source}{/block:Quote}
  988.  
  989. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  990.  
  991. {block:Chat}
  992. <div class="chat">
  993. <ul>
  994. {block:Lines}<li class="{Alt}">{block:Label} {Label} {/block:Label}{Line}</li>{/block:Lines}
  995. </ul>
  996. </div>
  997. {/block:Chat}{hw}
  998.  
  999. {block:Audio}
  1000. <div class="audio"><div class="musicplayer">{AudioPlayer}</div>
  1001. <div class="audioimg"></div>{block:AlbumArt}<div class="audioimg"><img src="{AlbumArtURL}"></div>{/block:AlbumArt}</div>
  1002. <div class="audioinfo">{block:TrackName}{TrackName}{/block:TrackName}<br>
  1003. <div style="font-size:9px;font-family:'roboto condensed', sans-serif;letter-spacing:1px;margin-top:5px;text-transform:uppercase;font-style:normal;">{block:Artist}{Artist}{/block:Artist}{block:Album} - {Album}{/block:Album}</div></div>{/block:Audio}
  1004.  
  1005. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1006.  
  1007. {block:Answer}<div class="question"><img src="{AskerPortraitURL-24}" style="float:left;">&nbsp;&nbsp; {ASKER}:<br><i>&nbsp;&nbsp; {Question}</i></div><div class="answer">{Answer}</div>{/block:answer}
  1008.  
  1009. {block:Date}<div id="info"> <a title="{TimeAgo}" href="{Permalink}">{Month} &nbsp;{DayOfMonth}</a>
  1010. {/block:Date} {block:NoteCount}&nbsp; <a href="{Permalink}">( {NoteCount} )</a> {/block:NoteCount}
  1011.  
  1012. &nbsp;{block:RebloggedFrom} <a title="{ReblogParentName}" href="{ReblogParentURL}">via</a> {/block:RebloggedFrom}{block:ContentSource} &nbsp; <a title="{SourceTitle}" href="{SourceURL}">source</a>{/block:ContentSource} {/block:RebloggedFrom} </br>
  1013. </div>
  1014.  
  1015. <div id="line"></div>
  1016.  
  1017. {block:HasTags}
  1018. <div class="tags">
  1019. {block:Tags} <a href="{TagURL}"> <big>&bull;</big> {Tag} &nbsp; </a> {/block:Tags}</div>
  1020. {/block:HasTags}
  1021. <div class="postnote">
  1022. {block:PostNotes}{PostNotes}{/block:PostNotes}
  1023. </div>
  1024.  
  1025. </div>
  1026.  
  1027. {/block:Posts}
  1028. </div></div>
  1029.  
  1030. <div id="pagination">
  1031. {block:Pagination}
  1032. {block:NextPage}
  1033. <a href="{NextPage}">FALL</a>
  1034. {/block:NextPage}
  1035. &nbsp; &mdash; &nbsp;
  1036. {block:PreviousPage}
  1037. <a href="{PreviousPage}">RISE</a>
  1038. {/block:PreviousPage}
  1039. {/block:Pagination}
  1040. </div>
  1041. </div>
  1042.  
  1043.  
  1044. <div id="updates">
  1045. <!-------------------------INSERT UPDATES HERE----------------------->
  1046.  
  1047. <div class="brk">subtitle.</div>
  1048. <div class="updtxt"><p><b>โ› &nbsp;</b><i><strike>&nbsp; &nbsp; &nbsp;</strike>this is some lame ass text for your sidebar. &nbsp; make sure to keep the breaks in between the sentences if you're an aesthetic bitch like me. &nbsp; <b>this are bold. &nbsp; it will always be in caps.</b> &nbsp; <u>underline works as well.</u> &nbsp;</i><b>โœ</b></div>
  1049.  
  1050. <p><div class="brk"></div>
  1051. <center><p><div class="heading">muse name i guess.</div><div class="subheading">whatever subtitle u want.
  1052. <br><div style="color:#bba0a1; font-style:italic; margin-top:5px;">another subtitle.</div>
  1053. </div>
  1054. <p><div class="brk"></div>
  1055.  
  1056. <p>keep this shit short.
  1057. <p>it will look like shit if you make it big.
  1058. </center>
  1059. <p><div class="brk">put whatever the fuck you want in here</div>
  1060. <p>
  1061. i don't give a fuck what you put down here either but if you want to use another quote copy the code from the top of the sidebar.
  1062.  
  1063. <!-------------------------------------END-------------------------------------->
  1064. </div>
  1065.  
  1066. </div>
  1067.  
  1068.  
  1069. </body>
  1070.  
  1071.  
  1072.  
  1073. <div id="box1" class="popup_block"><p><br>
  1074. <img src="https://66.media.tumblr.com/451567265bba9863440d3c2b377cdd2b/913116c285bba97f-02/s540x810/44063395c2160304fe2ea9162fd23e7691f1a891.png"><p><div class="king1"><strike>&nbsp; &nbsp; &nbsp; </strike><a href="#?w=425" rel="box2" class="poplight">ENTER</a>.</div>
  1075. </div>
  1076.  
  1077. <div id="box2" class="popup_block"><img src="https://66.media.tumblr.com/e58c9989e6b174675d43524b4e6bcefc/913116c285bba97f-e8/s540x810/b0b467e0b7703dffe848613f000c06a686f13ee6.png">
  1078. <p><div class="king2">
  1079. &nbsp; &nbsp; &nbsp; <span>CROWN PRINCE</span>, some call him; the one with broad shoulders upon which rest a future kingdom. &nbsp; <span>GOLDENGLASS</span>, he is also called &mdash; the fair-haired glassblower from ered luin; one calls him <i>nephew</i>, and one calls him <i><a title="khuzdรปl :: brother">nadad</a></i>, and, for him, these are all better than being called <span>KING</span>.
  1080. <p>&nbsp; &nbsp; &nbsp;<span>FรLI DURINSON</span> is surprisingly amenable for a dwarf. &nbsp; level-headed and patient at his best, and vicious and secretive at his worst, he is every bit a dwarf: and every bit not one. &nbsp; perhaps, one day, he will make a fine king &mdash; should he survive so long.
  1081. </div>
  1082. </div>
  1083.  
  1084. <div id="box3" class="popup_block">
  1085. <h1>the basics.</h1><div class="king3">THIS IS A PRIVATE + HIGHLY SELECTIVE + LOW ACTIVITY + MATURE ROLEPLAY BLOG FOR FรLI DURINSON FROM THE HOBBIT. &nbsp; 70% film + 10% book + 20% my own headcanons. &nbsp; includes fix-it content because fuck the battle of five armies.
  1086. <p>
  1087. <b>PRIVATE STATUS.</b> &nbsp; &nbsp; This means that I will only interact with and write with mutuals. My inbox and IM are open to all, but do not abuse this to skirt around my private status or I will lock that shit down. If youโ€™re not a mutual, youโ€™re still welcome to continue following me.
  1088. <p>
  1089. <b>SELECTIVE STATUS.</b> &nbsp; &nbsp; This means that I wonโ€™t respond to everything thatโ€™s sent my way, and I will not honor threads in a โ€˜first come first servedโ€™ manner. I write what inspires me. Period.
  1090. <p>
  1091. <b>LOW ACTIVITY.</b> &nbsp; &nbsp; This is because I run multiple blogs, roleplay on discord (see more below) and also have a full-time job. Do not expect me to respond to everything at the drop of a hat; if I havenโ€™t replied, Iโ€™m very likely not around.</div>
  1092.  
  1093. <br><h1>standard rules.</h1>
  1094. <div class="king3"><b>21+ MUNS ONLY.</b> &nbsp; &nbsp; I will not interact with blogs run by people under the age of 18. Have your age clearly visible in your rules, or I will not follow you.
  1095. <p>
  1096. <b>BLOG IS NSFW.</b> &nbsp; &nbsp; Mature / triggering content will be on this blog. This most likely means violence and gore. Sexual themes will be played on discord but may be discussed on blog. I am of age (27) and have no triggers, and I use my blogs to explore dark topics because they are fun for me to write. If you have a trigger, please let me know so I can tag it.
  1097. <p>
  1098. <b>NO PERSONALS.</b> &nbsp; &nbsp; Donโ€™t follow me or interact with me. Donโ€™t reblog my roleplays. Please just go away. I will block you if you donโ€™t.
  1099. <p>
  1100. <b>NO ANON HATE OR DRAMA.</b> &nbsp; &nbsp; Iโ€™m so sick of it guys. Grow up. Go outside. Hug a tree. Touch some grass. Thereโ€™s a real world out there with enough actual drama to give me an ulcer: keep it off my fucking dash.
  1101. <p>
  1102. <b>I DON'T BELIEVE IN MAINS OR EXCLUSIVES.</b> &nbsp; &nbsp; Itโ€™s limiting. I wanna write what I wanna write, with whomever wants to write it with me. If you want to make me a main or be exclusive with me, thatโ€™s fine: just donโ€™t expect me to return the favor.
  1103. <p>
  1104. <b>I WILL NOT INTERACT WITH BLOGS THAT DO NOT HAVE A RULES PAGE.</b> &nbsp; &nbsp; No exceptions. If you donโ€™t have a rules page and then claim I โ€˜broke a ruleโ€™, you are human garbage.
  1105. <p>
  1106. <b>SEND IN ALL THE MEMES.</b> &nbsp; &nbsp; Theyโ€™re the best way to get my muse to interact with you!
  1107. <p>
  1108. <b>IMING ME TO PLOT IS HIGHLY ENCOURAGED.</b> &nbsp; &nbsp; PLEASE DO THIS. Itโ€™s so much easier to get on with my muse (and me!) if you reach out to me via IM.
  1109. </div>
  1110.  
  1111. <br><h1>SHIPPING AND SMUT.</h1>
  1112. <div class="king3"><b>i will never hate on you or unfollow you for your ships.</b> &nbsp; &nbsp; <i>This is a shipping safe zone.</i> &nbsp; What you want to write is what you want to write, and I'm happy to see you happy. &nbsp; Write on, you beautiful dreamer.
  1113. <p>
  1114. <b>I AM MULTISHIP.</b> &nbsp; &nbsp; I donโ€™t want to see butthurt because โ€˜you were already shipping with meโ€™.
  1115. <p>
  1116. <b>I ONLY SHIP BASED ON CHEMISTRY.</b> &nbsp; &nbsp; I will not write a ship just because 'everyone else writes itโ€™. If youโ€™re the second part of my OTPs (see below), please IM me to discuss shippy things. If youโ€™re not and our muses develop chemistry through the writing process, you bet your ass youโ€™re getting your own tag.
  1117. <p>
  1118. <b>A NOTE REGARDING SMUT.</b> &nbsp; &nbsp; Smut will always be played on discord, though there will be mentions of sexual themes / fade-to-black threads on my blog.
  1119. <p><b>MY OTPs.</b> &nbsp; &nbsp; I mainly ship <i>Fรญli x Kรญli</i> &nbsp;( see below ) , <i>Fรญli x Legolas</i>, and <i>Fรญli x Sigrid</i>.
  1120. <p>
  1121. <b>fรญli and kรญli.</b> &nbsp; &nbsp; Fรญli and Kรญli will <i>always</i> have a close relationship on my blog; that doesn't mean a <i>ship</i> in the traditional sense, but Kรญli is a strong, strong force in Fรญli's life, so expect lots of Kรญli-centric posts on here. &nbsp; I headcanon that dwarvish culture does not frown upon sibling relations; this is because I have researched much of the time period(s) that middle earth is based on. &nbsp; I see Fรญli and Kรญli as metaphorical extensions of one another who struggle with their independence due to the conditions they were raised in. &nbsp; It is not romance; there will be no dating or 'omg i think im in love with u'; it is closeness and protectiveness, a sense that they were the same soul split into two forms. &nbsp; I loathe when people ignore historical bias because something isn't acceptable or appropriate for our current time and culture, and I will not be ignoring historical beliefs just to fit in and be 'acceptable'. &nbsp; <b>Fiction does not equal reality; the fact that i have to say this is saddening.</b> &nbsp; If you want to avoid seeing anything of this nature, please block the tag &nbsp;<i>' block: fiki '</i>&nbsp; ; if you have a problem with the fact that I ship Fรญli and Kรญli, despite the fact that this is not a 'ship' by the definition of the word, do not send anon hate or vague about me &mdash; simply don't follow me.
  1122. </div>
  1123.  
  1124. <br><h1>MUN INFO.</h1>
  1125. <div class="king3"><b>Winter</b>. &nbsp; &nbsp; 27. MST. INFP-T. Depressed. Anxious. Perpetually in love with food and CSS.
  1126. <p>
  1127. <b>SCHEDULE.</b> &nbsp; &nbsp; I have a full time job at a medical device manufacturing facility. Iโ€™m usually away from my computer from noon to 10:15 pm mst monday through friday, and I mainly write on weekends or holidays. I have the tumblr app to keep tabs on things while Iโ€™m on break, but I wonโ€™t reply until I have time to actually sit down and format shit.
  1128. <p>
  1129. <b>DISCORD.</b> &nbsp; &nbsp; I really love roleplaying on discord, and actually get a lot more done there because I donโ€™t have to format. If weโ€™re mutuals, feel free to add me and hmu at any time.</div>
  1130.  
  1131. <br><h1>CREDITS.</h1>
  1132. <div class="king3"><b>theme.</b> &nbsp; &nbsp; <a href="https://musesbywinter">winter</a> made this piece of shit using base codes from <a href="https://hollywhood.tumblr.com/">hollywhood</a>. floating blob effect is from <a href="http://www.mf2fm.com/rv/dhtmlblobs-in-a-jar.php">here</a>.
  1133. <p>
  1134. <b>PSD.</b> &nbsp; &nbsp; My psd is <a href="https://www.deviantart.com/jaynedits/art/PSD-019-SWAN-SONG-812453861">swan song</a> by jaynedits. They are also responsible for my icon template.
  1135. <p>
  1136. <b>images.</b> &nbsp; &nbsp; All images of Fรญli are screencaps or promotional material from the films. Dean O'Gorman owns his face.
  1137. </div>
  1138. <br>
  1139. </div>
  1140.  
  1141. <div id="box4" class="popup_block">
  1142. <h1><big>โ€”approach.</big></h1><center><p><iframe frameborder="0" height="350" id="ask_form" scrolling="yes" src="https://www.tumblr.com/ask_form/zirizant.tumblr.com" width="90%"></iframe>
  1143. </center>
  1144. </div>
  1145.  
  1146. <div id="box5" class="popup_block">
  1147. <h1>navigation:</h1>
  1148. <h2>&nbsp; &nbsp; &nbsp; the prince.</h2>
  1149. <div class="king3"><span>
  1150. <a href="/tagged/NOTREADYYET">about.</a>
  1151. &nbsp; &nbsp; &nbsp; &nbsp;
  1152. <a href="/tagged/โ–Œ ( markhazghzarsul: oakenshield. ) โ€”โ€” ๐€๐„๐’. โ–">aesthetic.</a>
  1153. &nbsp; &nbsp; &nbsp; &nbsp;
  1154. <a href="/tagged/โ–Œโ—“ ( heavy lies the crown. )โ€” HEADCANON.">headcanon.</a>
  1155. &nbsp; &nbsp; &nbsp; &nbsp;
  1156. <a href="/tagged/โ–Œ ( zirizant: golden hair. ) โ€”โ€” ๐…๐ˆ๐‹๐ˆ. โ–">self.</a>
  1157. &nbsp; &nbsp; &nbsp; &nbsp;
  1158. <a href="/tagged/โ–Œ ( akamรขth: songs of the mountain. ) โ€”โ€” ๐’๐Ž๐๐†๐’. โ–">songs.</a>
  1159. &nbsp; &nbsp; &nbsp; &nbsp;
  1160. <a href="/tagged/โ–Œ ( aranรขk: thoughts of oakenshield. ) โ€”โ€” ๐“๐‡๐Ž๐”๐†๐‡๐“๐’. โ–">thoughts.</a>
  1161. </span></div>
  1162.  
  1163. <h2>&nbsp; &nbsp; &nbsp; the company.</h2>
  1164. <div class="king3"><span>
  1165. <a href="/tagged/โ–Œ ( zunugmalkรปn: brave hobbit. ) โ€”โ€” ๐๐ˆ๐‹๐๐Ž. โ–">bilbo.</a>
  1166. &nbsp; &nbsp; &nbsp; &nbsp;
  1167. <a href="/tagged/โ–Œ ( kibilufkak: silver archer. ) โ€”โ€” ๐Š๐ˆ๐‹๐ˆ. โ–">kรญli.</a>
  1168. &nbsp; &nbsp; &nbsp; &nbsp;
  1169. <a href="/tagged/โ–Œ ( thekeluzbad: steel king. ) โ€”โ€” ๐“๐‡๐Ž๐‘๐ˆ๐. โ–">thorin.</a>
  1170. </span></div>
  1171.  
  1172. <h2>&nbsp; &nbsp; &nbsp; the world.</h2>
  1173. <div class="king3"><span>
  1174. <a href="/tagged/โ–Œ ( azsรขlul'abad: stolen homeland. ) โ€”โ€” ๐„๐‘๐„๐๐Ž๐‘. โ–">erebor.</a>
  1175. &nbsp; &nbsp; &nbsp; &nbsp;
  1176. <a href="/tagged/โ–Œ ( mesรชm: hewn from rock. ) โ€”โ€” ๐†๐„๐Œ๐’. โ–">gems.</a>
  1177. &nbsp; &nbsp; &nbsp; &nbsp;
  1178. <a href="/tagged/โ–Œ ( 'urรขd: jagged peaks of stone. ) โ€”โ€” ๐Œ๐Ž๐”๐๐“๐€๐ˆ๐๐’. โ–">mountains.</a>
  1179. </span></div>
  1180.  
  1181. <h2>&nbsp; &nbsp; &nbsp; others of note.</h2>
  1182. <div class="king3"><span>
  1183. <a href="/tagged/โ–Œ ( khuzdu'urs: fiery dwarrow. ) โ€”โ€” ๐†๐ˆ๐Œ๐‹๐ˆ. โ–">gimli.</a>
  1184. &nbsp; &nbsp; &nbsp; &nbsp;
  1185. <a href="/tagged/โ–Œ ( injamudanakh: leaf of green. ) โ€”โ€” ๐‹๐„๐†๐Ž๐‹๐€๐’. โ–">legolas.</a>
  1186. </span></div>
  1187.  
  1188.  
  1189. <h2>&nbsp; &nbsp; &nbsp; resources.</h2>
  1190. <div class="king3"><span>
  1191. <a href="/tagged/โ–Œ ( saglรชl: questions to start a journey. ) โ€”โ€” ๐Œ๐„๐Œ๐„๐’. โ–">memes.</a>
  1192. &nbsp; &nbsp; &nbsp; &nbsp;
  1193. <a href="/tagged/โ–Œ ( zarabรขl: faceless writer. ) โ€”โ€” ๐Ž๐Ž๐‚. โ–">ooc.</a>
  1194. &nbsp; &nbsp; &nbsp; &nbsp;
  1195. <a href="/tagged/โ–Œ ( galdur: worth its weight. ) โ€”โ€” ๐๐‘๐Ž๐Œ๐Ž. โ–">promos.</a>
  1196. </span></div>
  1197. </div>
  1198.  
  1199.  
  1200.  
  1201. </div></div></div></div></div></div></div></div></div></div>
  1202.  
  1203. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement