Advertisement
warxmth

aj's new theme

Nov 16th, 2018
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 44.18 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3.  
  4. <!--
  5.  
  6. WINTER'S LADY THEMES
  7. ♛ this code was made by AGIRLINGREY@TUMBLR.
  8. ♛ do not remove credit or claim as your own.
  9.  
  10. -->
  11.  
  12.  
  13. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  14. <head>
  15.  
  16.  
  17.  
  18. <!--
  19. POP UP SCRIPT
  20. -->
  21.  
  22.  
  23. <script type="text/javascript"
  24. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  25. <script>
  26. $(document).ready(function() {
  27. //
  28. $('a.poplight[href^=#]').click(function() {
  29. var popID = $(this).attr('rel'); //Get Popup Name
  30. var popURL = $(this).attr('href'); //Get Popup href to define size
  31. var query= popURL.split('?');
  32. var dim= query[1].split('&');
  33. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  34. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  35. var popMargTop = ($('#' + popID).height() + 80) / 2;
  36. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  37. //Apply Margin to Popup
  38. $('#' + popID).css({
  39. 'margin-top' : -popMargTop,
  40. 'margin-left' : -popMargLeft
  41. });
  42. $('body').append('<div id="fade"></div>');
  43. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  44. return false;
  45. });
  46. $('a.close, #fade').live('click', function() {
  47. $('#fade , .popup_block').fadeOut(function() {
  48. $('#fade, a.close').remove(); //fade them both out
  49. });
  50. return false;
  51. });
  52. });
  53. </script>
  54.  
  55.  
  56.  
  57. <!--
  58. VERSE TABS SCRIPT
  59. -->
  60.  
  61.  
  62. <script>
  63.  
  64. $(document).ready(function(){
  65. $("ul#tabs li").click(function(e){
  66. if (!$(this).hasClass("active")) {
  67. var tabNum = $(this).index();
  68. var nthChild = tabNum+1;
  69. $("ul#tabs li.active").removeClass("active");
  70. $(this).addClass("active");
  71. $("ul#tab li.active").removeClass("active");
  72. $("ul#tab li:nth-child("+nthChild+")").addClass("active");
  73. }
  74. });
  75. });
  76. </script>
  77.  
  78.  
  79.  
  80. <!--
  81. TOOLTIP STYLING SCRIPT
  82. -->
  83.  
  84.  
  85. <link href="http://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  86. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  87. <script src="http://static.tumblr.com/5omyijl/RZtn2yg9v/jquery.style-my-tooltips.js"></script>
  88. <script>
  89. (function($){
  90. $(document).ready(function(){
  91. $("[title]").style_my_tooltips({
  92. tip_follows_cursor:true,
  93. tip_delay_time:200,
  94. tip_fade_speed:500
  95. });
  96. });
  97. })(jQuery);
  98. </script>
  99.  
  100.  
  101.  
  102.  
  103. <title>{Title}</title>
  104. <link rel="shortcut icon" href="{Favicon}">
  105. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  106. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  107.  
  108.  
  109.  
  110. <!--
  111. CUSTOM FONTS
  112. -->
  113.  
  114.  
  115. <link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
  116.  
  117. <link href="https://fonts.googleapis.com/css?family=Josefin+Sans" rel="stylesheet">
  118.  
  119.  
  120. <link href="https://fonts.googleapis.com/css?family=Bad+Script" rel="stylesheet">
  121.  
  122.  
  123.  
  124. <style type="text/css">
  125.  
  126.  
  127.  
  128. /* THE CUSTOM SIDEBAR THING */
  129.  
  130.  
  131.  
  132. #bite
  133. #bite a{
  134. display:block
  135. }
  136. #bite .death {
  137. margin-top:0px;filter: alpha(opacity = 1.0);
  138. opacity:1.0;-webkit-transition: all 0.5s ease-out;
  139. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  140. }
  141.  
  142. #bite:hover .death {
  143. margin-top:0px;
  144. -webkit-transition: all 0.8s ease-out;
  145. -moz-transition: all 0.8s ease-out;
  146. transition: all 0.8s ease-out;
  147. filter: alpha(opacity = 100);
  148. filter: alpha(opacity = 100);
  149. opacity:100;
  150. }
  151.  
  152.  
  153.  
  154. /* SELECTION FONT AND BACKGROUND */
  155.  
  156.  
  157. ::selection {
  158. background: #c2c2c2;
  159. color:#fff; }
  160.  
  161.  
  162. ::-moz-selection {
  163. background: #c2c2c2;
  164. color:#fff; }
  165.  
  166.  
  167.  
  168. /* SCROLLBAR DETAILS */
  169.  
  170.  
  171.  
  172. ::-webkit-scrollbar {
  173. height: 0px;
  174. width: 2px;
  175. background:transparent;
  176. border-left:0px solid transparent;
  177. border-right:0px solid transparent;}
  178.  
  179.  
  180. ::-webkit-scrollbar-thumb {
  181. background:transparent;}
  182.  
  183.  
  184.  
  185.  
  186. /* THE CURSOR */
  187.  
  188.  
  189. {block:iftinycursor}
  190. body, a, a:hover{
  191. cursor: url('http://24.media.tumblr.com/tumblr_mdig6jktic1riysloo1_100.png'), progress;}
  192. {/block:iftinycursor}
  193.  
  194. iframe#tumblr_controls {
  195. right:3px !important;
  196. position: fixed !important;
  197. -webkit-transition: opacity 0.7s
  198. linear;opacity: 0.2;
  199. -webkit-transition: all 0.8s ease-out;
  200. -moz-transition: all 0.8s ease-out;
  201. transition: all 0.8s ease-out;}
  202.  
  203. iframe#tumblr_controls:hover{
  204. -webkit-transition: opacity 0.7s linear;
  205. opacity: 1;
  206. -webkit-transition: all 0.4s ease-out;
  207. -moz-transition: all 0.4s ease-out;
  208. transition: all 0.4s ease-out;}
  209.  
  210.  
  211.  
  212. /* GENERAL LOOK AND BACKGROUND */
  213.  
  214.  
  215. body {
  216. background:#d4d4d4;
  217. background-image:url('https://static.tumblr.com/ivhjzhh/GUnpia0pr/fatalheir_copy.png');
  218. background-attachment: fixed;
  219. background-repeat: no-repeat;
  220. background-position: left top;
  221. color:#8f8f8f;
  222. font-family: calibri;
  223. text-align:justify;
  224. font-size: 14px;
  225. letter-spacing:1px;
  226. line-height:135%;
  227. }
  228.  
  229.  
  230.  
  231. /* THE VERSES TABS */
  232.  
  233.  
  234. ul#tabs {
  235. list-style-type: none;
  236. padding: 0;
  237. text-align: center;
  238. font-size:8px;
  239. letter-spacing:1px;
  240. text-shadow:1px 1px 0px #4c4c4c,
  241. 1px -1px 0px #4c4c4c,
  242. -1px -1px 0px #4c4c4c,
  243. -1px 1px 0px #4c4c4c,
  244. 0px 1px 0px #4c4c4c,
  245. 0px -1px 0px #4c4c4c,
  246. 1px 0px 0px #4c4c4c,
  247. -1px 0px 0px #4c4c4c;
  248.  
  249. }
  250.  
  251.  
  252.  
  253. ul#tabs li {
  254. background-image: url('https://66.media.tumblr.com/2c197e62689eac4fbb4c730663c0bd14/tumblr_oc4aa3bqcg1ud4mdwo2_r1_400.gif');
  255. background-repeat:repeat;
  256. background-attachment:fixed;
  257. border-left: double 3px #000;
  258. border-top: double 3px #000;
  259. border-right: double 3px #000;
  260. border-bottom: double 3px #000;
  261. color:#e6e6e6;
  262. text-shadow:1px 1px 0px #000,
  263. 1px -1px 0px #000,
  264. -1px -1px 0px #000,
  265. -1px 1px 0px #000,
  266. 0px 1px 0px #000,
  267. 0px -1px 0px #000,
  268. 1px 0px 0px #000,
  269. -1px 0px 0px #000;
  270. display: inline-block;
  271. padding: 4px 10px;
  272. margin-bottom: 4px;
  273. cursor: pointer;
  274. }
  275.  
  276.  
  277.  
  278. ul#tabs li:hover {
  279. background-color: transparent;
  280. color: #eaeaea;
  281. }
  282.  
  283. ul#tabs li.active {
  284. background-image: url('');
  285. background:#151515;
  286. background-repeat:repeat;
  287. background-attachment:fixed;
  288. border-left: double 3px #000;
  289. border-top: double 3px #000;
  290. border-right: double 3px #000;
  291. border-bottom: double 3px #000;
  292. color:#e6e6e6;
  293. text-shadow:1px 1px 0px #000,
  294. 1px -1px 0px #000,
  295. -1px -1px 0px #000,
  296. -1px 1px 0px #000,
  297. 0px 1px 0px #000,
  298. 0px -1px 0px #000,
  299. 1px 0px 0px #000,
  300. -1px 0px 0px #000;
  301. display: inline-block;
  302. padding: 4px 10px;
  303. margin-bottom: 4px;
  304. cursor: pointer;
  305. }
  306.  
  307.  
  308.  
  309. ul#tab {
  310. list-style-type: none;
  311. margin: 0;
  312. padding: 0;
  313. }
  314.  
  315. ul#tab li {
  316. display: none;
  317. }
  318.  
  319. ul#tab li.active {
  320. display: block;
  321. }
  322.  
  323.  
  324.  
  325.  
  326. /* LINKS */
  327.  
  328.  
  329. a:link, a:active, a:visited {
  330. text-decoration: none;
  331. color: #ffffff;
  332. -moz-transition-duration:.6s;
  333. -webkit-transition-duration:.6s;
  334. -o-transition-duration:.6s;
  335. -webkit-filter: blur(0px);}
  336.  
  337. a:hover {
  338. color: #8f8f8f;
  339. -moz-transition-duration:.6s;
  340. -webkit-transition-duration:.6s;
  341. -o-transition-duration:.6s;
  342. -webkit-filter: blur(1px);}
  343.  
  344.  
  345.  
  346. #links a {
  347. padding:5px;
  348. margin-right:0px;
  349. text-shadow: 1px 0px 1px #ffffff;
  350. }
  351.  
  352.  
  353. #links a:hover {
  354. padding:5px;
  355. margin-right:0px;
  356. text-shadow: 2px 0px 10px #7a7a7a;
  357. -moz-transition-duration:0.6s;
  358. -webkit-transition-duration:0.6s;
  359. -o-transition-duration:0.6s;
  360. }
  361.  
  362.  
  363.  
  364.  
  365. /* OTHER TEXT STUFF */
  366.  
  367.  
  368.  
  369. h1 {
  370. background-color: transparent;
  371. font-family: 'Josefin Sans', sans-serif;
  372. font-size: 16px;
  373. line-height: 20px;
  374. letter-spacing: 2px;
  375. text-align: center;
  376. text-transform:uppercase;
  377. color: #91a3ac;
  378. }
  379.  
  380.  
  381. h2 {
  382. background-color: transparent;
  383. font-family: 'Josefin Sans', sans-serif;
  384. font-size: 15px;
  385. line-height: 16px;
  386. letter-spacing: 2px;
  387. text-align: left;
  388. text-transform:uppercase;
  389. color: #91a3ac;
  390. }
  391.  
  392.  
  393.  
  394. h3 {
  395. background-image: url('https://66.media.tumblr.com/2c197e62689eac4fbb4c730663c0bd14/tumblr_oc4aa3bqcg1ud4mdwo2_r1_400.gif');
  396. background-repeat:repeat;
  397. background-attachment:fixed;
  398. border-left: double 3px #000;
  399. border-top: double 3px #000;
  400. border-right: double 3px #000;
  401. border-bottom: double 3px #000;
  402. padding:2px;
  403. color:#e6e6e6;
  404. text-shadow:1px 1px 0px #000,
  405. 1px -1px 0px #000,
  406. -1px -1px 0px #000,
  407. -1px 1px 0px #000,
  408. 0px 1px 0px #000,
  409. 0px -1px 0px #000,
  410. 1px 0px 0px #000,
  411. -1px 0px 0px #000;
  412. font-size:12px;
  413. font-family:calibri;
  414. text-transform:uppercase;
  415. letter-spacing:1px;
  416. text-align:center;}
  417.  
  418.  
  419.  
  420.  
  421. h4 {
  422. background-image: url('https://66.media.tumblr.com/2c197e62689eac4fbb4c730663c0bd14/tumblr_oc4aa3bqcg1ud4mdwo2_r1_400.gif');
  423. background-repeat:repeat;
  424. background-attachment:fixed;
  425. border-left: double 3px #000;
  426. border-top: double 3px #000;
  427. border-right: double 3px #000;
  428. border-bottom: double 3px #000;
  429. padding:2px;
  430. color:#e6e6e6;
  431. text-shadow:1px 1px 0px #000,
  432. 1px -1px 0px #000,
  433. -1px -1px 0px #000,
  434. -1px 1px 0px #000,
  435. 0px 1px 0px #000,
  436. 0px -1px 0px #000,
  437. 1px 0px 0px #000,
  438. -1px 0px 0px #000;
  439. font-size:9px;
  440. font-family:calibri;
  441. text-transform:uppercase;
  442. letter-spacing:1px;
  443. text-align:center;}
  444.  
  445.  
  446.  
  447. hr {
  448. color:#818181;
  449. display: block;
  450. margin-top: 0.5em;
  451. margin-bottom: 0.5em;
  452. margin-left: auto;
  453. margin-right: auto;
  454. border-style: inset;
  455. border-width: 1px;
  456. }
  457.  
  458.  
  459.  
  460.  
  461. quotetext {
  462. background-color: transparent;
  463. font-family: times;
  464. font-size: 16px;
  465. line-height: 20px;
  466. letter-spacing: 2px;
  467. text-align: center;
  468. text-transform:uppercase;
  469. color: #91a3ac;
  470. }
  471.  
  472.  
  473.  
  474. blockquote {
  475. word-wrap: break-word;
  476. padding:2px 7px;
  477. margin:3px 0 3px 10px;
  478. border-left:1px solid {color:border};
  479. background-color:transparent;}
  480.  
  481.  
  482. blockquote img{
  483. max-width:100%;
  484. height:auto;
  485. }
  486.  
  487. blockquote blockquote img{
  488. max-width:100%;
  489. height:auto;
  490. }
  491.  
  492.  
  493.  
  494.  
  495. b, bold {
  496. font-size:10px;
  497. text-transform:uppercase;
  498. letter-spacing:1px;
  499. font-family: 'Josefin Sans', sans-serif;
  500. color: #9cb4c0;
  501. text-shadow:1px 1px 0 #000;
  502. }
  503.  
  504.  
  505.  
  506. i, italic {
  507. font-size:13px;
  508. color: #c2cbcc;
  509. font-family: 'Bad Script', cursive;
  510. text-shadow: 0px 0px 2px #5a5a5a;
  511. letter-spacing:1px;
  512. text-transform:lowercase;
  513. }
  514.  
  515.  
  516.  
  517. p {
  518. margin-top:5px;
  519. margin-bottom:5px;}
  520.  
  521.  
  522. ol {
  523. list-style:normal;}
  524.  
  525.  
  526. ul {
  527. list-style:square;}
  528.  
  529.  
  530. small {
  531. font-size:10px}
  532.  
  533.  
  534. sup,sub {
  535. font-size:11px}
  536.  
  537.  
  538. pre {
  539. font-size: 10px;
  540. letter-spacing:3px;
  541. background-color:#000;
  542. font-family: "Times New Roman", Times, serif;
  543. font-style: none;
  544. text-align:center;
  545. white-space: pre-wrap; /* css-3 */
  546. white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  547. white-space: -pre-wrap; /* Opera 4-6 */
  548. white-space: -o-pre-wrap; /* Opera 7 */
  549. word-wrap: break-word; /* Internet Explorer 5.5+ */ }
  550.  
  551.  
  552.  
  553. big {
  554. font-size:14px;
  555. text-transform:uppercase;
  556. letter-spacing:2px;
  557. font-family: "Times New Roman", Times, serif;
  558. color: #91a3ac;
  559. text-shadow: 0px 0px 2px #383838;
  560. }
  561.  
  562.  
  563.  
  564. /* IMAGES, PHOTOSETS AND WHATNOT */
  565.  
  566.  
  567.  
  568. {block:IfGreyscale}
  569.  
  570. img {
  571. -webkit-filter:grayscale(100%);
  572. -webkit-transition: all 0.9s ease-in-out;
  573. -moz-transition: all 0.9s ease-in-out;
  574. -o-transition: all 0.9s ease-in-out;
  575. -ms-transition: all 0.9s ease-in-out;
  576. transition: all 0.9s ease-in-out;}
  577.  
  578. img:hover {
  579. -webkit-filter:none;}
  580.  
  581. .html_photoset {
  582. -webkit-filter: grayscale(100%);
  583. -webkit-transition: all 0.9s ease-in-out;
  584. -moz-transition: all 0.9s ease-in-out;
  585. -o-transition: all 0.9s ease-in-out;
  586. -ms-transition: all 0.9s ease-in-out;
  587. transition: all 0.9s ease-in-out;}
  588.  
  589. .html_photoset:hover {
  590. -webkit-filter: none;}
  591.  
  592. {/block:IfGreyscale}
  593.  
  594.  
  595.  
  596. /* CONTAINER AND POSTS */
  597.  
  598.  
  599.  
  600. #container {
  601. background-color:transparent;
  602. width:255px;
  603. height:390px;
  604. padding: 20px;
  605. top:145px;
  606. margin-left: 395px;
  607. position:relative;
  608. overflow-y:scroll;
  609. overflow-x:hidden;
  610. -webkit-mask-image: -webkit-gradient(
  611. linear, center 75%, center bottom,
  612. from(rgba(0,0,0,20)),
  613. to(rgba(20,0,0,0)));
  614. border:1px solid transparent;}
  615.  
  616. #container img {
  617. height:auto;
  618. max-width:100%;
  619. }
  620.  
  621. #content {
  622. margin-left:62px;
  623. width:310px;
  624. margin-top: -110px;
  625. }
  626.  
  627. #posts {
  628. width:255px;
  629. padding:10px;
  630. margin-top: 130px;
  631. margin-left:-72px;
  632. padding-bottom:0px;
  633. overflow-y:scroll;
  634. overflow-x:hidden;
  635. }
  636.  
  637.  
  638. #description {
  639. margin-left: 0px;
  640. margin-top: -50px;
  641. width:180px;
  642. color:transparent;}
  643.  
  644.  
  645.  
  646.  
  647. /* CUSTOM SIDEBAR SETTINGS */
  648.  
  649.  
  650.  
  651. #actualnews {
  652. font-family: calibri;
  653. font-size:10px;
  654. background:transparent;
  655. color: #8f8f8f;
  656. width:165px;
  657. height:420px;
  658. padding-top:3px;
  659. border:0px solid #131313;
  660. left: 230px;
  661. top: 295px;
  662. text-align:center;
  663. position:fixed;
  664. -webkit-filter: blur(0px);
  665. -webkit-transition: 0.8s ease-in;
  666. -moz-transition: 1s ease-in;
  667. transition: 1s ease-in;
  668. opacity:0.5;
  669. -webkit-transition: all 0.6s ease-in-out;
  670. -moz-transition: all 0.6s ease-in-out;
  671. -o-transition: all 0.6s ease-in-out;
  672. -ms-transition: all 0.6s ease-in-out;
  673. transition: all 0.6s ease-in-out;
  674. }
  675.  
  676.  
  677.  
  678. #actualnews:hover {
  679. -webkit-filter:none;
  680. -webkit-transition: all 0.6s ease-in-out;
  681. opacity:1;
  682. -webkit-transition: all 0.6s ease-in-out;
  683. -moz-transition: all 0.6s ease-in-out;
  684. -o-transition: all 0.6s ease-in-out;
  685. -ms-transition: all 0.6s ease-in-out;
  686. transition: all 0.6s ease-in-out;
  687. }
  688.  
  689.  
  690.  
  691.  
  692. #thekey {
  693. position:fixed;
  694. color:#7c7470;
  695. text-shadow: 0px 0px 2px #fff;
  696. margin-top:175px;
  697. margin-left:55px;
  698. width:710px;
  699. padding:9px;
  700. letter-spacing:2px;
  701. word-spacing:5px; /*this defines the separation of each word of the links*/
  702. font-family: helvetica;
  703. font-size:12px;
  704. text-align:center;
  705. background:transparent;
  706. text-transform:uppercase;
  707. -webkit-transform: rotate(-90deg);
  708. -moz-transform: rotate(-90deg);
  709. -o-transform: rotate(-90deg);
  710. }
  711.  
  712.  
  713.  
  714.  
  715. /* JUMBLED LINKS */
  716.  
  717.  
  718.  
  719. .alinks {
  720. position:fixed;
  721. text-shadow: 0px 0px 0px #000;
  722. left:780px;
  723. top:160px;
  724. text-align: right;
  725. line-height:20px;
  726. font-family: 'Josefin Sans', sans-serif;
  727. font-size: 17px;}
  728.  
  729.  
  730. .alinks a {
  731. padding:10px;
  732. color:#ffffff;
  733. margin-right:0px;
  734. -webkit-filter: blur(0px);
  735. -webkit-transition: 0.8s ease-in;
  736. -moz-transition: 1s ease-in;
  737. transition: 1s ease-in;
  738. }
  739.  
  740. .alinks a:hover {
  741. -webkit-filter: blur(1px);
  742. -webkit-transition: all 0.6s ease-in-out;
  743. -moz-transition: all 0.6s ease-in-out;
  744. -o-transition: all 0.6s ease-in-out;
  745. -ms-transition: all 0.6s ease-in-out;
  746. transition: all 0.6s ease-in-out;
  747. color: #7f7f7f;
  748. text-shadow: 7px 7px 3px #000000;
  749. }
  750.  
  751.  
  752.  
  753. .blinks {
  754. position:fixed;
  755. text-shadow: 0px 0px 11px #7C6868;
  756. left:790px;
  757. top:160px;
  758. text-align: center;
  759. font-family: 'Josefin Sans', sans-serif;
  760. line-height:20px;
  761. font-size: 17px;}
  762.  
  763.  
  764. .blinks a {
  765. padding:10px;
  766. color:#ffffff;
  767. margin-right:0px;
  768. -webkit-filter: blur(0px);
  769. -webkit-transition: 0.8s ease-in;
  770. -moz-transition: 1s ease-in;
  771. transition: 1s ease-in;
  772. }
  773.  
  774. .blinks a:hover {
  775. -webkit-transition: all 0.6s ease-in-out;
  776. -moz-transition: all 0.6s ease-in-out;
  777. -o-transition: all 0.6s ease-in-out;
  778. -ms-transition: all 0.6s ease-in-out;
  779. transition: all 0.6s ease-in-out;
  780. color: #7f7f7f;
  781. text-shadow: 7px 7px 3px #000000;
  782. }
  783.  
  784.  
  785.  
  786.  
  787. .clinks {
  788. position:fixed;
  789. text-shadow: 0px 0px 11px #7C6868;
  790. left:810px;
  791. top:160px;
  792. text-align: center;
  793. font-family: 'Josefin Sans', sans-serif;
  794. line-height:20px;
  795. font-size: 17px;}
  796.  
  797.  
  798. .clinks a {
  799. padding:10px;
  800. color:#ffffff;
  801. margin-right:0px;
  802. -webkit-filter: blur(0px);
  803. -webkit-transition: 0.8s ease-in;
  804. -moz-transition: 1s ease-in;
  805. transition: 1s ease-in;
  806. }
  807.  
  808. .clinks a:hover {
  809. -webkit-transition: all 0.6s ease-in-out;
  810. -moz-transition: all 0.6s ease-in-out;
  811. -o-transition: all 0.6s ease-in-out;
  812. -ms-transition: all 0.6s ease-in-out;
  813. transition: all 0.6s ease-in-out;
  814. color: #7f7f7f;
  815. text-shadow: 7px 7px 3px #000000;
  816. }
  817.  
  818.  
  819.  
  820. .dlinks {
  821. position:fixed;
  822. text-shadow: 0px 0px 11px #7C6868;
  823. left:840px;
  824. top:160px;
  825. text-align: center;
  826. font-family: 'Josefin Sans', sans-serif;
  827. line-height:20px;
  828. font-size: 17px;}
  829.  
  830.  
  831. .dlinks a {
  832. padding:10px;
  833. color:#ffffff;
  834. margin-right:0px;
  835. -webkit-filter: blur(0px);
  836. -webkit-transition: 0.8s ease-in;
  837. -moz-transition: 1s ease-in;
  838. transition: 1s ease-in;
  839. }
  840.  
  841. .dlinks a:hover {
  842. -webkit-transition: all 0.6s ease-in-out;
  843. -moz-transition: all 0.6s ease-in-out;
  844. -o-transition: all 0.6s ease-in-out;
  845. -ms-transition: all 0.6s ease-in-out;
  846. transition: all 0.6s ease-in-out;
  847. color: #7f7f7f;
  848. text-shadow: 7px 7px 3px #000000;
  849. }
  850.  
  851.  
  852. .elinks {
  853. position:fixed;
  854. text-shadow: 0px 0px 11px #7C6868;
  855. left:870px;
  856. top:160px;
  857. text-align: center;
  858. font-family: 'Josefin Sans', sans-serif;
  859. line-height:20px;
  860. font-size: 17px;}
  861.  
  862.  
  863. .elinks a {
  864. padding:10px;
  865. color:#ffffff;
  866. margin-right:0px;
  867. -webkit-filter: blur(0px);
  868. -webkit-transition: 0.8s ease-in;
  869. -moz-transition: 1s ease-in;
  870. transition: 1s ease-in;
  871. }
  872.  
  873. .elinks a:hover {
  874. -webkit-transition: all 0.6s ease-in-out;
  875. -moz-transition: all 0.6s ease-in-out;
  876. -o-transition: all 0.6s ease-in-out;
  877. -ms-transition: all 0.6s ease-in-out;
  878. transition: all 0.6s ease-in-out;
  879. color: #7f7f7f;
  880. text-shadow: 7px 7px 3px #000000;
  881. }
  882.  
  883.  
  884.  
  885. .flinks {
  886. position:fixed;
  887. text-shadow: 0px 0px 11px #7C6868;
  888. left:890px;
  889. top:160px;
  890. text-align: center;
  891. font-family: 'Josefin Sans', sans-serif;
  892. line-height:20px;
  893. font-size: 17px;}
  894.  
  895.  
  896. .flinks a {
  897. padding:10px;
  898. color:#ffffff;
  899. margin-right:0px;
  900. -webkit-filter: blur(0px);
  901. -webkit-transition: 0.8s ease-in;
  902. -moz-transition: 1s ease-in;
  903. transition: 1s ease-in;
  904. }
  905.  
  906. .flinks a:hover {
  907. -webkit-transition: all 0.6s ease-in-out;
  908. -moz-transition: all 0.6s ease-in-out;
  909. -o-transition: all 0.6s ease-in-out;
  910. -ms-transition: all 0.6s ease-in-out;
  911. transition: all 0.6s ease-in-out;
  912. color: #7f7f7f;
  913. text-shadow: 7px 7px 3px #000000;
  914. }
  915.  
  916.  
  917. .credit {
  918. position:fixed;
  919. text-shadow: 0px 0px 11px #7C6868;
  920. right:15px;
  921. bottom:15px;
  922. transform: rotate(0deg);
  923. font-family: 'Josefin Sans', sans-serif;
  924. font-size: 17px; }
  925.  
  926.  
  927. .credit a {
  928. padding:10px;
  929. color:#6e6e6e;
  930. margin-right:0px;
  931. -webkit-filter: blur(1px);
  932. -webkit-transition: 0.8s ease-in;
  933. -moz-transition: 1s ease-in;
  934. transition: 1s ease-in;
  935. }
  936.  
  937. .credit a:hover {
  938. -webkit-transition: all 0.6s ease-in-out;
  939. -moz-transition: all 0.6s ease-in-out;
  940. -o-transition: all 0.6s ease-in-out;
  941. -ms-transition: all 0.6s ease-in-out;
  942. transition: all 0.6s ease-in-out;
  943. color: #000000;
  944. text-shadow: 7px 7px 3px #000000;
  945. }
  946.  
  947.  
  948.  
  949.  
  950. /* PAGINATION */
  951.  
  952.  
  953.  
  954.  
  955. #pagination {
  956. position:fixed;
  957. font-family: 'Josefin Sans', sans-serif;
  958. width:300px;
  959. font-size:55px;
  960. top:250px;
  961. left:680px;
  962. letter-spacing:3px;
  963. text-align:center;
  964. z-index:999999999999;
  965. }
  966.  
  967. #pagination a {
  968. text-transform:uppercase;
  969. color:#ffffff;
  970. -webkit-filter: blur(0px);
  971. -webkit-transition: 0.8s ease-in;
  972. -moz-transition: 1s ease-in;
  973. transition: 1s ease-in;
  974. z-index:999999999999;
  975. }
  976.  
  977. #pagination a:hover {
  978. color:#fff;
  979. -webkit-filter: blur(1px);
  980. -webkit-transition: 0.2s ease-in;
  981. -moz-transition: 1s ease-in;
  982. transition: 1s ease-in;
  983. }
  984.  
  985.  
  986.  
  987.  
  988. /* MISC */
  989.  
  990.  
  991.  
  992. .audio {
  993. width:300px;
  994. padding-bottom:10px;
  995. background-color:{color:#0b0b0b};}
  996.  
  997. .albumart {
  998. float:left;
  999. padding:0px 10px 10px 0px;}
  1000.  
  1001. .albumart img {
  1002. width:65px;
  1003. height:65px;}
  1004.  
  1005. .playercontainer {
  1006. text-align:left;
  1007. padding:10px;
  1008. background-color:#0b0b0b;
  1009. width:300px;}
  1010.  
  1011. .audioinfo {
  1012. padding:10px;
  1013. color:#a1a0a0;}
  1014.  
  1015.  
  1016.  
  1017.  
  1018. /* QUESTIONS & ANSWERS DETAILS */
  1019.  
  1020.  
  1021. #asker {
  1022. font-family: 'Raleway', sans-serif;
  1023. text-align:center;
  1024. padding-top: 10px;
  1025. margin-left:0px;
  1026. text-transform:uppercase;
  1027. color: #91a3ac;
  1028. font-size:20px;
  1029. padding:5px;
  1030. letter-spacing:0px
  1031. text-shadow:0 0 2px #aeaeae;
  1032. }
  1033.  
  1034.  
  1035. #asker a{
  1036. font-family: 'Raleway', sans-serif;
  1037. text-transform:uppercase;
  1038. font-size:20px;
  1039. letter-spacing: 0px;
  1040. text-shadow: none;
  1041. color: #91a3ac;
  1042. text-shadow:0 0 2px #1a1a1a;
  1043. -webkit-filter: blur(0.5px);
  1044. }
  1045.  
  1046.  
  1047. #asker a:hover {
  1048. color: #656565;
  1049. letter-spacing: 2px;
  1050. text-shadow:0 0 2px #000;
  1051. -webkit-filter: blur(1px);
  1052. -webkit-transition:all .5s ease-in-out;
  1053. -moz-transition:all .5s ease-in-out;
  1054. transition:all .5s ease-in-out;
  1055. }
  1056.  
  1057.  
  1058.  
  1059. #ask {
  1060. border-left: double 3px #000;
  1061. border-top: double 3px #000;
  1062. border-right: double 3px #000;
  1063. border-bottom: double 3px #000;
  1064. padding:2px;
  1065. color:#e6e6e6;
  1066. text-shadow:1px 1px 0px #000,
  1067. 1px -1px 0px #000,
  1068. -1px -1px 0px #000,
  1069. -1px 1px 0px #000,
  1070. 0px 1px 0px #000,
  1071. 0px -1px 0px #000,
  1072. 1px 0px 0px #000,
  1073. -1px 0px 0px #000;
  1074. font-size:7px;
  1075. text-align:center;
  1076. padding-top: 5px;
  1077. margin-left:0px;
  1078. text-transform:auto;
  1079. letter-spacing:3px
  1080. margin-top:-10px;
  1081. padding:5px;
  1082. background: #000;
  1083. background: url("https://66.media.tumblr.com/2c197e62689eac4fbb4c730663c0bd14/tumblr_oc4aa3bqcg1ud4mdwo2_r1_400.gif");
  1084. background-repeat:repeat;
  1085. padding:2px;
  1086. color:#cacaca;
  1087. text-transform: uppercase;
  1088. border-bottom-left-radius: 20px;
  1089. border-top-right-radius: 20px;
  1090. padding:10px;
  1091. letter-spacing:2px;
  1092. border-bottom:solid 1px #1e1e1e;
  1093. border-top:solid 1px #1e1e1e;
  1094. }
  1095.  
  1096.  
  1097. .ans {
  1098. text-align:center;
  1099. padding:10px;
  1100. }
  1101.  
  1102.  
  1103.  
  1104. /* POST INFO DETAILS */
  1105.  
  1106.  
  1107. #info {
  1108. width:255px;
  1109. padding-top:4px;
  1110. padding-bottom:1px;
  1111. font-size:12px;
  1112. color:#adadab;
  1113. text-transform:uppercase;
  1114. letter-spacing:1px;
  1115. font-style:normal;
  1116. text-align:center;
  1117. padding:5px;
  1118. border-top:1px solid #1c1c1c;
  1119. -moz-transition-duration:0.2s;
  1120. -webkit-transition-duration:0.2s;
  1121. -o-transition-duration:0.2s;}
  1122.  
  1123.  
  1124. #info a {
  1125. font-family:calibri;
  1126. font-size:8px;
  1127. color:#9cb4c0;
  1128. text-shadow: 0px 0px 3px #7c1f1f;
  1129. padding:5px;
  1130. font-style:normal;}
  1131.  
  1132.  
  1133. #info a:hover {
  1134. color:#eee;
  1135. -webkit-filter: blur(0px);
  1136. -moz-transition-duration:0.2s;
  1137. -webkit-transition-duration:0.2s;
  1138. -o-transition-duration:0.2s;}
  1139.  
  1140.  
  1141. #tags {
  1142. color:#9cb4c0;
  1143. margin-top:5px;
  1144. padding-left:15px;
  1145. text-align:right;
  1146. line-height:9px;
  1147. text-transform:uppercase;
  1148. font-size:9px;
  1149. padding-right:10px;}
  1150.  
  1151. #tags a {
  1152. font-family:calibri;
  1153. color:#9cb4c0;}
  1154.  
  1155. #tags a:hover {
  1156. color:#eee;}
  1157.  
  1158.  
  1159.  
  1160. /* MISC 02. */
  1161.  
  1162.  
  1163.  
  1164. .note {
  1165. text-transform:uppercase;
  1166. font-style:normal;
  1167. letter-spacing:0px;
  1168. font-size: 10px;
  1169. text-align:left;
  1170. line-height:90%;
  1171. margin-left:-40px;}
  1172.  
  1173. .note li {
  1174. list-style-type:none;
  1175. border-bottom:0px solid {color:border};
  1176. padding:10px 25px 10px 25px;
  1177. text-align:left;
  1178. margin:0px;
  1179. -moz-transition-duration:0.5s;
  1180. -webkit-transition-duration:0.5s;
  1181. -o-transition-duration:0.5s;}
  1182.  
  1183. .note img.avatar {
  1184. margin-right: 10px;
  1185. width: 16px;
  1186. height: 16px;}
  1187.  
  1188.  
  1189.  
  1190.  
  1191. /* BASIC POP-UP DETAILS */
  1192.  
  1193.  
  1194.  
  1195. .popup_block{
  1196. display:none;
  1197. background:#000;
  1198. padding:20px;
  1199. border:0px solid #eee; /* if you want a solid white pop-up, delete this */
  1200. float:left;
  1201. height: 350px;
  1202. top:295px; left:400px;
  1203. position:fixed;
  1204. z-index: 99999;
  1205. -webkit-box-shadow: 0px 0px 0px #818081; /* delete for solid white */
  1206. -moz-box-shadow: 0px 0px 0px #818081; /* delete for solid white */
  1207. box-shadow: 0px 0px 0px #818081; /* delete for solid white */
  1208. }
  1209.  
  1210.  
  1211. *html #fade {position: absolute;}
  1212. *html .popup_block {position: absolute;}
  1213. #fade {
  1214. display:none;
  1215. position:fixed;
  1216. left:0px;
  1217. top:0px;
  1218. width:100%;
  1219. height:100%;
  1220. z-index:9999;
  1221. background:#000; /* change to #fff for solid white */
  1222. opacity:0; /* change to opacity:1; */
  1223. }
  1224.  
  1225.  
  1226.  
  1227. .popupnavlinks {
  1228. padding-top:5px;
  1229. text-align:center; }
  1230.  
  1231.  
  1232. .popupnavlinks a {
  1233. display:inline-block;
  1234. width:90px; height:4px;
  1235. margin:2px; padding:3px 6px 10px;
  1236. text-align:center;
  1237. background-image: url('');
  1238. background:#0d0d0d;
  1239. background-repeat:repeat;
  1240. background-attachment:fixed;
  1241. border-left: double 3px #000;
  1242. border-top: double 3px #000;
  1243. border-right: double 3px #000;
  1244. border-bottom: double 3px #000;
  1245. color:#e6e6e6;
  1246. font-size:9px;
  1247. font-family:calibri;
  1248. text-shadow:1px 1px 0px #000,
  1249. 1px -1px 0px #000,
  1250. -1px -1px 0px #000,
  1251. -1px 1px 0px #000,
  1252. 0px 1px 0px #000,
  1253. 0px -1px 0px #000,
  1254. 1px 0px 0px #000,
  1255. -1px 0px 0px #000;
  1256. display: inline-block;
  1257. cursor: pointer;
  1258. }
  1259.  
  1260.  
  1261.  
  1262. .popupnavlinks a:hover {
  1263. display:inline-block;
  1264. letter-spacing:2px; }
  1265.  
  1266.  
  1267.  
  1268. .popupclose {
  1269. float:right; top:0px; right:0px;
  1270. margin-top:-10px; margin-right:-10px;
  1271. font-family:'Scada', sans serif;
  1272. font-size:10px;
  1273. font-weight:bold }
  1274.  
  1275. .popupclose a {
  1276. color:#aaa }
  1277.  
  1278.  
  1279.  
  1280. /* TOOLTIP DETAILS */
  1281.  
  1282.  
  1283.  
  1284. #s-m-t-tooltip{
  1285. max-width:400px;
  1286. margin:15px;
  1287. padding:2px 8px;
  1288. background: #0b0b0b;
  1289. background-image:url('https://66.media.tumblr.com/2c197e62689eac4fbb4c730663c0bd14/tumblr_oc4aa3bqcg1ud4mdwo2_r1_400.gif');
  1290. background-repeat:repeat;
  1291. background-attachment:fixed;
  1292. border-left: double 3px #000;
  1293. border-top: double 3px #000;
  1294. border-right: double 3px #000;
  1295. border-bottom: double 3px #000;
  1296. color:#e6e6e6;
  1297. text-shadow:1px 1px 0px #000,
  1298. 1px -1px 0px #000,
  1299. -1px -1px 0px #000,
  1300. -1px 1px 0px #000,
  1301. 0px 1px 0px #000,
  1302. 0px -1px 0px #000,
  1303. 1px 0px 0px #000,
  1304. -1px 0px 0px #000;
  1305. z-index:99999999999999999999;
  1306. font-size:9px;
  1307. letter-spacing:2px;
  1308. font-style:bold;
  1309. letter-spacing:2px;
  1310. font-family: calibri;
  1311. text-transform:uppercase;
  1312. box-shadow:1px 1px 3px rgba(0,0,0,.1);}
  1313.  
  1314.  
  1315.  
  1316. </style>
  1317.  
  1318. </head>
  1319.  
  1320. <body>
  1321.  
  1322.  
  1323.  
  1324. <!--
  1325. ♛ 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.
  1326. -->
  1327.  
  1328.  
  1329. <div id="content">
  1330.  
  1331. <div id="sidebar">
  1332.  
  1333. <img src="{image:Sidebar}" />
  1334.  
  1335. <div id="description">{description}</div>
  1336.  
  1337. </div>
  1338.  
  1339. <div id="pagination">
  1340. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">«</a> {/block:PreviousPage}{block:NextPage} <a href="{NextPage}">»</a>{/block:NextPage}{/block:Pagination}
  1341. </div>
  1342.  
  1343.  
  1344. <!--
  1345. ♛ CUSTOM LINKS
  1346. -->
  1347.  
  1348.  
  1349.  
  1350. <div id="links">
  1351.  
  1352.  
  1353. <div class="alinks">
  1354. <a href="/" title="return">
  1355. I
  1356. </a>
  1357. </div>
  1358.  
  1359.  
  1360. <div class="blinks">
  1361. <a href="#?w=255" rel="box1" class="poplight" title="messages.">
  1362. II.</a>
  1363. </div>
  1364.  
  1365.  
  1366. <div class="clinks">
  1367. <a href="#?w=255" rel="box2" class="poplight" title="laws."> III </a>
  1368. </div>
  1369.  
  1370.  
  1371. <div class="dlinks">
  1372. <a href="#?w=255" rel="box3" class="poplight" title="verses."> IV </a>
  1373. </div>
  1374.  
  1375.  
  1376. <div class="elinks">
  1377. <a href="#?w=255" rel="box4" class="poplight" title="about."> V </a>
  1378. </div>
  1379.  
  1380.  
  1381. <div class="flinks">
  1382. <a href="#?w=255" rel="box5" class="poplight" title="the map."> VI </a>
  1383. </div>
  1384.  
  1385.  
  1386. <div class="credit">
  1387. <a href="http://agirlingrey.tumblr.com/" title="theme by agirlingrey.">A.</a>
  1388. </div>
  1389.  
  1390.  
  1391. </div>
  1392.  
  1393.  
  1394. <!--
  1395. ♛ CUSTOM LINKS ENDS
  1396. -->
  1397.  
  1398.  
  1399.  
  1400. <div id="container">
  1401.  
  1402. <div id="content"><div id="posts">
  1403. {block:Posts}
  1404.  
  1405.  
  1406. {block:Quote}<quotetext>"{Quote}"</quotetext>&nbsp; <br><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; — {Source} {/block:Quote}
  1407. {block:Title}<h1>{Title}&nbsp;</h1>{/block:Title}
  1408. {block:Text}{Body}{/block:Text}
  1409.  
  1410. {block:Link}<a href="{URL}" class="link" {Target}><h1>{Name}&nbsp;</h1></a>
  1411.  
  1412. {block:Description}<P>{Description}</p>{/block:Description}{/block:Link}
  1413.  
  1414. {block:Photo}<center>{LinkOpenTag}<img src="{PhotoURL-HighRes}" width="360px">{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1415. {block:Photoset}<center>{Photoset}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1416.  
  1417. {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}
  1418.  
  1419. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1420.  
  1421.  
  1422. {block:Answer}<div id="asker" style="margin-left:-5px;width:250px; color:#91a3ac; text-shadow:0 0 2px #000; ">{Asker} <div id="ask"> <p><p><p><p><p>{Question}</div></span></div><font face="calibri"><span style="font-family:calibri;font-size:10px; marging-left:0px;">{Answer}</span>{/block:Answer}
  1423.  
  1424.  
  1425. {block:Audio}<div class="audio">
  1426.  
  1427. {block:AlbumArt}
  1428. {/block:AlbumArt}
  1429.  
  1430.  
  1431. <div class="audioinfo">{block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}{block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  1432. {/block:ExternalAudio}<b>Played:</b> {PlayCount} times</div>
  1433. <br><div class="playercontainer">{AudioPlayerBlack}</div></div>
  1434. {block:Caption}{Caption}{/block:Caption}<br>{/block:Audio}
  1435.  
  1436.  
  1437. <!--
  1438. ♛ INFO AND SYMBOLS
  1439. -->
  1440.  
  1441. <div id="info">
  1442. {block:Date}
  1443. <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}
  1444.  
  1445. {block:RebloggedFrom}
  1446. <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>
  1447. {/block:RebloggedFrom}
  1448.  
  1449. {block:ContentSource}
  1450. <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>
  1451. {/block:ContentSource}
  1452.  
  1453. {block:NoteCount}
  1454. <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>
  1455. {/block:NoteCount}
  1456.  
  1457. <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>
  1458. {/block:RebloggedFrom}
  1459.  
  1460.  
  1461. <br>
  1462.  
  1463.  
  1464. <!--
  1465. ♛ INFO AND SYMBOLS ENDS
  1466. -->
  1467.  
  1468.  
  1469. <div id="tags" style="margin-bottom:50px">{block:HasTags}{block:Tags} • <a href="{TagURL}" title="{Tag}">{Tag}</a>{/block:Tags}{/block:HasTags}</div></div>
  1470.  
  1471. <div class="note">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  1472. {/block:Posts}
  1473. </div>
  1474. </div>
  1475. </div>
  1476.  
  1477.  
  1478.  
  1479. </body>
  1480.  
  1481.  
  1482.  
  1483. <!--
  1484. ♛ POP UP PAGES !!!
  1485. -->
  1486.  
  1487.  
  1488.  
  1489. <div id="box1" class="popup_block">
  1490.  
  1491. <h3>ask me anything
  1492. </h3>
  1493.  
  1494. <center>
  1495.  
  1496. <br>
  1497.  
  1498. <p><iframe frameborder="0" height="250" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/fatalheir.tumblr.com" width="100%"></iframe></p>
  1499.  
  1500. </div>
  1501.  
  1502. </center>
  1503.  
  1504.  
  1505.  
  1506. <div id="box2" class="popup_block">
  1507.  
  1508. <div style="width:auto;height:350px;overflow:scroll;padding:5px;">
  1509.  
  1510.  
  1511. <h3>Neque porro quisquam</h3>
  1512.  
  1513. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce scelerisque nec orci ac elementum. Etiam dictum leo in leo fringilla, at ultricies arcu venenatis. Ut dignissim pretium volutpat. Nullam pharetra, nunc volutpat porttitor congue, libero felis tincidunt quam, at hendrerit velit augue vel odio. Praesent tincidunt lorem vitae maximus porta.
  1514.  
  1515. <br><br>
  1516.  
  1517. <b>ADD YOUR RULES HERE !!!</b>
  1518.  
  1519. <br><br>
  1520.  
  1521. Suspendisse hendrerit ut velit eget mattis. Proin malesuada efficitur ligula, a posuere sapien mollis et. Etiam volutpat in lectus at malesuada. Nunc et interdum leo.
  1522.  
  1523. <h3>est qui dolorem ipsum</h3>
  1524.  
  1525. Pellentesque a nisl venenatis, ultricies odio et, malesuada est. Mauris eros dolor, rhoncus vestibulum lorem nec, vestibulum ornare magna. Donec posuere ante mattis lectus bibendum, nec fermentum ante ullamcorper. Fusce blandit velit ac metus convallis ultricies. Quisque turpis nulla, scelerisque et orci ac, pellentesque ullamcorper odio. Fusce at auctor elit. Sed eu odio sodales est dapibus dictum in et ex. Nulla a elementum eros.
  1526.  
  1527. <h3>quia dolor sit amet</h3>
  1528.  
  1529. Proin blandit sollicitudin aliquet. Donec sed malesuada nibh. Sed quis fermentum velit. Praesent tincidunt, lectus in bibendum ornare, odio odio mattis purus, sit amet molestie orci velit et justo. Nunc cursus porta vestibulum. Curabitur elementum volutpat tortor, ut maximus enim. In hac habitasse platea dictumst. Sed tincidunt non tellus at efficitur. Sed id est tincidunt, euismod metus quis, aliquam mauris. Nulla nunc magna, fermentum semper pulvinar quis, facilisis eu tortor. Duis facilisis nulla et nunc fermentum ultricies. Pellentesque quis vulputate dolor. In non gravida arcu. Nunc nec libero fringilla, hendrerit leo sed, imperdiet purus.
  1530.  
  1531. <h3>consectetur, adipisci velit</h3>
  1532.  
  1533. Phasellus consectetur vitae sapien sed maximus. Phasellus vel nulla non purus ultricies euismod. Phasellus non orci tincidunt, commodo ligula id, elementum augue. Quisque at elit at justo mattis tristique eget non turpis. Duis euismod, mi ut sollicitudin sollicitudin, sapien lorem dapibus orci, id scelerisque ipsum dui non augue. Donec tortor mauris, venenatis nec finibus in, eleifend ac justo. Morbi a vulputate turpis. Proin hendrerit, urna sed iaculis euismod, est nisi vehicula nisi, vel convallis nibh tellus ac nibh. Vestibulum volutpat pellentesque sapien, nec pretium nulla aliquam nec. Cras ultrices nisl sit amet nulla consequat efficitur.
  1534.  
  1535.  
  1536. </div>
  1537. </div>
  1538.  
  1539.  
  1540.  
  1541.  
  1542. <div id="box3" class="popup_block">
  1543.  
  1544. <h3>verses</h3>
  1545.  
  1546. <ul id="tabs">
  1547. <li class="active">MAIN.</li>
  1548. &nbsp;
  1549. <li>AU.</li>
  1550. &nbsp;
  1551. <li>GROUP.</li>
  1552. </ul>
  1553.  
  1554. <div style="width:auto;height:270px;overflow:scroll;padding:5px;">
  1555.  
  1556.  
  1557.  
  1558. <ul id="tab">
  1559. <li class="active">
  1560.  
  1561.  
  1562. <img src="https://66.media.tumblr.com/699b381a89b724bc66cf9769467ec74c/tumblr_oc493jqna11ud4mdwo1_100.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1563. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">VERSE NAME.</a></big>
  1564.  
  1565. <br><br>
  1566.  
  1567. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce scelerisque nec orci ac elementum. Etiam dictum leo in leo fringilla, at ultricies arcu venenatis. Ut dignissim pretium volutpat. Nullam pharetra, nunc volutpat porttitor congue, libero felis tincidunt quam, at hendrerit velit augue vel odio. Praesent tincidunt lorem vitae maximus porta. Suspendisse hendrerit ut velit eget mattis. Proin malesuada efficitur ligula, a posuere sapien mollis et. Etiam volutpat in lectus at malesuada. Nunc et interdum leo.
  1568.  
  1569. <br><br><br>
  1570.  
  1571. <img src="https://66.media.tumblr.com/699b381a89b724bc66cf9769467ec74c/tumblr_oc493jqna11ud4mdwo1_100.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1572. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">VERSE NAME.</a></big>
  1573.  
  1574. <br><br>
  1575.  
  1576. Pellentesque a nisl venenatis, ultricies odio et, malesuada est. Mauris eros dolor, rhoncus vestibulum lorem nec, vestibulum ornare magna. Donec posuere ante mattis lectus bibendum, nec fermentum ante ullamcorper. Fusce blandit velit ac metus convallis ultricies. Quisque turpis nulla, scelerisque et orci ac, pellentesque ullamcorper odio. Fusce at auctor elit. Sed eu odio sodales est dapibus dictum in et ex. Nulla a elementum eros.
  1577.  
  1578.  
  1579.  
  1580. </li>
  1581. <li>
  1582.  
  1583.  
  1584.  
  1585. <img src="https://67.media.tumblr.com/e96479e79dfc7c4d439cd8bf87e11a4a/tumblr_oc48lgd1hg1ud4mdwo1_100.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1586. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">VERSE NAME.</a></big>
  1587.  
  1588. <br><br>
  1589.  
  1590. Proin blandit sollicitudin aliquet. Donec sed malesuada nibh. Sed quis fermentum velit. Praesent tincidunt, lectus in bibendum ornare, odio odio mattis purus, sit amet molestie orci velit et justo. Nunc cursus porta vestibulum. Curabitur elementum volutpat tortor, ut maximus enim. In hac habitasse platea dictumst. Sed tincidunt non tellus at efficitur. Sed id est tincidunt, euismod metus quis, aliquam mauris. Nulla nunc magna, fermentum semper pulvinar quis, facilisis eu tortor. Duis facilisis nulla et nunc fermentum ultricies. Pellentesque quis vulputate dolor. In non gravida arcu. Nunc nec libero fringilla, hendrerit leo sed, imperdiet purus.
  1591.  
  1592.  
  1593. <br><br><br>
  1594.  
  1595. <img src="https://67.media.tumblr.com/e96479e79dfc7c4d439cd8bf87e11a4a/tumblr_oc48lgd1hg1ud4mdwo1_100.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1596. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">VERSE NAME.</a></big>
  1597.  
  1598. <br><br>
  1599.  
  1600. Phasellus consectetur vitae sapien sed maximus. Phasellus vel nulla non purus ultricies euismod. Phasellus non orci tincidunt, commodo ligula id, elementum augue. Quisque at elit at justo mattis tristique eget non turpis. Duis euismod, mi ut sollicitudin sollicitudin, sapien lorem dapibus orci, id scelerisque ipsum dui non augue. Donec tortor mauris, venenatis nec finibus in, eleifend ac justo. Morbi a vulputate turpis. Proin hendrerit, urna sed iaculis euismod, est nisi vehicula nisi, vel convallis nibh tellus ac nibh. Vestibulum volutpat pellentesque sapien, nec pretium nulla aliquam nec. Cras ultrices nisl sit amet nulla consequat efficitur.
  1601.  
  1602.  
  1603.  
  1604. </li>
  1605. <li>
  1606.  
  1607.  
  1608. <img src="https://66.media.tumblr.com/6b6b80e2545ce4977586403217aacdb5/tumblr_oc495wFwrl1ud4mdwo1_100.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1609. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">VERSE NAME.</a></big>
  1610.  
  1611. <br><br>
  1612.  
  1613. Nulla tincidunt felis non venenatis euismod. Fusce odio tellus, consectetur vitae erat non, feugiat tincidunt metus. Mauris suscipit ex sit amet arcu fermentum, eu fringilla diam consequat. Nullam imperdiet suscipit turpis, ac semper enim fringilla sit amet. Nullam ac magna pharetra, elementum sapien quis, pharetra elit. Suspendisse faucibus neque ligula, sit amet tempor est venenatis a. Praesent eleifend fringilla enim, vel varius libero laoreet eget. Aliquam erat volutpat. Phasellus tempor mi vitae enim consequat tempor. Cras condimentum quis tellus vel mattis. Cras sit amet est at neque luctus congue.
  1614.  
  1615.  
  1616. <br><br><br>
  1617.  
  1618. <img src="https://66.media.tumblr.com/6b6b80e2545ce4977586403217aacdb5/tumblr_oc495wFwrl1ud4mdwo1_100.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
  1619. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">VERSE NAME.</a></big>
  1620.  
  1621. <br><br>
  1622.  
  1623. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce scelerisque nec orci ac elementum. Etiam dictum leo in leo fringilla, at ultricies arcu venenatis. Ut dignissim pretium volutpat. Nullam pharetra, nunc volutpat porttitor congue, libero felis tincidunt quam, at hendrerit velit augue vel odio. Praesent tincidunt lorem vitae maximus porta. Suspendisse hendrerit ut velit eget mattis. Proin malesuada efficitur ligula, a posuere sapien mollis et. Etiam volutpat in lectus at malesuada. Nunc et interdum leo.
  1624.  
  1625.  
  1626. </li>
  1627. </ul>
  1628.  
  1629.  
  1630. </div>
  1631. </div>
  1632.  
  1633.  
  1634.  
  1635. <div id="box4" class="popup_block">
  1636.  
  1637. <div style="width:auto;height:350px;overflow:scroll;padding:5px;">
  1638.  
  1639. <center>
  1640.  
  1641. <span style="line-height:5px">
  1642.  
  1643. "Too often have I heard of duty," she cried. "But am I not of the House of Eorl, a <b>SHIELDMAIDEN</b> and not a dry-nurse. I have waited on faltering feet long enough. Since they falter no longer, it seems, may I not now spend my life <i>as I will?</i>"
  1644.  
  1645. <br><br>
  1646.  
  1647. </center>
  1648.  
  1649. <h3>ABOUT SECTION</h3>
  1650.  
  1651. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce scelerisque nec orci ac elementum. Etiam dictum leo in leo fringilla, at ultricies arcu venenatis. Ut dignissim pretium volutpat. Nullam pharetra, nunc volutpat porttitor congue, libero felis tincidunt quam, at hendrerit velit augue vel odio. Praesent tincidunt lorem vitae maximus porta. Suspendisse hendrerit ut velit eget mattis. Proin malesuada efficitur ligula, a posuere sapien mollis et. Etiam volutpat in lectus at malesuada. Nunc et interdum leo.
  1652.  
  1653. <br><br>
  1654.  
  1655. Pellentesque a nisl venenatis, ultricies odio et, malesuada est. Mauris eros dolor, rhoncus vestibulum lorem nec, vestibulum ornare magna. Donec posuere ante mattis lectus bibendum, nec fermentum ante ullamcorper. Fusce blandit velit ac metus convallis ultricies. Quisque turpis nulla, scelerisque et orci ac, pellentesque ullamcorper odio. Fusce at auctor elit. Sed eu odio sodales est dapibus dictum in et ex. Nulla a elementum eros.
  1656.  
  1657. <h3>OR ANYTHING ELSE YOU WANT, REALLY</h3>
  1658.  
  1659. Proin blandit sollicitudin aliquet. Donec sed malesuada nibh. Sed quis fermentum velit. Praesent tincidunt, lectus in bibendum ornare, odio odio mattis purus, sit amet molestie orci velit et justo. Nunc cursus porta vestibulum. Curabitur elementum volutpat tortor, ut maximus enim. In hac habitasse platea dictumst. Sed tincidunt non tellus at efficitur. Sed id est tincidunt, euismod metus quis, aliquam mauris. Nulla nunc magna, fermentum semper pulvinar quis, facilisis eu tortor. Duis facilisis nulla et nunc fermentum ultricies. Pellentesque quis vulputate dolor. In non gravida arcu. Nunc nec libero fringilla, hendrerit leo sed, imperdiet purus.
  1660.  
  1661. <br><br>
  1662.  
  1663. Phasellus consectetur vitae sapien sed maximus. Phasellus vel nulla non purus ultricies euismod. Phasellus non orci tincidunt, commodo ligula id, elementum augue. Quisque at elit at justo mattis tristique eget non turpis. Duis euismod, mi ut sollicitudin sollicitudin, sapien lorem dapibus orci, id scelerisque ipsum dui non augue. Donec tortor mauris, venenatis nec finibus in, eleifend ac justo. Morbi a vulputate turpis. Proin hendrerit, urna sed iaculis euismod, est nisi vehicula nisi, vel convallis nibh tellus ac nibh. Vestibulum volutpat pellentesque sapien, nec pretium nulla aliquam nec. Cras ultrices nisl sit amet nulla consequat efficitur.
  1664.  
  1665. </div>
  1666. </div>
  1667.  
  1668.  
  1669.  
  1670. <div id="box5" class="popup_block">
  1671.  
  1672. <div style="width:auto;height:350px;overflow:scroll;padding:5px;">
  1673.  
  1674. <center>
  1675.  
  1676. <h3>NAVIGATION</h3>
  1677.  
  1678.  
  1679. <div class="popupnavlinks">
  1680.  
  1681. <a href="/tagged/whatever">LINK</a>
  1682. <a href="/tagged/whatever">LINK</a>
  1683. <br>
  1684. <a href="/tagged/whatever">LINK</a>
  1685. <a href="/tagged/whatever">LINK</a>
  1686. <br>
  1687. <a href="/tagged/whatever">LINK</a>
  1688. <a href="/tagged/whatever">LINK</a>
  1689. <br>
  1690. <a href="/tagged/whatever">LINK</a>
  1691. <a href="/tagged/whatever">LINK</a>
  1692. <br>
  1693. <a href="/tagged/whatever">LINK</a>
  1694. <a href="/tagged/whatever">LINK</a>
  1695. <br>
  1696. <a href="/tagged/whatever">LINK</a>
  1697. <a href="/tagged/whatever">LINK</a>
  1698. <br>
  1699. <a href="/tagged/whatever">LINK</a>
  1700. <a href="/tagged/whatever">LINK</a>
  1701.  
  1702.  
  1703. <br><br><br>
  1704.  
  1705.  
  1706. </div>
  1707. </div>
  1708. </div>
  1709.  
  1710.  
  1711. <!--
  1712. ♛ CUSTOM SIDEBAR TEXT
  1713. -->
  1714.  
  1715.  
  1716.  
  1717. <div id="bite">
  1718. <div id="thekey"></div>
  1719. <div class="death">
  1720. <div id="actualnews">
  1721.  
  1722. <center>
  1723.  
  1724. <div style="width:auto;height:280px;overflow:scroll;padding:5px;">
  1725.  
  1726.  
  1727. </center>
  1728.  
  1729.  
  1730. </div>
  1731. </div></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement