Advertisement
Guest User

forvin

a guest
Mar 20th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 57.27 KB | None | 0 0
  1.  
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3.  
  4.  
  5. <!--
  6.  
  7. WINTER'S LADY THEMES
  8. ♛ this code was made by AGIRLINGREY@TUMBLR.
  9. ♛ do not remove credit or claim as your own.
  10.  
  11. -->
  12.  
  13.  
  14. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  15. <head>
  16.  
  17.  
  18. <script type="text/javascript">
  19. // <![CDATA[
  20. var colour="#616061"; // what colour are the blobs
  21. var speed=25; // speed of animation, lower is faster
  22. var blobs=10; // how many blobs are in the jar
  23. var charc=String.fromCharCode(9679); // a blob - can be changed to charc='hello' or charc='*' for a different effect
  24.  
  25. /***************************\
  26. * Blobs in a Jar Effect *
  27. *(c)2012-13 mf2fm web-design*
  28. * http://www.mf2fm.com/rv *
  29. * DON'T EDIT BELOW THIS BOX *
  30. \***************************/
  31.  
  32. var div;
  33. var xpos=new Array();
  34. var ypos=new Array();
  35. var zpos=new Array();
  36. var dx=new Array();
  37. var dy=new Array();
  38. var dz=new Array();
  39. var blob=new Array();
  40. var swide=800;
  41. var shigh=600;
  42. var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
  43.  
  44. function addLoadEvent(funky) {
  45. var oldonload=window.onload;
  46. if (typeof(oldonload)!='function') window.onload=funky;
  47. else window.onload=function() {
  48. if (oldonload) oldonload();
  49. funky();
  50. }
  51. }
  52.  
  53. addLoadEvent(fill_the_jar);
  54.  
  55. function fill_the_jar() {
  56. var i, dvs;
  57. div=document.createElement('div');
  58. dvs=div.style;
  59. dvs.position='fixed';
  60. dvs.left='0px';
  61. dvs.top='0px';
  62. dvs.width='1px';
  63. dvs.height='1px';
  64. document.body.appendChild(div);
  65. set_width();
  66. for (i=0; i<blobs; i++) {
  67. add_blob(i);
  68. jamjar(i);
  69. }
  70. }
  71.  
  72. function add_blob(ref) {
  73. var dv, sy;
  74. dv=document.createElement('div');
  75. sy=dv.style;
  76. sy.position='absolute';
  77. sy.textAlign='center';
  78. if (ie_version && ie_version<10) {
  79. sy.fontSize="10px";
  80. sy.width="100px";
  81. sy.height="100px";
  82. sy.paddingTop="40px";
  83. sy.color=colour;
  84. dv.appendChild(document.createTextNode(charc));
  85. }
  86. else if (ie_version) {
  87. sy.fontSize="1px";
  88. sy.width="0px";
  89. sy.height="0px";
  90. }
  91. else {
  92. dv.appendChild(document.createTextNode(charc));
  93. sy.color='rgba(0,0,0,0)';
  94. }
  95. ypos[ref]=Math.floor(shigh*Math.random());
  96. dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  97. xpos[ref]=Math.floor(swide*Math.random());
  98. dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  99. zpos[ref]=Math.random()*20;
  100. dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
  101. blob[ref]=dv;
  102. div.appendChild(blob[ref]);
  103. set_blob(ref);
  104. }
  105.  
  106. function rejig(ref, xy) {
  107. if (xy=='y') {
  108. dx[ref]=(0.5+Math.random())*sign(dx[ref]);
  109. dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
  110. }
  111. else {
  112. dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
  113. dy[ref]=(0.5+Math.random())*sign(dy[ref]);
  114. }
  115. }
  116.  
  117. function sign(a) {
  118. if (a<0) return (-2);
  119. else if (a>0) return (2);
  120. else return (0);
  121. }
  122.  
  123. function set_blob(ref) {
  124. var sy;
  125. sy=blob[ref].style;
  126. sy.top=ypos[ref]+'px';
  127. sy.left=xpos[ref]+'px';
  128. if (ie_version && ie_version<10) {
  129. sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
  130. sy.fontSize=30-zpos[ref]+"px";
  131. }
  132. else if (ie_version) {
  133. sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
  134. }
  135. else {
  136. sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
  137. sy.fontSize=40+zpos[ref]+'px';
  138. }
  139. }
  140.  
  141. function jamjar(ref) {
  142. if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
  143. ypos[ref]+=dy[ref];
  144. if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
  145. xpos[ref]+=dx[ref];
  146. if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
  147. zpos[ref]+=dz[ref];
  148. set_blob(ref);
  149. setTimeout("jamjar("+ref+")", speed);
  150. }
  151.  
  152. window.onresize=set_width;
  153. function set_width() {
  154. var sw_min=999999;
  155. var sh_min=999999;
  156. if (document.documentElement && document.documentElement.clientWidth) {
  157. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  158. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  159. }
  160. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  161. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  162. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  163. }
  164. if (document.body.clientWidth) {
  165. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  166. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  167. }
  168. if (sw_min==999999 || sh_min==999999) {
  169. sw_min=800;
  170. sh_min=600;
  171. }
  172. swide=sw_min;
  173. shigh=sh_min;
  174. }
  175. // ]]>
  176. </script>
  177.  
  178.  
  179. <!--
  180. POP UP SCRIPT
  181. -->
  182.  
  183.  
  184. <script type="text/javascript"
  185. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  186. <script>
  187. $(document).ready(function() {
  188. //
  189. $('a.poplight[href^=#]').click(function() {
  190. var popID = $(this).attr('rel'); //Get Popup Name
  191. var popURL = $(this).attr('href'); //Get Popup href to define size
  192. var query= popURL.split('?');
  193. var dim= query[1].split('&');
  194. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  195. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  196. var popMargTop = ($('#' + popID).height() + 80) / 2;
  197. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  198. //Apply Margin to Popup
  199. $('#' + popID).css({
  200. 'margin-top' : -popMargTop,
  201. 'margin-left' : -popMargLeft
  202. });
  203. $('body').append('<div id="fade"></div>');
  204. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  205. return false;
  206. });
  207. $('a.close, #fade').live('click', function() {
  208. $('#fade , .popup_block').fadeOut(function() {
  209. $('#fade, a.close').remove(); //fade them both out
  210. });
  211. return false;
  212. });
  213. });
  214. </script>
  215.  
  216.  
  217.  
  218. <!--
  219. VERSE TABS SCRIPT
  220. -->
  221.  
  222.  
  223. <script>
  224.  
  225. $(document).ready(function(){
  226. $("ul#tabs li").click(function(e){
  227. if (!$(this).hasClass("active")) {
  228. var tabNum = $(this).index();
  229. var nthChild = tabNum+1;
  230. $("ul#tabs li.active").removeClass("active");
  231. $(this).addClass("active");
  232. $("ul#tab li.active").removeClass("active");
  233. $("ul#tab li:nth-child("+nthChild+")").addClass("active");
  234. }
  235. });
  236. });
  237. </script>
  238.  
  239.  
  240.  
  241. <!--
  242. TOOLTIP STYLING SCRIPT
  243. -->
  244.  
  245.  
  246. <link href="http://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  247. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  248. <script src="http://static.tumblr.com/5omyijl/RZtn2yg9v/jquery.style-my-tooltips.js"></script>
  249. <script>
  250. (function($){
  251. $(document).ready(function(){
  252. $("[title]").style_my_tooltips({
  253. tip_follows_cursor:true,
  254. tip_delay_time:200,
  255. tip_fade_speed:500
  256. });
  257. });
  258. })(jQuery);
  259. </script>
  260.  
  261.  
  262.  
  263.  
  264. <title>{Title}</title>
  265. <link rel="shortcut icon" href="{Favicon}">
  266. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  267. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  268.  
  269.  
  270.  
  271. <!--
  272. CUSTOM FONTS
  273. -->
  274.  
  275.  
  276.  
  277. <link href="https://fonts.googleapis.com/css?family=Josefin+Sans" rel="stylesheet">
  278.  
  279. <link href="https://fonts.googleapis.com/css?family=Bad+Script" rel="stylesheet">
  280.  
  281. <link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
  282.  
  283.  
  284. <link href="https://fonts.googleapis.com/css?family=Audiowide" rel="stylesheet">
  285.  
  286. <link href="https://fonts.googleapis.com/css?family=Jura" rel="stylesheet">
  287.  
  288. <link href="https://fonts.googleapis.com/css?family=Iceland" rel="stylesheet">
  289.  
  290. <style type="text/css">
  291.  
  292.  
  293.  
  294. /* THE CUSTOM SIDEBAR THING */
  295.  
  296.  
  297.  
  298. #bite
  299. #bite a{
  300. display:block
  301. }
  302. #bite .death {
  303. margin-top:0px;filter: alpha(opacity = 1.0);
  304. opacity:1.0;-webkit-transition: all 0.5s ease-out;
  305. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  306. }
  307.  
  308. #bite:hover .death {
  309. margin-top:0px;
  310. -webkit-transition: all 0.8s ease-out;
  311. -moz-transition: all 0.8s ease-out;
  312. transition: all 0.8s ease-out;
  313. filter: alpha(opacity = 100);
  314. filter: alpha(opacity = 100);
  315. opacity:100;
  316. }
  317.  
  318.  
  319.  
  320. /* SELECTION FONT AND BACKGROUND */
  321.  
  322.  
  323. ::selection {
  324. background: #c2c2c2;
  325. color:#fff; }
  326.  
  327.  
  328. ::-moz-selection {
  329. background: #c2c2c2;
  330. color:#fff; }
  331.  
  332.  
  333.  
  334. /* SCROLLBAR DETAILS */
  335.  
  336.  
  337.  
  338. ::-webkit-scrollbar {
  339. height: 0px;
  340. width: 2px;
  341. background:transparent;
  342. border-left:0px solid transparent;
  343. border-right:0px solid transparent;}
  344.  
  345.  
  346. ::-webkit-scrollbar-thumb {
  347. background:transparent;}
  348.  
  349.  
  350.  
  351.  
  352. /* THE CURSOR */
  353.  
  354.  
  355. {block:iftinycursor}
  356. body, a, a:hover{
  357. cursor: url('http://24.media.tumblr.com/tumblr_mdig6jktic1riysloo1_100.png'), progress;}
  358. {/block:iftinycursor}
  359.  
  360. iframe#tumblr_controls {
  361. right:3px !important;
  362. position: fixed !important;
  363. -webkit-transition: opacity 0.7s
  364. linear;opacity: 0.2;
  365. -webkit-transition: all 0.8s ease-out;
  366. -moz-transition: all 0.8s ease-out;
  367. transition: all 0.8s ease-out;}
  368.  
  369. iframe#tumblr_controls:hover{
  370. -webkit-transition: opacity 0.7s linear;
  371. opacity: 1;
  372. -webkit-transition: all 0.4s ease-out;
  373. -moz-transition: all 0.4s ease-out;
  374. transition: all 0.4s ease-out;}
  375.  
  376.  
  377.  
  378. /* GENERAL LOOK AND BACKGROUND */
  379.  
  380.  
  381. body {
  382. background:#090909;
  383. background-image:url('http://i.imgur.com/zTbW9z3.png');
  384. background-attachment: fixed;
  385. background-repeat: no-repeat;
  386. background-position: left top;
  387. color:#8f8f8f;
  388. font-family: 'Jura', sans-serif;
  389. text-align:justify;
  390. font-weight: bolder;
  391. font-size: 12px;
  392. letter-spacing:1px;
  393. line-height:20px;
  394. }
  395.  
  396.  
  397.  
  398. /* THE VERSES TABS */
  399.  
  400.  
  401. ul#tabs {
  402. list-style-type: none;
  403. padding: 0;
  404. text-align: center;
  405. font-size:8px;
  406. letter-spacing:1px;
  407. text-shadow:1px 1px 0px #4c4c4c,
  408. 1px -1px 0px #4c4c4c,
  409. -1px -1px 0px #4c4c4c,
  410. -1px 1px 0px #4c4c4c,
  411. 0px 1px 0px #4c4c4c,
  412. 0px -1px 0px #4c4c4c,
  413. 1px 0px 0px #4c4c4c,
  414. -1px 0px 0px #4c4c4c;
  415.  
  416. }
  417.  
  418.  
  419.  
  420. ul#tabs li {
  421. background-image: url('http://i.imgur.com/hIgaePv.gif');
  422. background-repeat:repeat;
  423. background-attachment:fixed;
  424. border-left: double 3px #000;
  425. border-top: double 3px #000;
  426. border-right: double 3px #000;
  427. border-bottom: double 3px #000;
  428. color:#e6e6e6;
  429. text-shadow:1px 1px 0px #000,
  430. 1px -1px 0px #000,
  431. -1px -1px 0px #000,
  432. -1px 1px 0px #000,
  433. 0px 1px 0px #000,
  434. 0px -1px 0px #000,
  435. 1px 0px 0px #000,
  436. -1px 0px 0px #000;
  437. display: inline-block;
  438. padding: 4px 10px;
  439. margin-bottom: 4px;
  440. cursor: pointer;
  441. }
  442.  
  443.  
  444.  
  445. ul#tabs li:hover {
  446. background-color: transparent;
  447. color: #eaeaea;
  448. }
  449.  
  450. ul#tabs li.active {
  451. background-image: url('');
  452. background:#151515;
  453. background-repeat:repeat;
  454. background-attachment:fixed;
  455. border-left: double 3px #000;
  456. border-top: double 3px #000;
  457. border-right: double 3px #000;
  458. border-bottom: double 3px #000;
  459. color:#e6e6e6;
  460. text-shadow:1px 1px 0px #000,
  461. 1px -1px 0px #000,
  462. -1px -1px 0px #000,
  463. -1px 1px 0px #000,
  464. 0px 1px 0px #000,
  465. 0px -1px 0px #000,
  466. 1px 0px 0px #000,
  467. -1px 0px 0px #000;
  468. display: inline-block;
  469. padding: 4px 10px;
  470. margin-bottom: 4px;
  471. cursor: pointer;
  472. }
  473.  
  474.  
  475.  
  476. ul#tab {
  477. list-style-type: none;
  478. margin: 0;
  479. padding: 0;
  480. }
  481.  
  482. ul#tab li {
  483. display: none;
  484. }
  485.  
  486. ul#tab li.active {
  487. display: block;
  488. }
  489.  
  490.  
  491.  
  492.  
  493. /* LINKS */
  494.  
  495.  
  496. a:link, a:active, a:visited {
  497. letter-spacing:1px;
  498. text-decoration: none;
  499. color: #93a7aa;
  500. -moz-transition-duration:.6s;
  501. -webkit-transition-duration:.6s;
  502. -o-transition-duration:.6s;
  503. -webkit-filter: blur(0px);}
  504.  
  505. a:hover {
  506. color: #8f8f8f;
  507. -moz-transition-duration:.6s;
  508. -webkit-transition-duration:.6s;
  509. -o-transition-duration:.6s;
  510. -webkit-filter: blur(1px);}
  511.  
  512.  
  513.  
  514. #links a {
  515. padding:5px;
  516. margin-right:0px;
  517. text-shadow: 1px 0px 1px #7a7a7a;
  518. }
  519.  
  520.  
  521. #links a:hover {
  522. padding:5px;
  523. margin-right:0px;
  524. text-shadow: 2px 0px 10px #7a7a7a;
  525. -moz-transition-duration:0.6s;
  526. -webkit-transition-duration:0.6s;
  527. -o-transition-duration:0.6s;
  528. }
  529.  
  530.  
  531.  
  532.  
  533. /* OTHER TEXT STUFF */
  534.  
  535.  
  536.  
  537. h1 {
  538. background-color: transparent;
  539. font-family: 'Jura', sans-serif;
  540. font-size: 18px;
  541. line-height: 20px;
  542. letter-spacing: 2px;
  543. text-align: center;
  544. text-transform:uppercase;
  545. color: #91a3ac;
  546. }
  547.  
  548.  
  549. h2 {
  550. background-color: transparent;
  551. font-family: 'Jura', sans-serif;
  552. font-size: 14px;
  553. line-height: 16px;
  554. letter-spacing: 2px;
  555. text-align: left;
  556. text-transform:uppercase;
  557. color: #91a3ac;
  558. }
  559.  
  560.  
  561.  
  562. h3 {
  563. background-image: url('http://i.imgur.com/hIgaePv.gif');
  564. background-repeat:repeat;
  565. background-attachment:fixed;
  566. border-left: double 3px #000;
  567. border-top: double 3px #000;
  568. border-right: double 3px #000;
  569. border-bottom: double 3px #000;
  570. padding:2px;
  571. color:#e6e6e6;
  572. text-shadow:1px 1px 0px #000,
  573. 1px -1px 0px #000,
  574. -1px -1px 0px #000,
  575. -1px 1px 0px #000,
  576. 0px 1px 0px #000,
  577. 0px -1px 0px #000,
  578. 1px 0px 0px #000,
  579. -1px 0px 0px #000;
  580. font-size:16px;
  581. font-family:'Jura', sans-serif;
  582. text-transform:uppercase;
  583. letter-spacing:1px;
  584. text-align:center;}
  585.  
  586.  
  587.  
  588.  
  589. h4 {
  590. background-image: url('http://i.imgur.com/hIgaePv.gif');
  591. background-repeat:repeat;
  592. background-attachment:fixed;
  593. border-left: double 3px #000;
  594. border-top: double 3px #000;
  595. border-right: double 3px #000;
  596. border-bottom: double 3px #000;
  597. padding:2px;
  598. color:#e6e6e6;
  599. text-shadow:1px 1px 0px #000,
  600. 1px -1px 0px #000,
  601. -1px -1px 0px #000,
  602. -1px 1px 0px #000,
  603. 0px 1px 0px #000,
  604. 0px -1px 0px #000,
  605. 1px 0px 0px #000,
  606. -1px 0px 0px #000;
  607. font-size:14px;
  608. font-family:'Iceland', cursive;
  609. text-transform:uppercase;
  610. letter-spacing:1px;
  611. text-align:center;}
  612.  
  613.  
  614.  
  615. hr {
  616. color:#818181;
  617. display: block;
  618. margin-top: 0.5em;
  619. margin-bottom: 0.5em;
  620. margin-left: auto;
  621. margin-right: auto;
  622. border-style: inset;
  623. border-width: 1px;
  624. }
  625.  
  626.  
  627.  
  628.  
  629. quotetext {
  630. background-color: transparent;
  631. font-family: 'Iceland', cursive;
  632. font-size: 16px;
  633. line-height: 30px;
  634. letter-spacing: 2px;
  635. text-align: center;
  636. color: #91a3ac;
  637. }
  638.  
  639.  
  640.  
  641. blockquote {
  642. word-wrap: break-word;
  643. padding:2px 7px;
  644. margin:3px 0 3px 10px;
  645. border-left:1px solid {color:border};
  646. background-color:transparent;}
  647.  
  648.  
  649. blockquote img{
  650. max-width:100%;
  651. height:auto;
  652. }
  653.  
  654. blockquote blockquote img{
  655. max-width:100%;
  656. height:auto;
  657. }
  658.  
  659.  
  660.  
  661.  
  662. b, bold {
  663. font-size:15px;
  664. text-transform:uppercase;
  665. letter-spacing:1px;
  666. font-family: 'Iceland', cursive;
  667. color: #c2cbcc;
  668. text-shadow:1px 1px 0 #000;
  669. font-style: normal;
  670. font-weight:bolder;
  671. }
  672.  
  673.  
  674.  
  675. i, italic {
  676. font-size:14px;
  677. color: #c2cbcc;
  678. font-family: 'Iceland', cursive;
  679. text-shadow: 0px 0px 2px #5a5a5a;
  680. letter-spacing:1px;
  681.  
  682. font-weight:200;
  683. }
  684.  
  685.  
  686.  
  687. p {
  688. margin-top:5px;
  689. margin-bottom:5px;}
  690.  
  691.  
  692. ol {
  693. list-style:normal;}
  694.  
  695.  
  696. ul {
  697. list-style:square;}
  698.  
  699.  
  700. small {
  701. font-size:12px}
  702.  
  703.  
  704. sup,sub {
  705. font-size:12px}
  706.  
  707.  
  708. pre {
  709. font-size: 10px;
  710. letter-spacing:3px;
  711. background-color:#000;
  712. font-family: 'Oswald', sans-serif;
  713. font-style: none;
  714. text-align:center;
  715. white-space: pre-wrap; /* css-3 */
  716. white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  717. white-space: -pre-wrap; /* Opera 4-6 */
  718. white-space: -o-pre-wrap; /* Opera 7 */
  719. word-wrap: break-word; /* Internet Explorer 5.5+ */ }
  720.  
  721.  
  722.  
  723. big {
  724. font-size:14px;
  725. text-transform:uppercase;
  726. letter-spacing:2px;
  727. font-family: 'Oswald', sans-serif;
  728. color: #91a3ac;
  729. text-shadow: 0px 0px 2px #383838;
  730. }
  731.  
  732.  
  733.  
  734. /* IMAGES, PHOTOSETS AND WHATNOT */
  735.  
  736.  
  737.  
  738. {block:IfGreyscale}
  739.  
  740. img {
  741. -webkit-filter:grayscale(100%);
  742. -webkit-transition: all 0.9s ease-in-out;
  743. -moz-transition: all 0.9s ease-in-out;
  744. -o-transition: all 0.9s ease-in-out;
  745. -ms-transition: all 0.9s ease-in-out;
  746. transition: all 0.9s ease-in-out;}
  747.  
  748. img:hover {
  749. -webkit-filter:none;}
  750.  
  751. .html_photoset {
  752. -webkit-filter: grayscale(100%);
  753. -webkit-transition: all 0.9s ease-in-out;
  754. -moz-transition: all 0.9s ease-in-out;
  755. -o-transition: all 0.9s ease-in-out;
  756. -ms-transition: all 0.9s ease-in-out;
  757. transition: all 0.9s ease-in-out;}
  758.  
  759. .html_photoset:hover {
  760. -webkit-filter: none;}
  761.  
  762. {/block:IfGreyscale}
  763.  
  764.  
  765.  
  766. /* CONTAINER AND POSTS */
  767.  
  768.  
  769.  
  770. #container {
  771. background-color:transparent;
  772. width:325px;
  773. height:450px;
  774. padding: 20px;
  775. top:45px;
  776. margin-left: 310px;
  777. position:relative;
  778. overflow-y:scroll;
  779. overflow-x:hidden;
  780. -webkit-mask-image: -webkit-gradient(
  781. linear, center 75%, center bottom,
  782. from(rgba(0,0,0,20)),
  783. to(rgba(20,0,0,0)));
  784. border:1px solid transparent;}
  785.  
  786. #container img {
  787. height:auto;
  788. max-width:100%;
  789. }
  790.  
  791. #content {
  792. margin-left:62px;
  793. width:310px;
  794. margin-top: -110px;
  795. }
  796.  
  797. #posts {
  798. width:325px;
  799. padding:10px;
  800. margin-top: 90px;
  801. margin-left:-72px;
  802. padding-bottom:0px;
  803. overflow-y:scroll;
  804. overflow-x:hidden;
  805. }
  806.  
  807.  
  808. #description {
  809. margin-left: 0px;
  810. margin-top: -50px;
  811. width:180px;
  812. color:transparent;}
  813.  
  814.  
  815.  
  816.  
  817. /* CUSTOM SIDEBAR SETTINGS */
  818.  
  819.  
  820.  
  821. #actualnews {
  822. font-family: 'Jura', sans-serif;
  823. font-size:12px;
  824. background:transparent;
  825. color: #8f8f8f;
  826. width:235px;
  827. height:420px;
  828. padding-top:3px;
  829. border:0px solid #131313;
  830. left: 793px;
  831. top: 345px;
  832. text-align:center;
  833. position:fixed;
  834. -webkit-filter: blur(0px);
  835. -webkit-transition: 0.8s ease-in;
  836. -moz-transition: 1s ease-in;
  837. transition: 1s ease-in;
  838. opacity:0.5;
  839. -webkit-transition: all 0.6s ease-in-out;
  840. -moz-transition: all 0.6s ease-in-out;
  841. -o-transition: all 0.6s ease-in-out;
  842. -ms-transition: all 0.6s ease-in-out;
  843. transition: all 0.6s ease-in-out;
  844. }
  845.  
  846.  
  847.  
  848. #actualnews:hover {
  849. -webkit-filter:none;
  850. -webkit-transition: all 0.6s ease-in-out;
  851. opacity:1;
  852. -webkit-transition: all 0.6s ease-in-out;
  853. -moz-transition: all 0.6s ease-in-out;
  854. -o-transition: all 0.6s ease-in-out;
  855. -ms-transition: all 0.6s ease-in-out;
  856. transition: all 0.6s ease-in-out;
  857. }
  858.  
  859.  
  860.  
  861.  
  862. #thekey {
  863. position:fixed;
  864. color:#7c7470;
  865. text-shadow: 0px 0px 2px #fff;
  866. margin-top:175px;
  867. margin-left:55px;
  868. width:710px;
  869. padding:9px;
  870. letter-spacing:2px;
  871. word-spacing:5px; /*this defines the separation of each word of the links*/
  872. font-family: helvetica;
  873. font-size:12px;
  874. text-align:center;
  875. background:transparent;
  876. text-transform:uppercase;
  877. -webkit-transform: rotate(-90deg);
  878. -moz-transform: rotate(-90deg);
  879. -o-transform: rotate(-90deg);
  880. }
  881.  
  882.  
  883.  
  884.  
  885. /* JUMBLED LINKS */
  886.  
  887.  
  888.  
  889. .alinks {
  890. position:fixed;
  891. text-shadow: 0px 0px 0px #000;
  892. left:305px;
  893. top:360px;
  894. transform: rotate(60deg);
  895. text-align: right;
  896. line-height:20px;
  897. font-family: 'Josefin Sans', sans-serif;
  898. font-size: 25px;}
  899.  
  900.  
  901. .alinks a {
  902. padding:10px;
  903. color:#7f7f7f;
  904. margin-right:0px;
  905. -webkit-filter: blur(0px);
  906. -webkit-transition: 0.8s ease-in;
  907. -moz-transition: 1s ease-in;
  908. transition: 1s ease-in;
  909. }
  910.  
  911. .alinks a:hover {
  912. -webkit-filter: blur(1px);
  913. -webkit-transition: all 0.6s ease-in-out;
  914. -moz-transition: all 0.6s ease-in-out;
  915. -o-transition: all 0.6s ease-in-out;
  916. -ms-transition: all 0.6s ease-in-out;
  917. transition: all 0.6s ease-in-out;
  918. color: #7f7f7f;
  919. text-shadow: 7px 7px 3px #000000;
  920. }
  921.  
  922.  
  923.  
  924. .blinks {
  925. position:fixed;
  926. text-shadow: 0px 0px 11px #7C6868;
  927. left:600px;
  928. top:165px;
  929. transform: rotate(90deg);
  930. text-align: center;
  931. font-family: 'Audiowide', cursive;
  932. line-height:20px;
  933. font-size: 16px;}
  934.  
  935.  
  936. .blinks a {
  937. padding:10px;
  938. color:#7f7f7f;
  939. margin-right:0px;
  940. -webkit-filter: blur(0px);
  941. -webkit-transition: 0.8s ease-in;
  942. -moz-transition: 1s ease-in;
  943. transition: 1s ease-in;
  944. }
  945.  
  946. .blinks a:hover {
  947. -webkit-transition: all 0.6s ease-in-out;
  948. -moz-transition: all 0.6s ease-in-out;
  949. -o-transition: all 0.6s ease-in-out;
  950. -ms-transition: all 0.6s ease-in-out;
  951. transition: all 0.6s ease-in-out;
  952. color: #7f7f7f;
  953. text-shadow: 7px 7px 3px #000000;
  954. }
  955.  
  956.  
  957.  
  958.  
  959. .clinks {
  960. position:fixed;
  961. font-size:35px;
  962. text-decoration:none;
  963. transform: rotate(-30deg);
  964. -ms-transform: rotate(-30deg);
  965. -webkit-transform: rotate(-30deg);
  966. -o-transform: rotate(-30deg);
  967. -moz-transform: rotate(-30deg);
  968. margin-left:256px;
  969. margin-top:302px;
  970. }
  971.  
  972. .clinks a {
  973. text-shadow:0px 0px 7px #7f7f7f;
  974. text-decoration:none;
  975. color:#7f7f7f;
  976. -webkit-transition: all 0.5s ease-out;
  977. -moz-transition: all 0.5s ease-out;
  978. transition: all 0.5s ease-out;
  979. }
  980.  
  981. .clinks:hover {
  982. -webkit-filter:blur(1px);
  983. -webkit-transition: all 0.5s ease-out;
  984. -moz-transition: all 0.5s ease-out;
  985. transition: all 0.5s ease-out;
  986. transform: rotate(110deg);
  987. -ms-transform: rotate(110deg);
  988. -webkit-transform: rotate(110deg);
  989. -o-transform: rotate(110deg);
  990. -moz-transform: rotate(110deg);
  991. }
  992.  
  993.  
  994.  
  995. .dlinks {
  996. position:fixed;
  997. font-size:17px;
  998. text-decoration:none;
  999. transform: rotate(30deg);
  1000. -ms-transform: rotate(30deg);
  1001. -webkit-transform: rotate(30deg);
  1002. -o-transform: rotate(30deg);
  1003. -moz-transform: rotate(30deg);
  1004. margin-left:66px;
  1005. margin-top:510px;
  1006. }
  1007.  
  1008. .dlinks a {
  1009. text-shadow:0px 0px 7px #7f7f7f;
  1010. text-decoration:none;
  1011. color:#7f7f7f;
  1012. -webkit-transition: all 0.5s ease-out;
  1013. -moz-transition: all 0.5s ease-out;
  1014. transition: all 0.5s ease-out;
  1015. }
  1016.  
  1017. .dlinks:hover {
  1018. -webkit-filter:blur(1px);
  1019. -webkit-transition: all 0.5s ease-out;
  1020. -moz-transition: all 0.5s ease-out;
  1021. transition: all 0.5s ease-out;
  1022. transform: rotate(-60deg);
  1023. -ms-transform: rotate(-60deg);
  1024. -webkit-transform: rotate(-60deg);
  1025. -o-transform: rotate(-60deg);
  1026. -moz-transform: rotate(-60deg);
  1027. }
  1028.  
  1029.  
  1030.  
  1031. .elinks {
  1032. position:fixed;
  1033. font-size:22px;
  1034. text-decoration:none;
  1035. transform: rotate(-90deg);
  1036. -ms-transform: rotate(-90deg);
  1037. -webkit-transform: rotate(-90deg);
  1038. -o-transform: rotate(-90deg);
  1039. -moz-transform: rotate(-90deg);
  1040. margin-left:-45px;
  1041. margin-top:492px;
  1042. }
  1043.  
  1044. .elinks a {
  1045. text-shadow:0px 0px 7px #7f7f7f;
  1046. text-decoration:none;
  1047. color:#7f7f7f;
  1048. -webkit-transition: all 0.5s ease-out;
  1049. -moz-transition: all 0.5s ease-out;
  1050. transition: all 0.5s ease-out;
  1051. }
  1052.  
  1053. .elinks:hover {
  1054. -webkit-filter:blur(1px);
  1055. -webkit-transition: all 0.5s ease-out;
  1056. -moz-transition: all 0.5s ease-out;
  1057. transition: all 0.5s ease-out;
  1058. transform: rotate(70deg);
  1059. -ms-transform: rotate(70deg);
  1060. -webkit-transform: rotate(70deg);
  1061. -o-transform: rotate(70deg);
  1062. -moz-transform: rotate(70deg);
  1063. }
  1064.  
  1065.  
  1066.  
  1067.  
  1068.  
  1069. .flinks {
  1070. position:fixed;
  1071. font-size:17px;
  1072. text-decoration:none;
  1073. transform: rotate(10deg);
  1074. -ms-transform: rotate(10deg);
  1075. -webkit-transform: rotate(10deg);
  1076. -o-transform: rotate(10deg);
  1077. -moz-transform: rotate(10deg);
  1078. margin-left:70px;
  1079. margin-top:192px;
  1080. }
  1081.  
  1082. .flinks a {
  1083. text-shadow:0px 0px 7px #7f7f7f;
  1084. text-decoration:none;
  1085. color:#7f7f7f;
  1086. -webkit-transition: all 0.5s ease-out;
  1087. -moz-transition: all 0.5s ease-out;
  1088. transition: all 0.5s ease-out;
  1089. }
  1090.  
  1091. .flinks:hover {
  1092. -webkit-filter:blur(1px);
  1093. -webkit-transition: all 0.5s ease-out;
  1094. -moz-transition: all 0.5s ease-out;
  1095. transition: all 0.5s ease-out;
  1096. transform: rotate(-60deg);
  1097. -ms-transform: rotate(-60deg);
  1098. -webkit-transform: rotate(-60deg);
  1099. -o-transform: rotate(-60deg);
  1100. -moz-transform: rotate(-60deg);
  1101. }
  1102.  
  1103.  
  1104.  
  1105. .credit {
  1106. position:fixed;
  1107. text-shadow: 0px 0px 11px #7C6868;
  1108. right:15px;
  1109. bottom:15px;
  1110. transform: rotate(0deg);
  1111. font-family: 'Josefin Sans', sans-serif;
  1112. font-size: 17px; }
  1113.  
  1114.  
  1115. .credit a {
  1116. padding:10px;
  1117. color:#6e6e6e;
  1118. margin-right:0px;
  1119. -webkit-filter: blur(1px);
  1120. -webkit-transition: 0.8s ease-in;
  1121. -moz-transition: 1s ease-in;
  1122. transition: 1s ease-in;
  1123. }
  1124.  
  1125. .credit a:hover {
  1126. -webkit-transition: all 0.6s ease-in-out;
  1127. -moz-transition: all 0.6s ease-in-out;
  1128. -o-transition: all 0.6s ease-in-out;
  1129. -ms-transition: all 0.6s ease-in-out;
  1130. transition: all 0.6s ease-in-out;
  1131. color: #000000;
  1132. text-shadow: 7px 7px 3px #000000;
  1133. }
  1134.  
  1135.  
  1136.  
  1137.  
  1138. /* PAGINATION */
  1139.  
  1140.  
  1141.  
  1142.  
  1143. #pagination {
  1144. position:fixed;
  1145. font-family: 'Josefin Sans', sans-serif;
  1146. width:300px;
  1147. font-size:35px;
  1148. top:170px;
  1149. left:430px;
  1150. letter-spacing:3px;
  1151. text-align:center;
  1152. z-index:999999999999;
  1153. }
  1154.  
  1155. #pagination a {
  1156. text-transform:uppercase;
  1157. color:#b3b3b3;
  1158. -webkit-filter: blur(0px);
  1159. -webkit-transition: 0.8s ease-in;
  1160. -moz-transition: 1s ease-in;
  1161. transition: 1s ease-in;
  1162. z-index:999999999999;
  1163. }
  1164.  
  1165. #pagination a:hover {
  1166. color:#fff;
  1167. -webkit-filter: blur(1px);
  1168. -webkit-transition: 0.2s ease-in;
  1169. -moz-transition: 1s ease-in;
  1170. transition: 1s ease-in;
  1171. }
  1172.  
  1173.  
  1174.  
  1175.  
  1176. /* MISC */
  1177.  
  1178.  
  1179.  
  1180. .audio {
  1181. width:300px;
  1182. padding-bottom:10px;
  1183. background-color:{color:#0b0b0b};}
  1184.  
  1185. .albumart {
  1186. float:left;
  1187. padding:0px 10px 10px 0px;}
  1188.  
  1189. .albumart img {
  1190. width:65px;
  1191. height:65px;}
  1192.  
  1193. .playercontainer {
  1194. text-align:left;
  1195. padding:10px;
  1196. background-color:#0b0b0b;
  1197. width:300px;}
  1198.  
  1199. .audioinfo {
  1200. padding:10px;
  1201. color:#a1a0a0;}
  1202.  
  1203.  
  1204.  
  1205.  
  1206. /* QUESTIONS & ANSWERS DETAILS */
  1207.  
  1208.  
  1209. #asker {
  1210. font-family: 'Iceland', cursive;
  1211. text-align:center;
  1212. padding-top: 10px;
  1213. margin-left:0px;
  1214. text-transform:uppercase;
  1215. color: #91a3ac;
  1216. font-size:20px;
  1217. padding:5px;
  1218. letter-spacing:0px
  1219. text-shadow:0 0 2px #aeaeae;
  1220. }
  1221.  
  1222.  
  1223. #asker a{
  1224. font-family: 'Iceland', cursive;
  1225. text-transform:uppercase;
  1226. font-size:20px;
  1227. letter-spacing: 0px;
  1228. text-shadow: none;
  1229. color: #91a3ac;
  1230. text-shadow:0 0 2px #1a1a1a;
  1231. -webkit-filter: blur(0.5px);
  1232. }
  1233.  
  1234.  
  1235. #asker a:hover {
  1236. color: #656565;
  1237. letter-spacing: 2px;
  1238. text-shadow:0 0 2px #000;
  1239. -webkit-filter: blur(1px);
  1240. -webkit-transition:all .5s ease-in-out;
  1241. -moz-transition:all .5s ease-in-out;
  1242. transition:all .5s ease-in-out;
  1243. }
  1244.  
  1245.  
  1246.  
  1247. #ask {
  1248. border-left: double 3px #000;
  1249. border-top: double 3px #000;
  1250. border-right: double 3px #000;
  1251. border-bottom: double 3px #000;
  1252. padding:2px;
  1253. color:#e6e6e6;
  1254. text-shadow:1px 1px 0px #000,
  1255. 1px -1px 0px #000,
  1256. -1px -1px 0px #000,
  1257. -1px 1px 0px #000,
  1258. 0px 1px 0px #000,
  1259. 0px -1px 0px #000,
  1260. 1px 0px 0px #000,
  1261. -1px 0px 0px #000;
  1262. font-size:13px;
  1263. text-align:center;
  1264. padding-top: 5px;
  1265. margin-left:0px;
  1266. text-transform:auto;
  1267. letter-spacing:3px
  1268. margin-top:-10px;
  1269. padding:5px;
  1270. background: #000;
  1271. background: url("http://i.imgur.com/hIgaePv.gif");
  1272. background-repeat:repeat;
  1273. padding:2px;
  1274. color:#cacaca;
  1275. text-transform: uppercase;
  1276. border-bottom-left-radius: 0px;
  1277. border-top-right-radius: 0px;
  1278. padding:10px;
  1279. letter-spacing:2px;
  1280. border-bottom:solid 1px #1e1e1e;
  1281. border-top:solid 1px #1e1e1e;
  1282. }
  1283.  
  1284.  
  1285. .ans {
  1286. text-align:center;
  1287. padding:10px;
  1288.  
  1289. }
  1290.  
  1291.  
  1292.  
  1293. /* POST INFO DETAILS */
  1294.  
  1295.  
  1296. #info {
  1297. width:315px;
  1298. padding-top:4px;
  1299. padding-bottom:1px;
  1300. font-size:12px;
  1301. color:#adadab;
  1302. text-transform:uppercase;
  1303. letter-spacing:1px;
  1304. font-style:normal;
  1305. text-align:center;
  1306. padding:5px;
  1307. border-top:1px solid #1c1c1c;
  1308. -moz-transition-duration:0.2s;
  1309. -webkit-transition-duration:0.2s;
  1310. -o-transition-duration:0.2s;}
  1311.  
  1312.  
  1313. #info a {
  1314. font-family:'Jura', sans-serif;
  1315. font-size:10px;
  1316. color:#9cb4c0;
  1317. text-shadow: 0px 0px 3px #7c1f1f;
  1318. padding:5px;
  1319. font-style:normal;}
  1320.  
  1321.  
  1322. #info a:hover {
  1323. color:#eee;
  1324. -webkit-filter: blur(0px);
  1325. -moz-transition-duration:0.2s;
  1326. -webkit-transition-duration:0.2s;
  1327. -o-transition-duration:0.2s;}
  1328.  
  1329.  
  1330. #tags {
  1331. color:#9cb4c0;
  1332. margin-top:5px;
  1333. padding-left:15px;
  1334. text-align:right;
  1335. line-height:9px;
  1336. text-transform:uppercase;
  1337. font-size:9px;
  1338. padding-right:10px;}
  1339.  
  1340. #tags a {
  1341. font-family:'Jura', sans-serif;
  1342. color:#9cb4c0;}
  1343.  
  1344. #tags a:hover {
  1345. color:#eee;}
  1346.  
  1347.  
  1348.  
  1349. /* MISC 02. */
  1350.  
  1351.  
  1352.  
  1353. .note {
  1354. text-transform:uppercase;
  1355. font-style:normal;
  1356. letter-spacing:0px;
  1357. font-size: 10px;
  1358. text-align:left;
  1359. line-height:90%;
  1360. margin-left:-40px;}
  1361.  
  1362. .note li {
  1363. list-style-type:none;
  1364. border-bottom:0px solid {color:border};
  1365. padding:10px 25px 10px 25px;
  1366. text-align:left;
  1367. margin:0px;
  1368. -moz-transition-duration:0.5s;
  1369. -webkit-transition-duration:0.5s;
  1370. -o-transition-duration:0.5s;}
  1371.  
  1372. .note img.avatar {
  1373. margin-right: 10px;
  1374. width: 16px;
  1375. height: 16px;}
  1376.  
  1377.  
  1378.  
  1379.  
  1380. /* BASIC POP-UP DETAILS */
  1381.  
  1382.  
  1383.  
  1384. .popup_block{
  1385. display:none;
  1386. background:#000;
  1387. padding:14px;
  1388. border:0px solid #eee; /* if you want a solid white pop-up, delete this */
  1389. float:left;
  1390. height: 450px;
  1391. top:295px; left:588px;
  1392. position:fixed;
  1393. z-index: 99999;
  1394. -webkit-box-shadow: 0px 0px 0px #818081; /* delete for solid white */
  1395. -moz-box-shadow: 0px 0px 0px #818081; /* delete for solid white */
  1396. box-shadow: 0px 0px 0px #818081; /* delete for solid white */
  1397. }
  1398.  
  1399.  
  1400. *html #fade {position: absolute;}
  1401. *html .popup_block {position: absolute;}
  1402. #fade {
  1403. display:none;
  1404. position:fixed;
  1405. left:0px;
  1406. top:0px;
  1407. width:100%;
  1408. height:100%;
  1409. z-index:9999;
  1410. background:#000; /* change to #fff for solid white */
  1411. opacity:0; /* change to opacity:1; */
  1412. }
  1413.  
  1414.  
  1415.  
  1416. .popupnavlinks {
  1417. padding-top:5px;
  1418. text-align:center; }
  1419.  
  1420.  
  1421. .popupnavlinks a {
  1422. display:inline-block;
  1423. width:90px; height:4px;
  1424. margin:2px; padding:3px 6px 10px;
  1425. text-align:center;
  1426. background-image: url('');
  1427. background:#0d0d0d;
  1428. background-repeat:repeat;
  1429. background-attachment:fixed;
  1430. border-left: double 3px #000;
  1431. border-top: double 3px #000;
  1432. border-right: double 3px #000;
  1433. border-bottom: double 3px #000;
  1434. color:#e6e6e6;
  1435. font-size:9px;
  1436. font-family:'Jura', sans-serif;
  1437. text-shadow:1px 1px 0px #000,
  1438. 1px -1px 0px #000,
  1439. -1px -1px 0px #000,
  1440. -1px 1px 0px #000,
  1441. 0px 1px 0px #000,
  1442. 0px -1px 0px #000,
  1443. 1px 0px 0px #000,
  1444. -1px 0px 0px #000;
  1445. display: inline-block;
  1446. cursor: pointer;
  1447. }
  1448.  
  1449.  
  1450.  
  1451. .popupnavlinks a:hover {
  1452. display:inline-block;
  1453. letter-spacing:2px; }
  1454.  
  1455.  
  1456.  
  1457. .popupclose {
  1458. float:right; top:0px; right:0px;
  1459. margin-top:-10px; margin-right:-10px;
  1460. font-family:'Scada', sans serif;
  1461. font-size:10px;
  1462. font-weight:bold }
  1463.  
  1464. .popupclose a {
  1465. color:#aaa }
  1466.  
  1467.  
  1468.  
  1469. /* TOOLTIP DETAILS */
  1470.  
  1471.  
  1472.  
  1473. #s-m-t-tooltip{
  1474. max-width:400px;
  1475. margin:15px;
  1476. padding:2px 8px;
  1477. background: #0b0b0b;
  1478. background-image:url('http://i.imgur.com/hIgaePv.gif');
  1479. background-repeat:repeat;
  1480. background-attachment:fixed;
  1481. border-left: double 3px #000;
  1482. border-top: double 3px #000;
  1483. border-right: double 3px #000;
  1484. border-bottom: double 3px #000;
  1485. color:#e6e6e6;
  1486. text-shadow:1px 1px 0px #000,
  1487. 1px -1px 0px #000,
  1488. -1px -1px 0px #000,
  1489. -1px 1px 0px #000,
  1490. 0px 1px 0px #000,
  1491. 0px -1px 0px #000,
  1492. 1px 0px 0px #000,
  1493. -1px 0px 0px #000;
  1494. z-index:99999999999999999999;
  1495. font-size:9px;
  1496. letter-spacing:2px;
  1497. font-style:bold;
  1498. letter-spacing:2px;
  1499. font-family: 'Jura', sans-serif;
  1500. text-transform:uppercase;
  1501. box-shadow:1px 1px 3px rgba(0,0,0,.1);}
  1502.  
  1503.  
  1504.  
  1505. </style>
  1506.  
  1507.  
  1508.  
  1509.  
  1510. </head>
  1511.  
  1512. <body>
  1513.  
  1514.  
  1515.  
  1516. <!--
  1517. ♛ The part below is basically the 'skeleton' of the theme, if that makes sense? I wouldn't recommend editing these parts ( EXCEPT THE CUSTOM LINKS AND POP UPS !!! ) unless you know what you're doing. If you spot a glitch in this part of the code, please let me know.
  1518. -->
  1519.  
  1520.  
  1521. <div id="content">
  1522.  
  1523. <div id="sidebar">
  1524.  
  1525. <img src="{image:Sidebar}" />
  1526.  
  1527. <div id="description">{description}</div>
  1528.  
  1529. </div>
  1530.  
  1531. <div id="pagination">
  1532. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">«</a> {/block:PreviousPage}{block:NextPage} <a href="{NextPage}">»</a>{/block:NextPage}{/block:Pagination}
  1533. </div>
  1534.  
  1535.  
  1536. <!--
  1537. ♛ CUSTOM LINKS
  1538. -->
  1539.  
  1540.  
  1541.  
  1542. <div id="links">
  1543.  
  1544.  
  1545. <div class="blinks">
  1546. <a href="/" title="i've outrun Imperial starships.">
  1547. YOU'VE <strong><em>NEVER HEARD</em></strong> OF THE<br> <strong>M I L L E N N I U M F A L C O N</strong>
  1548.  
  1549. </a>
  1550. </div>
  1551.  
  1552.  
  1553. <div class="alinks">
  1554. <a href="#?w=335" rel="box1" class="poplight" title="holo.">
  1555. </a>
  1556. </div>
  1557.  
  1558.  
  1559. <div class="clinks">
  1560. <a href="#?w=335" rel="box2" class="poplight" title="laws."> ● </a>
  1561. </div>
  1562.  
  1563.  
  1564. <div class="dlinks">
  1565. <a href="#?w=335" rel="box3" class="poplight" title="verses & aus."> ● </a>
  1566. </div>
  1567.  
  1568.  
  1569. <div class="elinks">
  1570. <a href="#?w=335" rel="box4" class="poplight" title="medical report."> ● </a>
  1571. </div>
  1572.  
  1573.  
  1574. <div class="flinks">
  1575. <a href="#?w=335" rel="box5" class="poplight" title="tags."> ● </a>
  1576. </div>
  1577.  
  1578.  
  1579. <div class="credit">
  1580. <a href="http://agirlingrey.tumblr.com/" title="theme by agirlingrey.">A.</a>
  1581. </div>
  1582.  
  1583.  
  1584. </div>
  1585.  
  1586.  
  1587. <!--
  1588. ♛ CUSTOM LINKS ENDS
  1589. -->
  1590.  
  1591.  
  1592.  
  1593. <div id="container">
  1594.  
  1595. <div id="content"><div id="posts">
  1596. {block:Posts}
  1597.  
  1598.  
  1599. {block:Quote}<quotetext>❛❛{Quote}</quotetext>&nbsp; <br><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; — {Source} {/block:Quote}
  1600. {block:Title}<h1>{Title}&nbsp;</h1>{/block:Title}
  1601. {block:Text}{Body}{/block:Text}
  1602.  
  1603. {block:Link}<a href="{URL}" class="link" {Target}><h1>{Name}&nbsp;</h1></a>
  1604.  
  1605. {block:Description}<P>{Description}</p>{/block:Description}{/block:Link}
  1606.  
  1607. {block:Photo}<center>{LinkOpenTag}<img src="{PhotoURL-HighRes}" width="360px">{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1608. {block:Photoset}<center>{Photoset}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1609.  
  1610. {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}
  1611.  
  1612. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1613.  
  1614.  
  1615. {block:Answer}<div id="asker" style="margin-left:-5px;width:325px; color:#91a3ac; text-shadow:0 0 2px #000; ">{Asker} <div id="ask"> <p><p><p><p><p>{Question}</div></span></div><font face="'Jura', sans-serif"><span style="font-family:'Jura', sans-serif;font-size:14px; marging-left:0px;">{Answer}</span>{/block:Answer}
  1616.  
  1617.  
  1618. {block:Audio}<div class="audio">
  1619.  
  1620. {block:AlbumArt}
  1621. {/block:AlbumArt}
  1622.  
  1623.  
  1624. <div class="audioinfo">{block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}{block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  1625. {/block:ExternalAudio}<b>Played:</b> {PlayCount} times</div>
  1626. <br><div class="playercontainer">{AudioPlayerBlack}</div></div>
  1627. {block:Caption}{Caption}{/block:Caption}<br>{/block:Audio}
  1628.  
  1629.  
  1630. <!--
  1631. ♛ INFO AND SYMBOLS
  1632. -->
  1633.  
  1634. <div id="info">
  1635. {block:Date}
  1636. <a href="{Permalink}" title="{ShortMonth} {DayOfMonthWithZero} - {TimeAgo}" style="position:absolute; font-size:12px; margin-left:-90px; margin-top:-5px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;"> ● </a> {/block:Date}
  1637.  
  1638. {block:RebloggedFrom}
  1639. <a title="via. {ReblogParentName}" href="{ReblogParentURL}" style="position:absolute; font-size:12px; margin-left:-55px; margin-top:-5px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;"> ● </a>
  1640. {/block:RebloggedFrom}
  1641.  
  1642. {block:ContentSource}
  1643. <a title="src. {SourceTitle}" href="{SourceURL}" style="position:absolute; font-size:12px; margin-left:-20px; margin-top:-5px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;"> × </a>
  1644. {/block:ContentSource}
  1645.  
  1646. {block:NoteCount}
  1647. <a href="{Permalink}" title="{NoteCount} notes" style="position:absolute; font-size:12px; margin-left:15px; margin-top:-5px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;"> ○ </a>
  1648. {/block:NoteCount}
  1649.  
  1650. <a href="{ReblogURL}"target="_blank" title="reblog" style="position:absolute; font-size:12px; margin-left:50px; margin-top:-5px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;"> ○ </a></br>
  1651. {/block:RebloggedFrom}
  1652.  
  1653.  
  1654. <br>
  1655.  
  1656.  
  1657. <!--
  1658. ♛ INFO AND SYMBOLS ENDS
  1659. -->
  1660.  
  1661.  
  1662. <div id="tags" style="margin-bottom:50px">{block:HasTags}{block:Tags} → <a href="{TagURL}" title="{Tag}">{Tag}</a>{/block:Tags}{/block:HasTags}</div></div>
  1663.  
  1664. <div class="note">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  1665. {/block:Posts}
  1666. </div>
  1667. </div>
  1668. </div>
  1669.  
  1670.  
  1671.  
  1672. </body>
  1673.  
  1674.  
  1675.  
  1676. <!--
  1677. ♛ POP UP PAGES !!!
  1678. -->
  1679.  
  1680.  
  1681.  
  1682. <div id="box1" class="popup_block">
  1683.  
  1684. <h3>
  1685. yes, your worship?
  1686. </h3>
  1687.  
  1688. <center>
  1689.  
  1690. "I still get a funny feeling about that old man and the kid. I'm not sure what it is about them, but they're trouble...”
  1691. <br>
  1692.  
  1693. <p><iframe frameborder="0" height="250" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/stillsolo.tumblr.com" width="100%"></iframe></p>
  1694.  
  1695. </div>
  1696.  
  1697. </center>
  1698.  
  1699.  
  1700.  
  1701. <div id="box2" class="popup_block">
  1702.  
  1703. <div style="width:auto;height:445px;overflow:scroll;padding:5px;">
  1704.  
  1705.  
  1706. <h3>F A Q | GUIDELINES & RULES</h3>
  1707.  
  1708. written by <a href="www.skyzolo.com">skyzolo</a> | corelliansea (A03)
  1709.  
  1710. <br>
  1711. <h3>.000. important infrormation</h3>
  1712. <b>→ IF YOU FAIL TO TAG HAN’S TFA SCENE ; I’LL UNFOLLOW IMMEDIATELY</b>
  1713. <br>(i.e: Han tw, Han TFA tw, death, death scene, etc. ANYTHING ).
  1714. <br>I have diagnosed anxiety and severe panic disorder. That scene is a trigger. I am not medicated, it counteracts with my heart medication. When I fall into a panic attack, nothing can appease me until it’s over. I’m sorry, but there are no excuses for this one. I simply won’t risk my mental health over negligent posting.
  1715. <br><br>
  1716. <b>→ ENGLISH IS NOT MY FIRST LANGUAGE.</b> I’m Chinese. I speak Cantonese. I learned English from the beginning. Shit might fly over my head. I’ll ask questions; I’ll make sure about stuff; I may not always understand you. If you talk to me with curt replies ooc, I’ll assume you don’t want to talk/are not interested in talking/plotting etc. I sometimes take English words very literally. I have good common sense, so I try to figure shit out on my own, but you try to speak a language that is not your native tongue.
  1717. <br><br>
  1718. <b>→ I’M VISUALLY IMPAIRED:</b> [Visual Impairment is a reduction in vision that cannot be corrected by prescription glasses, contact lenses, medicine or even surgery. ]
  1719. I use ᴛᴛs/sᴛᴛ programs to help me write since I can’t always look at a digital screen. I suffer from a CNSD ( Central nervous system disease + ADD + a lot of other shit. ) I’m slow and I won’t reply to everything on time. It brings me pain. I don’t want to end up blind at 19 years old because my anxiety forces me to reply to your thread because you’re just impatient.
  1720. My Skype is open to mutuals. I <i>PREFER</i> using it. <i>SKYPE ID:</i> riam-ji
  1721.  
  1722. <br><br>
  1723. <h3>.001. ROLEPLAYING.</h3>
  1724. <b>→ ENGLISH IS HARD. IT’S RARE, BUT I MAY SWITCH TENSES SOMETIMES.</b> If I take very long on a thread, it’s probably because of a tense issue.
  1725. <br><br>
  1726. <b>→ I USUALLY CAP MEME CALLS.</b> If I don’t have the muse for it, I won’t make a starter. Do give me time to make it, however, I am slow. If you feel like I <i>ALWAYS</i> overlook you, please, <i>PLEASE</i> tell me!
  1727. <br><br>
  1728. <b>→ I AM A NOVELLA WRITER AND I ENJOY WELL THOUGHT OUT THREADS.</b> I try to keep my replies under 1k but that’s not always the case. There’ll be times I surpass that. You don’t have to match my length; I don’t care about length, I care about effort. Your thread is important to me, I can always do shorter replies if asked. If I repeatedly get 1-5 sentences or 1-2 smol para replies back, I will likely lose my muse quickly for that thread. If that doesn’t match up with your taste, we can drop the rp or tell me to clip replies. No hard feelings, I’d much rather know!
  1729. <br><br>
  1730. <b>→ I REPLY WITH ICONS AND ICON GIFS.</b> 95% are mine and the remaining 5% aren’t. I’m slowly making them. Please don’t steal any. In relation to that, <i>YOU DON’T NEED ICONS TO RP WITH ME</i>. My formatting is minimal. I usually try to match who I rp with. If you have an impairment like me, let me know what I can do for you.
  1731. <br><br>
  1732. <b>→ I WILL ALWAYS BE DISINCLINED TO WRITE TFA HAN.</b> I feel <i>UNCOMFORTABLE</i> if I do. If you have a muse from TFA, I’m happy doing an AU. I’m sorry to all those who I have turned down. However, Han will accept <i>ALL</i> the Bens/Kylos because he can never stop loving his son.
  1733. <br><br>
  1734. <b>→ Don’t godmod.</b> You don’t control Han, so <i>DON’T</i> control Han.
  1735. <br><br>
  1736. <h3>.002. REPLIES.</h3>
  1737. <b>→ I DON’T DROP THREADS WITHOUT SAYING SOMETHING.</b> Unless I tell you that I’ve dropped it; I haven’t. I might’ve lost it, though. If you drop a thread, please let me know so I don’t fret. Thank you!
  1738. <br><br>
  1739. <b>→ DON’T DEMAND REPLIES</b> or hint at them by talking to me ooc constantly. Han is simply finicky.
  1740. I never favor certain people, Han leans toward whoever has his attention. I also spot passive-aggressive behavior from 50 miles away, please don’t be possessive of me.
  1741. You don’t own me. D o n ’ t . I love chatting ooc—this’s just happened a lot?
  1742. <br><br>
  1743. <h3>.003. FOLLOWING + MAINS + EXCLUSIVES.</h3>
  1744. <b>→ I HAVE 0 TOLERANCE FOR BULLYING OR PASSIVE-AGGRESSIVE BEHAVIOR.</b> I’ll unfollow or you’ll be blocked should you ever push me far enough.
  1745. <br><br>
  1746. <b>→ IF I DO UNFOLLOW</b>, it might be because we <i>NEVER</i> interacted or you’ve done something to annoy me. I like to see content, not constant reblogs. I have unfollowed by <i>ACCIDENT</i> plenty of times, don’t be afraid to question me! In regard to new follows, I usually wait a bit before following back if I’m interested.
  1747. <br><br>
  1748. <b>→ I DON’T CARE ABOUT EXCLUSIVITY.</b> I’d love to be your exclusive, just ask! Though, I won’t take up an exclusive myself. I don’t reply faster or slower for Mains. Han is picky with even those he loves.
  1749. <br><br>
  1750. <h3>MAINS.</h3>
  1751. @ofcloudcities as Lando C.
  1752. @thesonofsolo + @withconflict + @ifeelitagain as Kylo/Ben S.
  1753. @requitxl as Boba F.
  1754. @vilibertatis as Padme A.
  1755. @master-jedi-shaak-ti as Shaak ti.
  1756. <br><br>
  1757. More tba. I haven’t made a post about it yet lol.
  1758. <br><br>
  1759. <h3>.004. SHIPPING + RELATIONSHIPS.</h3>
  1760. <b>→ I LOVE ROMANCE; I AM A ROMANCE WRITER.</b> I love shipping and I have <i>ABSOLUTELY 0 SHAME IN THAT</i>. Only, don’t force/assume ships/history. (Memes / estab. threads don’t count) I don’t care about canon/legends. Han will not hesitate to give your muse a reality check, no matter the verse.
  1761. <br><br>
  1762. <b>→ WHEN IT COMES TO LEIAS, IT’S NOT YOU ; IT’S ME.</b> I’ll still write with you, Han just won’t ALREADY be in love with Leia. Their chemistry to my adolescent understanding was an enigma. While I am at a more across-the-board age to see the generation gap in the portrayals of romance; it’s forever ingrained. I’m open to the idea of plotting and creating a slow burn thread (I DO have HanLeia threads). <i>I REFUSE TO JUMP INTO THE PAIRING</i>. Sorry to those I have turned down.
  1763. <br><br>
  1764. <h3>.005. NSFW + TAGGING.</h3>
  1765. <b>→ JUST TAG YOUR SHIT.</b> Christ. Ask me, and I will. But I mostly write here because I’m an rp blog so?
  1766. <br><br>
  1767. <b>→ I DON’T WRITE SMUT WITH MINORS. I AM OF AGE. I’LL ASK.</b> Also, if our writing styles aren’t compatible for smut, I’ll let you know. Vaguesmut is difficult for me to write. I don’t know why but I know i struggle with the concept of leaving it entirely vague/blacking out. I don’t write super explicit content, I just write what the hell is happening at the moment.
  1768. <br><br>
  1769. <b>→ SMUT THREADS WILL BE TAGGED NSFW.</b> I personally hate readmores after discovering tumblr’s stupid formatting issues. I use small-sub font so it’s not ‘in your face’ on the dash. Let me know if that’s a problem.
  1770. <br><br>
  1771. <b>→ HAN IS PANSEXUAL.</b> I HARDCORE SHIP HAN WITH CHEMISTRY. While Han/Luke is my otp, I would rather our muses interact first.
  1772. <br><br>
  1773. <h3>.005. THE WRITER.</h3>
  1774. <b>→</b> My name is Vincent. You may call me Vin or Vince. Whatever you want. He/Him. I won’t get mad if you get my pronouns wrong. I’m still a dude at the end of the day so it doesn’t matter.
  1775. <br><br>
  1776. <b>→</b> I’m fairly new to the RP scene. Active since 2016oct. I’m just a nerdy teenager, nothing special. I do make ooc posts. After some time I delete them so my blog looks clean. I archive everything on another blog.
  1777. <br><br>
  1778. <b>→</b> I am not transfemale or transmale. (whatever the current lingo is. it keeps changing) I am not trans-anything/bi-gendered/androgynous. I am not on T or E. I won’t answer anything about it on anon, don’t bother, just ask.
  1779. <br><br>
  1780. <b>→</b> I was told by my followers from other blogs that they’ve subscribed to Han to read threads. I really appreciate your support but please leave my personal blogs out of this rp blog. As in, don’t tell me to go back.
  1781.  
  1782. </div>
  1783. </div>
  1784.  
  1785.  
  1786.  
  1787.  
  1788. <div id="box3" class="popup_block">
  1789.  
  1790. <h3>verses</h3>
  1791.  
  1792. <ul id="tabs">
  1793. <li class="active">CANON.</li>
  1794. &nbsp;
  1795. <li>DIVERGENT.</li>
  1796. &nbsp;
  1797. <li>MODERN.</li>
  1798. </ul>
  1799.  
  1800. <div style="width:auto;height:270px;overflow:scroll;padding:5px;">
  1801.  
  1802.  
  1803.  
  1804. <ul id="tab">
  1805. <li class="active">
  1806.  
  1807.  
  1808. <img src="http://68.media.tumblr.com/8fa2723b98c15f74405edec160dfad88/tumblr_inline_omyzvb2IWE1rt66pl_75sq.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1809. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">CANON.</a></big>
  1810.  
  1811. <br><br>
  1812.  
  1813. These verses take place before 'A New Hope' and after 'Return of the Jedi'. There really isnt a lot to say due to the fact that they will follow the movies. However there might be slight canon divergence. Below are the verse tag names & ages for Han in each movie verse.
  1814. <br><br>
  1815. v;┋ᵁᴺᵀᴵᴸ ᵀᴴᴱ ᴺᴱᵂ ᴴᴼᴾᴱ
  1816. <br><b>AGE:</b> ?? - 29
  1817. <br>Set before A New Hope.
  1818. <br><br>
  1819. v;┋ᴬ ᴺᴱᵂ ᴴᴼᴾᴱ
  1820. <br><b>AGE:</b> 29
  1821. <br> Set during A New Hope.
  1822. <br><br>
  1823. v;┋ᴇᴍᴘɪʀᴇ sᴛʀɪᴋᴇs ʙᴀᴄᴋ
  1824. <br><b>AGE:</b> 29 - 32
  1825. <br> Set during The Empire Strikes Back
  1826. <br><br>
  1827. ᴠ;┋ᵀᴴᴱ ᴱᴾᴵᴸᴼᴳᵁᴱ
  1828. <br><b>AGE:</b> 32 - ??
  1829. <br> Set after Return of The Jedi
  1830. <br><br>
  1831. ᴠ;┋ʙʀᴇᴀᴄʜɪɴɢ ᴍᴀᴄʀᴏᴄᴏsᴍs
  1832. <br><b>AGE:</b> ?? - ??
  1833. <br> AU in which the 21st century collides with that of Star Wars. Star wars themes are kept such as interplanetary travel, alien life forms, and technology.
  1834. <br><br>
  1835. v; ┋ nexus( AU based on nexus )
  1836. <br><b>AGE:</b> 26 - ??
  1837. <br><br> AU in which, former Captain, Han Solo, resigns from The Alliance and retires from military life altogether. After moving to Coruscant in hopes of finding a new start that DOESN’T include smuggling OR putting his life in danger, Han finds himself accepting the position of Chief for Coruscant’s Police Division. With more than half of the city’s grid under his control, he’s really kicking back these days …
  1838. <br><br>
  1839. ᴠ;┋ʀᴇᴀᴅʏ ‣ sᴇᴛ ‣ ( ᵃᶜᵗᶦᵒⁿ !! ) ( AU based off Ready? Set! Action!! ( currently removed off ao3 )
  1840. <br><b>AGE:</b> 24-29
  1841. <br> AU in which Han Solo is a baker at SOLO’S, a popular kaffin and cake shop his eldest sister owns. Located in the heart of Coruscant, SOLO’S serves its fair share of customers every day. When tricked by his sister, Han finds himself on the set of Kayde, a wildly popular, teenage holodrama
  1842. <br><br>
  1843. v; ┋ ᴅᴜᴏᴠʟɪʟ ғʀᴀʜᴏ || ᴛʜᴇ ᴛᴡɪɴ ʙʀᴏᴛʜᴇʀs ( Twinverse )
  1844. <br><b>AGE:</b> 20
  1845. <br> AU in which Han Solo, born and raised by his sisters on the planet of Corellia, travels to Coruscant to attend University. After very careful selection, Han decides his name in Galactic Basic: Henry (Indiana) Jones Solo, abandoning his Corellian name for a new start in the bustling metropolis. Everything is going fairly well on his first day of school, that is until he meets a literal carbon copy of himself, who even has the same name as him!
  1846. <br><br>
  1847. v;┋ᴅᴜᴏᴠʟɪʟ ғʀᴀʜᴏ [ᵗʷᶦⁿ ᵇʳᵒᵗʰᵉʳˢ]
  1848. <br><b>AGE:</b> ???
  1849.  
  1850. <br><br>V;┋ᵃᵈᵐᶦˢᵗ ᵗʰᶦˢ ᵗʷᶦˡᶦᵍʰᵗ ᵃⁿᵈ ᵗʰᵉ ⁿᵉˣᵗ
  1851. <br><b>AGE:</b> ?? - ??
  1852. <br><br>
  1853. <br>( ² ᵉᵍᵍʰᵉᵃᵈˢ ⁺ ᵃ ᵇᵃᵇʸ )║ sᴛᴇᴘ ᴏɴᴇ: ғɪɴᴅ ᴀ ʙᴀʙʏ
  1854. <br>( ² ᵉᵍᵍʰᵉᵃᵈˢ ᵃⁿᵈ ᵃ ᵇᵃᵇʸ ) ║ sᴛᴇᴘ ᴛʜʀᴇᴇ: ʀᴀɪsᴇ ᴛʜᴇ ʙᴀʙʏ ( DOUBLE MUSE THREAD! )
  1855. <br><b>AGE:</b> 29 -
  1856. <br> AU in which Han Solo adopts a child with Luke Skywalker.
  1857.  
  1858.  
  1859. </li>
  1860. <li>
  1861.  
  1862.  
  1863.  
  1864. <img src="http://68.media.tumblr.com/6230914ca4ea8b2a5c8dfff1ab47d21b/tumblr_inline_omtwz6ae9G1rt66pl_100.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1865. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">CANON DIVERGENT.</a></big>
  1866.  
  1867. <br><br>
  1868.  
  1869. A lot of these vesres have mixes of the Star Wars, but as the title points out, it diverges slightly. Feel free to ask more questions about these verses as needed.
  1870. <br><br>
  1871.  
  1872. v; ┋ ᴇxᴏᴅᴜs | ᴀʀ'ᴛᴀɴʜᴏ ᴀɪ ᴀʜʟ'ᴛʀᴏɴᴏ || ʜᴇɪʀ ᴛᴏ ᴛʜᴇ ᴛʜʀᴏɴᴇ
  1873. <br><b>AGE RANGE:</b> Teen – 29 (Prince)
  1874. <br><b>AGE RANGE:</b> 29 - ?? (King)
  1875. <br><b>VERSE INTRODUCTION:</b>
  1876. <br> After successfully reforming Corellia’s Monarch Line, Han Solo, newly crowned prince, finds himself at a loss. Han has lived a majority of his life getting into trouble, smuggling spice, and frantically running away from glaring responsibilities. Henceforth, Han has no idea how to even act like a prince, much less be one.
  1877. <br><br>
  1878. <br><b>VERSE HISTORY:</b>
  1879. <br>
  1880. <br> After catching word of Corellia’s incredibly shaky, democratic reformation, The Empire, earlier established by Anakin Skywalker (Vader), attempted to seize the planet post haste. As expected, Corellia’s harsh recoil to the first incursion was profound. Vader did not relent. Accordingly, the wars dragged on. When Kor Vella, the final city left standing, continued to rise again after every calamitous defeat, Vader’s patience had reached an end. For the sole purpose of breaking morale, the planet’s innocents were then slaughtered, drastically cutting the population of 16.5 billion to less than half. As all hope appeared squandered, the seemingly inexorable conquest for Corellia came to an abrupt halt. Supposedly, by the hand of Luke Skywalker, the Prince of The Empire who was wildly renowned for his beliefs against his father’s ambitions.
  1881. <br>
  1882. <br> In the end, after two years of devastating destruction, The Empire released an official statement; Corellia was now worthless, as the planet’s resources had been drained by its people to defend against the Imperial appropriation.
  1883. <br>
  1884. <br>With hardly anything remaining in the vestiges of war and fear still crackling cold in their hearts, Corellia’s people began to search for their once proud leaders to rule anew.
  1885. <br>
  1886. <br><b>MORE INFORMATION ON THIS AU THAT FOLLOWS THE EU:</b>
  1887. <br> The first known member of the house was Jonash e Solo, the Corellian Prince-Admiral who ended the Seventeenth Alsakan Conflict. The next known member was Berethron e Solo, who abolished the autocratic power of his own monarchy of the Corellian Empire in 312 BBY through the introduction of democratic reforms. The House of Solo was a Corellian family that could trace its descent to Prince-Admiral Jonash e Solo.
  1888. <br>
  1889. <br> Berethron e Solo ruled the Corellian Empire during the Golden Age of the Old Republic and introduced democratic reforms that ended the era of all monarchy in the Corellian system. After Berethron, the Solo line fell into obscurity and infamy, but some evidence suggests that famous founding hero of the New Republic Han Solo belonged to the House.
  1890. <br><br><br>
  1891. v; ┋ imperial ( part of @tatooinejedi’s AU verse | ANH Era )
  1892. <br><b>AGE:</b> 29 - ??
  1893. <br> AU in which Han Solo is called to the Emperor’s Palace by Luke Skywalker, The Empire’s Prince, in hopes of starting a relationship.
  1894. <br><br><br>
  1895. V; ┋ EXTENDING REALITIES
  1896. <br><b>AGE:</b> Young teen – 33
  1897. <br> An extremely flexible canon verse, starting from the beginning of the prequel era (Basically, his birth) to the end of the original trilogy. It will not extend further than that. This verse is mostly used when nothing makes sense and I can’t fit Han anywhere else.
  1898.  
  1899.  
  1900.  
  1901. </li>
  1902. <li>
  1903.  
  1904.  
  1905. <img src="http://68.media.tumblr.com/3ce2fd502daa61f73079a5b43a50ffc1/tumblr_inline_omzbtqgGnw1rt66pl_75sq.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1906. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">MODERN.</a></big>
  1907.  
  1908. <br><br>
  1909. Han Solo living the life of a normal , everyday Jo in a modern , non-starwars setting.
  1910. <br><br>
  1911. V; ┋ MODERN
  1912. <br><b>AGE:</b> 26 - ??
  1913. <br> A flexible default modern verse where Han Solo leads the life of a 21st Century, Indiana Jones. He is a professor at Alliance University.
  1914. <br><br>
  1915. V; ┋ MODERN FAMILY
  1916. <br><b>AGE:</b> 39 - ??
  1917. <br> AU in which Han Solo is a college professor teaching history as well as a single father. With his four identical sons, Kylo, Ben, Matt and Ren, he surely has his hands full, yet manages to make his great archeological discoveries in the meantime.
  1918.  
  1919.  
  1920. </li>
  1921. </ul>
  1922.  
  1923.  
  1924. </div>
  1925. </div>
  1926.  
  1927.  
  1928.  
  1929. <div id="box4" class="popup_block">
  1930.  
  1931. <div style="width:auto;height:350px;overflow:scroll;padding:5px;">
  1932.  
  1933. <center>
  1934.  
  1935. <span style="line-height:5px">
  1936.  
  1937. Keep your distance, though, Chewie. <br>But don't look like you're tryin' t'keep your distance. ... <br>— I dunno. ... <i>Fly casual</i>.
  1938.  
  1939. <br><br>
  1940.  
  1941. </center>
  1942.  
  1943. <h3>.captain</h3>
  1944.  
  1945. <b>Name:</b> Han Solo | Han Jonash e Solo
  1946. <BR><b>Age:</b> 29
  1947. <BR><b>Gender:</b> Male
  1948. <BR><b>sexuality:</b> Pansexual
  1949. <BR><b>height:</b> 6ft 1in | 185cm
  1950. <BR><b>weight:</b> 165 - 175 lbs | 75 - 80 kg
  1951. <BR><b>hair color:</b> Chestnut Brown
  1952. <BR><b>eyecolor:</b> Hazel
  1953.  
  1954. <br><br>
  1955. <h3>.personality traits</h3>
  1956. <b>positive:</b> loyal , incisive , witty , insouciant
  1957. <BR><b>neutral</b> observant , charming , noncommittal , capricious
  1958. <BR><b>negative</b> craven , impulsive , indecsive , cynical
  1959.  
  1960. <br><br>
  1961. <h3>.MISC</h3>
  1962. <B>MENTAL disorders:</B> PTSD , childhood abandonment + attachment issues , slight insecurity
  1963. <BR><b>scars:</b> chin , as well as various from battle
  1964. <BR><b>health issues:</b> migraines and severe sensitivity to light when stressed due to carbon freeze
  1965. <BR><b>sin:</b> ENVY
  1966. <b>element:</b> air
  1967.  
  1968. <br><br>
  1969.  
  1970. <h3>more info</h3>
  1971. <b>nationality:</b> Corellian
  1972. <BR><b>relgion:</b> Agonostic
  1973. <BR><b>spoken languages:</b> Corellian , Galactic Basic , Shyriiwook , Trader's Argot , Huttese , Selonian , Rodese , Illodian
  1974. <BR><b>occupation:</b> Smuggler, General
  1975. <BR><b>education:</b> Standard Corellian eduction , later graduated as an Imperial Lieutenant
  1976. <BR><b>family ties:</b> Elka Solo , Astri Solo
  1977. <BR><b>romantic connections:</b> Luke Skywalker. Leia Organa.
  1978.  
  1979. </div>
  1980. </div>
  1981.  
  1982.  
  1983.  
  1984. <div id="box5" class="popup_block">
  1985.  
  1986. <div style="width:auto;height:350px;overflow:scroll;padding:5px;">
  1987.  
  1988. <center>
  1989.  
  1990. <h3>NAVIGATION</h3>
  1991.  
  1992.  
  1993. <div class="popupnavlinks">
  1994.  
  1995. <a href="/tagged/whatever">LINK</a>
  1996. <a href="/tagged/whatever">LINK</a>
  1997. <br>
  1998. <a href="/tagged/whatever">LINK</a>
  1999. <a href="/tagged/whatever">LINK</a>
  2000. <br>
  2001. <a href="/tagged/whatever">LINK</a>
  2002. <a href="/tagged/whatever">LINK</a>
  2003. <br>
  2004. <a href="/tagged/whatever">LINK</a>
  2005. <a href="/tagged/whatever">LINK</a>
  2006. <br>
  2007. <a href="/tagged/whatever">LINK</a>
  2008. <a href="/tagged/whatever">LINK</a>
  2009. <br>
  2010. <a href="/tagged/whatever">LINK</a>
  2011. <a href="/tagged/whatever">LINK</a>
  2012. <br>
  2013. <a href="/tagged/whatever">LINK</a>
  2014. <a href="/tagged/whatever">LINK</a>
  2015.  
  2016.  
  2017. <br><br><br>
  2018.  
  2019.  
  2020. </div>
  2021. </div>
  2022. </div>
  2023.  
  2024.  
  2025. <!--
  2026. ♛ CUSTOM SIDEBAR TEXT
  2027. -->
  2028.  
  2029.  
  2030.  
  2031. <div id="bite">
  2032. <div id="thekey"></div>
  2033. <div class="death">
  2034. <div id="actualnews">
  2035.  
  2036. <center>
  2037.  
  2038. <div style="width:auto;height:280px;overflow:scroll;padding:5px;">
  2039.  
  2040. <h4>
  2041. Great, kid! Don't get cocky.
  2042. </h4>
  2043.  
  2044. semi-selective <b>&&</b> indie <br>para-preferred <b>&&</b> novella <br>au <b>&&</b> oc friendly
  2045.  
  2046. <h4>
  2047. who's scruffy lookin'?
  2048. </h4>
  2049. My portrayal of Han is fully based on my own inference and conception of his disposition.
  2050. <br><b>ships:</b>
  2051. <br>Han + Chemistry
  2052. <br>HanLuke
  2053. <br>HanDo
  2054.  
  2055.  
  2056. <h4>
  2057. There aren't enough scoundrels in your life.
  2058. </h4>
  2059.  
  2060. @skysaunter is my Luke account. <br>I do write Luke on Han’s account. Except, only on <i>CERTAIN</i> threads. <br>This is <b>NOT</b> a multi-muse account. This happens in <b>VERY</b> specific threads.
  2061. <br>
  2062.  
  2063.  
  2064.  
  2065. </center>
  2066.  
  2067.  
  2068. </div>
  2069. </div></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement