Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 51.67 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://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="https://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="https://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="https://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  86. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  87. <script src="https://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:#fed354; }
  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('https://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:#000;
  217. background-image:url('https://i.imgur.com/0R1bulI.png');
  218. background-attachment: fixed;
  219. background-repeat: no-repeat;
  220. background-position: left top;
  221. background-size: cover;
  222. color:#fff;
  223. font-family: calibri;
  224. text-align:justify;
  225. font-size: 10px;
  226. letter-spacing:1px;
  227. line-height:135%;
  228. }
  229.  
  230.  
  231.  
  232. /* THE VERSES TABS */
  233.  
  234.  
  235. ul#tabs {
  236. list-style-type: none;
  237. padding: 0;
  238. text-align: center;
  239. font-size:8px;
  240. letter-spacing:1px;
  241. text-shadow:1px 1px 0px #4c4c4c,
  242. 1px -1px 0px #4c4c4c,
  243. -1px -1px 0px #4c4c4c,
  244. -1px 1px 0px #4c4c4c,
  245. 0px 1px 0px #4c4c4c,
  246. 0px -1px 0px #4c4c4c,
  247. 1px 0px 0px #4c4c4c,
  248. -1px 0px 0px #4c4c4c;
  249.  
  250. }
  251.  
  252.  
  253.  
  254. ul#tabs li {
  255. background-image: url('https://i.pinimg.com/originals/fe/a7/ca/fea7ca7b4bff9c3459be0271b3bded4a.jpg');
  256. background-repeat:repeat;
  257. background-attachment:fixed;
  258. border-left: double 3px #000;
  259. border-top: double 3px #000;
  260. border-right: double 3px #000;
  261. border-bottom: double 3px #000;
  262. color:#e6e6e6;
  263. text-shadow:1px 1px 0px #000,
  264. 1px -1px 0px #000,
  265. -1px -1px 0px #000,
  266. -1px 1px 0px #000,
  267. 0px 1px 0px #000,
  268. 0px -1px 0px #000,
  269. 1px 0px 0px #000,
  270. -1px 0px 0px #000;
  271. display: inline-block;
  272. padding: 4px 10px;
  273. margin-bottom: 4px;
  274. cursor: pointer;
  275. }
  276.  
  277.  
  278.  
  279. ul#tabs li:hover {
  280. background-color: transparent;
  281. color: #fefa26;
  282. }
  283.  
  284. ul#tabs li.active {
  285. background-image: url('');
  286. background:#fed354;
  287. background-repeat:repeat;
  288. background-attachment:fixed;
  289. border-left: double 3px #000;
  290. border-top: double 3px #000;
  291. border-right: double 3px #000;
  292. border-bottom: double 3px #000;
  293. color:#e6e6e6;
  294. text-shadow:1px 1px 0px #000,
  295. 1px -1px 0px #000,
  296. -1px -1px 0px #000,
  297. -1px 1px 0px #000,
  298. 0px 1px 0px #000,
  299. 0px -1px 0px #000,
  300. 1px 0px 0px #000,
  301. -1px 0px 0px #000;
  302. display: inline-block;
  303. padding: 4px 10px;
  304. margin-bottom: 4px;
  305. cursor: pointer;
  306. }
  307.  
  308.  
  309.  
  310. ul#tab {
  311. list-style-type: none;
  312. margin: 0;
  313. padding: 0;
  314. }
  315.  
  316. ul#tab li {
  317. display: none;
  318. }
  319.  
  320. ul#tab li.active {
  321. display: block;
  322. }
  323.  
  324.  
  325.  
  326.  
  327. /* LINKS */
  328.  
  329.  
  330. a:link, a:active, a:visited {
  331. text-decoration: none;
  332. color: #e7ddd4;
  333. -moz-transition-duration:.6s;
  334. -webkit-transition-duration:.6s;
  335. -o-transition-duration:.6s;
  336. -webkit-filter: blur(0px);}
  337.  
  338. a:hover {
  339. color: #e7ddd4;
  340. -moz-transition-duration:.6s;
  341. -webkit-transition-duration:.6s;
  342. -o-transition-duration:.6s;
  343. -webkit-filter: blur(1px);}
  344.  
  345.  
  346.  
  347. #links a {
  348. padding:5px;
  349. margin-right:0px;
  350. text-shadow: 1px 0px 1px #e7ddd4;
  351. }
  352.  
  353.  
  354. #links a:hover {
  355. padding:5px;
  356. margin-right:0px;
  357. text-shadow: 2px 0px 10px #e7ddd4;
  358. -moz-transition-duration:0.6s;
  359. -webkit-transition-duration:0.6s;
  360. -o-transition-duration:0.6s;
  361. }
  362.  
  363.  
  364.  
  365.  
  366. /* OTHER TEXT STUFF */
  367.  
  368.  
  369.  
  370. h1 {
  371. background-color: transparent;
  372. font-family: 'Josefin Sans', sans-serif;
  373. font-size: 16px;
  374. line-height: 20px;
  375. letter-spacing: 2px;
  376. text-align: center;
  377. text-transform:uppercase;
  378. color: #91a3ac;
  379. }
  380.  
  381.  
  382. h2 {
  383. background-color: transparent;
  384. font-family: 'Josefin Sans', sans-serif;
  385. font-size: 15px;
  386. line-height: 16px;
  387. letter-spacing: 2px;
  388. text-align: left;
  389. text-transform:uppercase;
  390. color: #91a3ac;
  391. }
  392.  
  393.  
  394.  
  395. h3 {
  396. background-image: url('https://i.pinimg.com/originals/fe/a7/ca/fea7ca7b4bff9c3459be0271b3bded4a.jpg');
  397. background-repeat:repeat;
  398. background-attachment:fixed;
  399. border-left: double 3px #000;
  400. border-top: double 3px #000;
  401. border-right: double 3px #000;
  402. border-bottom: double 3px #000;
  403. padding:2px;
  404. color:#e6e6e6;
  405. text-shadow:1px 1px 0px #000,
  406. 1px -1px 0px #000,
  407. -1px -1px 0px #000,
  408. -1px 1px 0px #000,
  409. 0px 1px 0px #000,
  410. 0px -1px 0px #000,
  411. 1px 0px 0px #000,
  412. -1px 0px 0px #000;
  413. font-size:12px;
  414. font-family:calibri;
  415. text-transform:uppercase;
  416. letter-spacing:1px;
  417. text-align:center;}
  418.  
  419.  
  420.  
  421.  
  422. h4 {
  423. background-image: url('https://i.pinimg.com/originals/fe/a7/ca/fea7ca7b4bff9c3459be0271b3bded4a.jpg');
  424. background-repeat:repeat;
  425. background-attachment:fixed;
  426. border-left: double 3px #000;
  427. border-top: double 3px #000;
  428. border-right: double 3px #000;
  429. border-bottom: double 3px #000;
  430. padding:2px;
  431. color:#e6e6e6;
  432. text-shadow:1px 1px 0px #000,
  433. 1px -1px 0px #000,
  434. -1px -1px 0px #000,
  435. -1px 1px 0px #000,
  436. 0px 1px 0px #000,
  437. 0px -1px 0px #000,
  438. 1px 0px 0px #000,
  439. -1px 0px 0px #000;
  440. font-size:9px;
  441. font-family:calibri;
  442. text-transform:uppercase;
  443. letter-spacing:1px;
  444. text-align:center;}
  445.  
  446.  
  447.  
  448. hr {
  449. color:#818181;
  450. display: block;
  451. margin-top: 0.5em;
  452. margin-bottom: 0.5em;
  453. margin-left: auto;
  454. margin-right: auto;
  455. border-style: inset;
  456. border-width: 1px;
  457. }
  458.  
  459.  
  460.  
  461.  
  462. quotetext {
  463. background-color: transparent;
  464. font-family: times;
  465. font-size: 16px;
  466. line-height: 20px;
  467. letter-spacing: 2px;
  468. text-align: center;
  469. text-transform:uppercase;
  470. color: #91a3ac;
  471. }
  472.  
  473.  
  474.  
  475. blockquote {
  476. word-wrap: break-word;
  477. padding:2px 7px;
  478. margin:3px 0 3px 10px;
  479. border-left:1px solid {color:border};
  480. background-color:transparent;}
  481.  
  482.  
  483. blockquote img{
  484. max-width:100%;
  485. height:auto;
  486. }
  487.  
  488. blockquote blockquote img{
  489. max-width:100%;
  490. height:auto;
  491. }
  492.  
  493.  
  494.  
  495.  
  496. b, bold {
  497. font-size:10px;
  498. text-transform:uppercase;
  499. letter-spacing:1px;
  500. font-family: 'Permanent Marker', cursive;
  501. color: #5a2116;
  502. text-shadow: 0px 0px 2px #5a5a5a;
  503. }
  504.  
  505.  
  506.  
  507. i, italic {
  508. font-size:13px;
  509. color: #ff5816;
  510. font-family: 'Indie Flower', cursive;
  511. text-shadow: 0px 0px 2px #5a5a5a;
  512. letter-spacing:1px;
  513. text-transform:lowercase;
  514. }
  515.  
  516.  
  517.  
  518. p {
  519. margin-top:5px;
  520. margin-bottom:5px;}
  521.  
  522.  
  523. ol {
  524. list-style:normal;}
  525.  
  526.  
  527. ul {
  528. list-style:square;}
  529.  
  530.  
  531. small {
  532. font-size:10px}
  533.  
  534.  
  535. sup,sub {
  536. font-size:11px}
  537.  
  538.  
  539. pre {
  540. font-size: 10px;
  541. letter-spacing:3px;
  542. background-color:#000;
  543. font-family: "Times New Roman", Times, serif;
  544. font-style: none;
  545. text-align:center;
  546. white-space: pre-wrap; /* css-3 */
  547. white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  548. white-space: -pre-wrap; /* Opera 4-6 */
  549. white-space: -o-pre-wrap; /* Opera 7 */
  550. word-wrap: break-word; /* Internet Explorer 5.5+ */ }
  551.  
  552.  
  553.  
  554. big {
  555. font-size:14px;
  556. text-transform:uppercase;
  557. letter-spacing:2px;
  558. font-family: "Times New Roman", Times, serif;
  559. color: #91a3ac;
  560. text-shadow: 0px 0px 2px #383838;
  561. }
  562.  
  563.  
  564.  
  565. /* IMAGES, PHOTOSETS AND WHATNOT */
  566.  
  567.  
  568.  
  569. {block:IfGreyscale}
  570.  
  571. img {
  572. -webkit-filter:grayscale(100%);
  573. -webkit-transition: all 0.9s ease-in-out;
  574. -moz-transition: all 0.9s ease-in-out;
  575. -o-transition: all 0.9s ease-in-out;
  576. -ms-transition: all 0.9s ease-in-out;
  577. transition: all 0.9s ease-in-out;}
  578.  
  579. img:hover {
  580. -webkit-filter:none;}
  581.  
  582. .html_photoset {
  583. -webkit-filter: grayscale(100%);
  584. -webkit-transition: all 0.9s ease-in-out;
  585. -moz-transition: all 0.9s ease-in-out;
  586. -o-transition: all 0.9s ease-in-out;
  587. -ms-transition: all 0.9s ease-in-out;
  588. transition: all 0.9s ease-in-out;}
  589.  
  590. .html_photoset:hover {
  591. -webkit-filter: none;}
  592.  
  593. {/block:IfGreyscale}
  594.  
  595.  
  596.  
  597. /* CONTAINER AND POSTS */
  598.  
  599.  
  600.  
  601. #container {
  602. background-color:transparent;
  603. width:255px;
  604. height:350px;
  605. padding: 20px;
  606. top:305px;
  607. margin-left: 164px;
  608. position:relative;
  609. overflow-y:scroll;
  610. overflow-x:hidden;
  611. -webkit-mask-image: -webkit-gradient(
  612. linear, center 75%, center bottom,
  613. from(rgba(0,0,0,20)),
  614. to(rgba(20,0,0,0)));
  615. border:1px solid transparent;}
  616.  
  617. #container img {
  618. height:auto;
  619. max-width:100%;
  620. }
  621.  
  622. #content {
  623. margin-left:62px;
  624. width:310px;
  625. margin-top: -110px;
  626. }
  627.  
  628. #posts {
  629. width:255px;
  630. padding:10px;
  631. margin-top: 90px;
  632. margin-left:-72px;
  633. padding-bottom:0px;
  634. overflow-y:scroll;
  635. overflow-x:hidden;
  636. }
  637.  
  638.  
  639. #description {
  640. margin-left: 0px;
  641. margin-top: -50px;
  642. width:180px;
  643. color:transparent;}
  644.  
  645.  
  646.  
  647.  
  648. /* CUSTOM SIDEBAR SETTINGS */
  649.  
  650.  
  651.  
  652. #actualnews {
  653. font-family: calibri;
  654. font-size:10px;
  655. background:transparent;
  656. color: #fff;
  657. width:165px;
  658. height:420px;
  659. padding-top:3px;
  660. border:0px solid #131313;
  661. left: 60px;
  662. top: 295px;
  663. text-align:center;
  664. position:fixed;
  665. -webkit-filter: blur(0px);
  666. -webkit-transition: 0.8s ease-in;
  667. -moz-transition: 1s ease-in;
  668. transition: 1s ease-in;
  669. opacity:0.5;
  670. -webkit-transition: all 0.6s ease-in-out;
  671. -moz-transition: all 0.6s ease-in-out;
  672. -o-transition: all 0.6s ease-in-out;
  673. -ms-transition: all 0.6s ease-in-out;
  674. transition: all 0.6s ease-in-out;
  675. }
  676.  
  677.  
  678.  
  679. #actualnews:hover {
  680. -webkit-filter:none;
  681. -webkit-transition: all 0.6s ease-in-out;
  682. opacity:1;
  683. -webkit-transition: all 0.6s ease-in-out;
  684. -moz-transition: all 0.6s ease-in-out;
  685. -o-transition: all 0.6s ease-in-out;
  686. -ms-transition: all 0.6s ease-in-out;
  687. transition: all 0.6s ease-in-out;
  688. }
  689.  
  690.  
  691.  
  692.  
  693. #thekey {
  694. position:fixed;
  695. color:#7c7470;
  696. text-shadow: 0px 0px 2px #fff;
  697. margin-top:175px;
  698. margin-left:55px;
  699. width:710px;
  700. padding:9px;
  701. letter-spacing:2px;
  702. word-spacing:5px; /*this defines the separation of each word of the links*/
  703. font-family: helvetica;
  704. font-size:12px;
  705. text-align:center;
  706. background:transparent;
  707. text-transform:uppercase;
  708. -webkit-transform: rotate(-90deg);
  709. -moz-transform: rotate(-90deg);
  710. -o-transform: rotate(-90deg);
  711. }
  712.  
  713.  
  714.  
  715.  
  716. /* JUMBLED LINKS */
  717.  
  718.  
  719.  
  720. .alinks {
  721. position:fixed;
  722. text-shadow: 0px 0px 0px #e7ddd4;
  723. left:100px;
  724. top:210px;
  725. transform: rotate(0deg);
  726. text-align: right;
  727. line-height:20px;
  728. font-family: 'Josefin Sans', sans-serif;
  729. font-size: 17px;}
  730.  
  731.  
  732. .alinks a {
  733. padding:10px;
  734. color:#ca4d3c;
  735. margin-right:0px;
  736. -webkit-filter: blur(0px);
  737. -webkit-transition: 0.8s ease-in;
  738. -moz-transition: 1s ease-in;
  739. transition: 1s ease-in;
  740. }
  741.  
  742. .alinks a:hover {
  743. -webkit-filter: blur(1px);
  744. -webkit-transition: all 0.6s ease-in-out;
  745. -moz-transition: all 0.6s ease-in-out;
  746. -o-transition: all 0.6s ease-in-out;
  747. -ms-transition: all 0.6s ease-in-out;
  748. transition: all 0.6s ease-in-out;
  749. color: #e7ddd4;
  750. text-shadow: 7px 7px 3px #e7ddd4;
  751. }
  752.  
  753.  
  754.  
  755. .blinks {
  756. position:fixed;
  757. text-shadow: 0px 0px 11px #e7ddd4;
  758. left:510px;
  759. top:380px;
  760. transform: rotate(90deg);
  761. text-align: center;
  762. font-family: 'Josefin Sans', sans-serif;
  763. line-height:20px;
  764. font-size: 19px;}
  765.  
  766.  
  767. .blinks a {
  768. padding:10px;
  769. color:#ca4d3c;
  770. margin-right:0px;
  771. -webkit-filter: blur(0px);
  772. -webkit-transition: 0.8s ease-in;
  773. -moz-transition: 1s ease-in;
  774. transition: 1s ease-in;
  775. }
  776.  
  777. .blinks a:hover {
  778. -webkit-transition: all 0.6s ease-in-out;
  779. -moz-transition: all 0.6s ease-in-out;
  780. -o-transition: all 0.6s ease-in-out;
  781. -ms-transition: all 0.6s ease-in-out;
  782. transition: all 0.6s ease-in-out;
  783. color: #e7ddd4;
  784. text-shadow: 7px 7px 3px #000000;
  785. }
  786.  
  787.  
  788.  
  789.  
  790. .clinks {
  791. position:fixed;
  792. font-size:35px;
  793. text-decoration:none;
  794. transform: rotate(-30deg);
  795. -ms-transform: rotate(-30deg);
  796. -webkit-transform: rotate(-30deg);
  797. -o-transform: rotate(-30deg);
  798. -moz-transform: rotate(-30deg);
  799. margin-left:100px;
  800. margin-top:270px;
  801. }
  802.  
  803. .clinks a {
  804. text-shadow:0px 0px 7px #7f7f7f;
  805. text-decoration:none;
  806. color:#7f7f7f;
  807. -webkit-transition: all 0.5s ease-out;
  808. -moz-transition: all 0.5s ease-out;
  809. transition: all 0.5s ease-out;
  810. }
  811.  
  812. .clinks:hover {
  813. -webkit-filter:blur(1px);
  814. -webkit-transition: all 0.5s ease-out;
  815. -moz-transition: all 0.5s ease-out;
  816. transition: all 0.5s ease-out;
  817. transform: rotate(110deg);
  818. -ms-transform: rotate(110deg);
  819. -webkit-transform: rotate(110deg);
  820. -o-transform: rotate(110deg);
  821. -moz-transform: rotate(110deg);
  822. }
  823.  
  824.  
  825.  
  826. .dlinks {
  827. position:fixed;
  828. font-size:17px;
  829. text-decoration:none;
  830. transform: rotate(30deg);
  831. -ms-transform: rotate(30deg);
  832. -webkit-transform: rotate(30deg);
  833. -o-transform: rotate(30deg);
  834. -moz-transform: rotate(30deg);
  835. margin-left:1px;
  836. margin-top:340px;
  837. }
  838.  
  839. .dlinks a {
  840. text-shadow:0px 0px 7px #7f7f7f;
  841. text-decoration:none;
  842. color:#7f7f7f;
  843. -webkit-transition: all 0.5s ease-out;
  844. -moz-transition: all 0.5s ease-out;
  845. transition: all 0.5s ease-out;
  846. }
  847.  
  848. .dlinks:hover {
  849. -webkit-filter:blur(1px);
  850. -webkit-transition: all 0.5s ease-out;
  851. -moz-transition: all 0.5s ease-out;
  852. transition: all 0.5s ease-out;
  853. transform: rotate(-60deg);
  854. -ms-transform: rotate(-60deg);
  855. -webkit-transform: rotate(-60deg);
  856. -o-transform: rotate(-60deg);
  857. -moz-transform: rotate(-60deg);
  858. }
  859.  
  860.  
  861.  
  862. .elinks {
  863. position:fixed;
  864. font-size:22px;
  865. text-decoration:none;
  866. transform: rotate(-90deg);
  867. -ms-transform: rotate(-90deg);
  868. -webkit-transform: rotate(-90deg);
  869. -o-transform: rotate(-90deg);
  870. -moz-transform: rotate(-90deg);
  871. margin-left:40px;
  872. margin-top:240px;
  873. }
  874.  
  875. .elinks a {
  876. text-shadow:0px 0px 7px #7f7f7f;
  877. text-decoration:none;
  878. color:#7f7f7f;
  879. -webkit-transition: all 0.5s ease-out;
  880. -moz-transition: all 0.5s ease-out;
  881. transition: all 0.5s ease-out;
  882. }
  883.  
  884. .elinks:hover {
  885. -webkit-filter:blur(1px);
  886. -webkit-transition: all 0.5s ease-out;
  887. -moz-transition: all 0.5s ease-out;
  888. transition: all 0.5s ease-out;
  889. transform: rotate(70deg);
  890. -ms-transform: rotate(70deg);
  891. -webkit-transform: rotate(70deg);
  892. -o-transform: rotate(70deg);
  893. -moz-transform: rotate(70deg);
  894. }
  895.  
  896.  
  897.  
  898.  
  899.  
  900. .flinks {
  901. position:fixed;
  902. font-size:17px;
  903. text-decoration:none;
  904. transform: rotate(10deg);
  905. -ms-transform: rotate(10deg);
  906. -webkit-transform: rotate(10deg);
  907. -o-transform: rotate(10deg);
  908. -moz-transform: rotate(10deg);
  909. margin-left:10px;
  910. margin-top:270px;
  911. }
  912.  
  913. .flinks a {
  914. text-shadow:0px 0px 7px #7f7f7f;
  915. text-decoration:none;
  916. color:#7f7f7f;
  917. -webkit-transition: all 0.5s ease-out;
  918. -moz-transition: all 0.5s ease-out;
  919. transition: all 0.5s ease-out;
  920. }
  921.  
  922. .flinks:hover {
  923. -webkit-filter:blur(1px);
  924. -webkit-transition: all 0.5s ease-out;
  925. -moz-transition: all 0.5s ease-out;
  926. transition: all 0.5s ease-out;
  927. transform: rotate(-60deg);
  928. -ms-transform: rotate(-60deg);
  929. -webkit-transform: rotate(-60deg);
  930. -o-transform: rotate(-60deg);
  931. -moz-transform: rotate(-60deg);
  932. }
  933.  
  934.  
  935. .glinks {
  936. position:fixed;
  937. font-size:22px;
  938. text-decoration:none;
  939. transform: rotate(30deg);
  940. -ms-transform: rotate(30deg);
  941. -webkit-transform: rotate(30deg);
  942. -o-transform: rotate(30deg);
  943. -moz-transform: rotate(30deg);
  944. margin-left:70px;
  945. margin-top:210px;
  946. }
  947.  
  948. .glinks a {
  949. text-shadow:0px 0px 7px #7f7f7f;
  950. text-decoration:none;
  951. color:#7f7f7f;
  952. -webkit-transition: all 0.5s ease-out;
  953. -moz-transition: all 0.5s ease-out;
  954. transition: all 0.5s ease-out;
  955. }
  956.  
  957. .glinks:hover {
  958. -webkit-filter:blur(1px);
  959. -webkit-transition: all 0.5s ease-out;
  960. -moz-transition: all 0.5s ease-out;
  961. transition: all 0.5s ease-out;
  962. transform: rotate(70deg);
  963. -ms-transform: rotate(70deg);
  964. -webkit-transform: rotate(70deg);
  965. -o-transform: rotate(70deg);
  966. -moz-transform: rotate(70deg);
  967. }
  968.  
  969.  
  970.  
  971. .credit {
  972. position:fixed;
  973. text-shadow: 0px 0px 11px #7C6868;
  974. right:15px;
  975. bottom:15px;
  976. transform: rotate(0deg);
  977. font-family: 'Josefin Sans', sans-serif;
  978. font-size: 17px; }
  979.  
  980.  
  981. .credit a {
  982. padding:10px;
  983. color:#6e6e6e;
  984. margin-right:0px;
  985. -webkit-filter: blur(1px);
  986. -webkit-transition: 0.8s ease-in;
  987. -moz-transition: 1s ease-in;
  988. transition: 1s ease-in;
  989. }
  990.  
  991. .credit a:hover {
  992. -webkit-transition: all 0.6s ease-in-out;
  993. -moz-transition: all 0.6s ease-in-out;
  994. -o-transition: all 0.6s ease-in-out;
  995. -ms-transition: all 0.6s ease-in-out;
  996. transition: all 0.6s ease-in-out;
  997. color: #000000;
  998. text-shadow: 7px 7px 3px #000000;
  999. }
  1000.  
  1001.  
  1002.  
  1003.  
  1004. /* PAGINATION */
  1005.  
  1006.  
  1007.  
  1008.  
  1009. #pagination {
  1010. position:fixed;
  1011. font-family: 'Josefin Sans', sans-serif;
  1012. width:300px;
  1013. font-size:35px;
  1014. top:170px;
  1015. left:380px;
  1016. letter-spacing:3px;
  1017. text-align:center;
  1018. z-index:999999999999;
  1019. }
  1020.  
  1021. #pagination a {
  1022. text-transform:uppercase;
  1023. color:#b3b3b3;
  1024. -webkit-filter: blur(0px);
  1025. -webkit-transition: 0.8s ease-in;
  1026. -moz-transition: 1s ease-in;
  1027. transition: 1s ease-in;
  1028. z-index:999999999999;
  1029. }
  1030.  
  1031. #pagination a:hover {
  1032. color:#fff;
  1033. -webkit-filter: blur(1px);
  1034. -webkit-transition: 0.2s ease-in;
  1035. -moz-transition: 1s ease-in;
  1036. transition: 1s ease-in;
  1037. }
  1038.  
  1039.  
  1040.  
  1041.  
  1042. /* MISC */
  1043.  
  1044.  
  1045.  
  1046. .audio {
  1047. width:300px;
  1048. padding-bottom:10px;
  1049. background-color:{color:#0b0b0b};}
  1050.  
  1051. .albumart {
  1052. float:left;
  1053. padding:0px 10px 10px 0px;}
  1054.  
  1055. .albumart img {
  1056. width:65px;
  1057. height:65px;}
  1058.  
  1059. .playercontainer {
  1060. text-align:left;
  1061. padding:10px;
  1062. background-color:#0b0b0b;
  1063. width:300px;}
  1064.  
  1065. .audioinfo {
  1066. padding:10px;
  1067. color:#a1a0a0;}
  1068.  
  1069.  
  1070.  
  1071.  
  1072. /* QUESTIONS & ANSWERS DETAILS */
  1073.  
  1074.  
  1075. #asker {
  1076. font-family: 'Raleway', sans-serif;
  1077. text-align:center;
  1078. padding-top: 10px;
  1079. margin-left:0px;
  1080. text-transform:uppercase;
  1081. color: #91a3ac;
  1082. font-size:20px;
  1083. padding:5px;
  1084. letter-spacing:0px
  1085. text-shadow:0 0 2px #aeaeae;
  1086. }
  1087.  
  1088.  
  1089. #asker a{
  1090. font-family: 'Raleway', sans-serif;
  1091. text-transform:uppercase;
  1092. font-size:20px;
  1093. letter-spacing: 0px;
  1094. text-shadow: none;
  1095. color: #91a3ac;
  1096. text-shadow:0 0 2px #1a1a1a;
  1097. -webkit-filter: blur(0.5px);
  1098. }
  1099.  
  1100.  
  1101. #asker a:hover {
  1102. color: #656565;
  1103. letter-spacing: 2px;
  1104. text-shadow:0 0 2px #000;
  1105. -webkit-filter: blur(1px);
  1106. -webkit-transition:all .5s ease-in-out;
  1107. -moz-transition:all .5s ease-in-out;
  1108. transition:all .5s ease-in-out;
  1109. }
  1110.  
  1111.  
  1112.  
  1113. #ask {
  1114. border-left: double 3px #000;
  1115. border-top: double 3px #000;
  1116. border-right: double 3px #000;
  1117. border-bottom: double 3px #000;
  1118. padding:2px;
  1119. color:#e6e6e6;
  1120. text-shadow:1px 1px 0px #000,
  1121. 1px -1px 0px #000,
  1122. -1px -1px 0px #000,
  1123. -1px 1px 0px #000,
  1124. 0px 1px 0px #000,
  1125. 0px -1px 0px #000,
  1126. 1px 0px 0px #000,
  1127. -1px 0px 0px #000;
  1128. font-size:7px;
  1129. text-align:center;
  1130. padding-top: 5px;
  1131. margin-left:0px;
  1132. text-transform:auto;
  1133. letter-spacing:3px
  1134. margin-top:-10px;
  1135. padding:5px;
  1136. background: #000;
  1137. background: url("https://i.pinimg.com/originals/fe/a7/ca/fea7ca7b4bff9c3459be0271b3bded4a.jpg");
  1138. background-repeat:repeat;
  1139. padding:2px;
  1140. color:#cacaca;
  1141. text-transform: uppercase;
  1142. border-bottom-left-radius: 20px;
  1143. border-top-right-radius: 20px;
  1144. padding:10px;
  1145. letter-spacing:2px;
  1146. border-bottom:solid 1px #1e1e1e;
  1147. border-top:solid 1px #1e1e1e;
  1148. }
  1149.  
  1150.  
  1151. .ans {
  1152. text-align:center;
  1153. padding:10px;
  1154. }
  1155.  
  1156.  
  1157.  
  1158. /* POST INFO DETAILS */
  1159.  
  1160.  
  1161. #info {
  1162. width:255px;
  1163. padding-top:4px;
  1164. padding-bottom:1px;
  1165. font-size:12px;
  1166. color:#adadab;
  1167. text-transform:uppercase;
  1168. letter-spacing:1px;
  1169. font-style:normal;
  1170. text-align:center;
  1171. padding:5px;
  1172. border-top:1px solid #1c1c1c;
  1173. -moz-transition-duration:0.2s;
  1174. -webkit-transition-duration:0.2s;
  1175. -o-transition-duration:0.2s;}
  1176.  
  1177.  
  1178. #info a {
  1179. font-family:calibri;
  1180. font-size:8px;
  1181. color:#9cb4c0;
  1182. text-shadow: 0px 0px 3px #7c1f1f;
  1183. padding:5px;
  1184. font-style:normal;}
  1185.  
  1186.  
  1187. #info a:hover {
  1188. color:#eee;
  1189. -webkit-filter: blur(0px);
  1190. -moz-transition-duration:0.2s;
  1191. -webkit-transition-duration:0.2s;
  1192. -o-transition-duration:0.2s;}
  1193.  
  1194.  
  1195. #tags {
  1196. color:#9cb4c0;
  1197. margin-top:5px;
  1198. padding-left:15px;
  1199. text-align:right;
  1200. line-height:9px;
  1201. text-transform:uppercase;
  1202. font-size:9px;
  1203. padding-right:10px;}
  1204.  
  1205. #tags a {
  1206. font-family:calibri;
  1207. color:#9cb4c0;}
  1208.  
  1209. #tags a:hover {
  1210. color:#eee;}
  1211.  
  1212.  
  1213.  
  1214. /* MISC 02. */
  1215.  
  1216.  
  1217.  
  1218. .note {
  1219. text-transform:uppercase;
  1220. font-style:normal;
  1221. letter-spacing:0px;
  1222. font-size: 10px;
  1223. text-align:left;
  1224. line-height:90%;
  1225. margin-left:-40px;}
  1226.  
  1227. .note li {
  1228. list-style-type:none;
  1229. border-bottom:0px solid {color:border};
  1230. padding:10px 25px 10px 25px;
  1231. text-align:left;
  1232. margin:0px;
  1233. -moz-transition-duration:0.5s;
  1234. -webkit-transition-duration:0.5s;
  1235. -o-transition-duration:0.5s;}
  1236.  
  1237. .note img.avatar {
  1238. margin-right: 10px;
  1239. width: 16px;
  1240. height: 16px;}
  1241.  
  1242.  
  1243.  
  1244.  
  1245. /* BASIC POP-UP DETAILS */
  1246.  
  1247.  
  1248.  
  1249. .popup_block{
  1250. display:none;
  1251. background:#85785f;
  1252. padding:20px;
  1253. border:0px solid #eee; /* if you want a solid white pop-up, delete this */
  1254. float:left;
  1255. height: 350px;
  1256. top:415px; left:400px;
  1257. position:fixed;
  1258. z-index: 99999;
  1259. -webkit-box-shadow: 0px 0px 0px #818081; /* delete for solid white */
  1260. -moz-box-shadow: 0px 0px 0px #818081; /* delete for solid white */
  1261. box-shadow: 0px 0px 0px #818081; /* delete for solid white */
  1262. }
  1263.  
  1264.  
  1265. *html #fade {position: absolute;}
  1266. *html .popup_block {position: absolute;}
  1267. #fade {
  1268. display:none;
  1269. position:fixed;
  1270. left:0px;
  1271. top:0px;
  1272. width:100%;
  1273. height:100%;
  1274. z-index:9999;
  1275. background:#000; /* change to #fff for solid white */
  1276. opacity:0; /* change to opacity:1; */
  1277. }
  1278.  
  1279.  
  1280.  
  1281. .popupnavlinks {
  1282. padding-top:5px;
  1283. text-align:center; }
  1284.  
  1285.  
  1286. .popupnavlinks a {
  1287. display:inline-block;
  1288. width:90px; height:4px;
  1289. margin:2px; padding:3px 6px 10px;
  1290. text-align:center;
  1291. background-image: url('');
  1292. background:#0d0d0d;
  1293. background-repeat:repeat;
  1294. background-attachment:fixed;
  1295. border-left: double 3px #000;
  1296. border-top: double 3px #000;
  1297. border-right: double 3px #000;
  1298. border-bottom: double 3px #000;
  1299. color:#e6e6e6;
  1300. font-size:9px;
  1301. font-family:calibri;
  1302. text-shadow:1px 1px 0px #000,
  1303. 1px -1px 0px #000,
  1304. -1px -1px 0px #000,
  1305. -1px 1px 0px #000,
  1306. 0px 1px 0px #000,
  1307. 0px -1px 0px #000,
  1308. 1px 0px 0px #000,
  1309. -1px 0px 0px #000;
  1310. display: inline-block;
  1311. cursor: pointer;
  1312. }
  1313.  
  1314.  
  1315.  
  1316. .popupnavlinks a:hover {
  1317. display:inline-block;
  1318. letter-spacing:2px; }
  1319.  
  1320.  
  1321.  
  1322. .popupclose {
  1323. float:right; top:0px; right:0px;
  1324. margin-top:-10px; margin-right:-10px;
  1325. font-family:'Scada', sans serif;
  1326. font-size:10px;
  1327. font-weight:bold }
  1328.  
  1329. .popupclose a {
  1330. color:#aaa }
  1331.  
  1332.  
  1333.  
  1334. /* TOOLTIP DETAILS */
  1335.  
  1336.  
  1337.  
  1338. #s-m-t-tooltip{
  1339. max-width:400px;
  1340. margin:15px;
  1341. padding:2px 8px;
  1342. background: #0b0b0b;
  1343. background-image:url('https://i.pinimg.com/originals/fe/a7/ca/fea7ca7b4bff9c3459be0271b3bded4a.jpg');
  1344. background-repeat:repeat;
  1345. background-attachment:fixed;
  1346. border-left: double 3px #000;
  1347. border-top: double 3px #000;
  1348. border-right: double 3px #000;
  1349. border-bottom: double 3px #000;
  1350. color:#e6e6e6;
  1351. text-shadow:1px 1px 0px #000,
  1352. 1px -1px 0px #000,
  1353. -1px -1px 0px #000,
  1354. -1px 1px 0px #000,
  1355. 0px 1px 0px #000,
  1356. 0px -1px 0px #000,
  1357. 1px 0px 0px #000,
  1358. -1px 0px 0px #000;
  1359. z-index:99999999999999999999;
  1360. font-size:9px;
  1361. letter-spacing:2px;
  1362. font-style:bold;
  1363. letter-spacing:2px;
  1364. font-family: calibri;
  1365. text-transform:uppercase;
  1366. box-shadow:1px 1px 3px rgba(0,0,0,.1);}
  1367.  
  1368.  
  1369.  
  1370. </style>
  1371.  
  1372. </head>
  1373.  
  1374. <body>
  1375.  
  1376.  
  1377.  
  1378. <!--
  1379. ♛ 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.
  1380. -->
  1381.  
  1382.  
  1383. <div id="content">
  1384.  
  1385. <div id="sidebar">
  1386.  
  1387. <img src="{image:Sidebar}" />
  1388.  
  1389. <div id="description">{description}</div>
  1390.  
  1391. </div>
  1392.  
  1393. <div id="pagination">
  1394. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">«</a> {/block:PreviousPage}{block:NextPage} <a href="{NextPage}">»</a>{/block:NextPage}{/block:Pagination}
  1395. </div>
  1396.  
  1397.  
  1398. <!--
  1399. ♛ CUSTOM LINKS
  1400. -->
  1401.  
  1402.  
  1403.  
  1404. <div id="links">
  1405.  
  1406.  
  1407. <div class="alinks">
  1408. <a href="/" title="Somebody will be waiting for me.">
  1409. I WANNA <br> <em><strong>FLY HIGH</strong></em>
  1410. </a>
  1411. </div>
  1412.  
  1413.  
  1414. <div class="blinks">
  1415. <a href="#?w=255" rel="box1" class="poplight" title="messages.">
  1416. <br> SO I CAN <br> REACH <br> <stong>THE HEAVEN</strong>
  1417. </a>
  1418. </div>
  1419.  
  1420. <div class="glinks">
  1421. <a href="#?w=255" rel="box6" class="poplight" title="connections."> <img src="https://66.media.tumblr.com/71a35adb53c7d986387768cb0cbec10b/70b5bcea809dc5b1-e4/s540x810/f5e3bdabdf985e2a1fcecd547c9b12eaaf289574.png"> </a>
  1422. </div>
  1423.  
  1424. <div class="clinks">
  1425. <a href="#?w=255" rel="box2" class="poplight" title="laws."> <img src="https://66.media.tumblr.com/71a35adb53c7d986387768cb0cbec10b/70b5bcea809dc5b1-e4/s540x810/f5e3bdabdf985e2a1fcecd547c9b12eaaf289574.png"> </a>
  1426. </div>
  1427.  
  1428.  
  1429. <div class="dlinks">
  1430. <a href="#?w=255" rel="box3" class="poplight" title="verses."> <img src="https://66.media.tumblr.com/71a35adb53c7d986387768cb0cbec10b/70b5bcea809dc5b1-e4/s540x810/f5e3bdabdf985e2a1fcecd547c9b12eaaf289574.png"> </a>
  1431. </div>
  1432.  
  1433.  
  1434. <div class="elinks">
  1435. <a href="#?w=255" rel="box4" class="poplight" title="about."> <img src="https://66.media.tumblr.com/71a35adb53c7d986387768cb0cbec10b/70b5bcea809dc5b1-e4/s540x810/f5e3bdabdf985e2a1fcecd547c9b12eaaf289574.png"> </a>
  1436. </div>
  1437.  
  1438.  
  1439. <div class="flinks">
  1440. <a href="#?w=255" rel="box5" class="poplight" title="the map."> <img src="https://66.media.tumblr.com/71a35adb53c7d986387768cb0cbec10b/70b5bcea809dc5b1-e4/s540x810/f5e3bdabdf985e2a1fcecd547c9b12eaaf289574.png"> </a>
  1441. </div>
  1442.  
  1443.  
  1444. <div class="credit">
  1445. <a href="https://agirlingrey.tumblr.com/" title="theme by agirlingrey.">A.</a>
  1446. </div>
  1447.  
  1448.  
  1449. </div>
  1450.  
  1451.  
  1452. <!--
  1453. ♛ CUSTOM LINKS ENDS
  1454. -->
  1455.  
  1456.  
  1457.  
  1458. <div id="container">
  1459.  
  1460. <div id="content"><div id="posts">
  1461. {block:Posts}
  1462.  
  1463.  
  1464. {block:Quote}<quotetext>"{Quote}"</quotetext>&nbsp; <br><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; — {Source} {/block:Quote}
  1465. {block:Title}<h1>{Title}&nbsp;</h1>{/block:Title}
  1466. {block:Text}{Body}{/block:Text}
  1467.  
  1468. {block:Link}<a href="{URL}" class="link" {Target}><h1>{Name}&nbsp;</h1></a>
  1469.  
  1470. {block:Description}<P>{Description}</p>{/block:Description}{/block:Link}
  1471.  
  1472. {block:Photo}<center>{LinkOpenTag}<img src="{PhotoURL-HighRes}" width="360px">{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1473. {block:Photoset}<center>{Photoset}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  1474.  
  1475. {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}
  1476.  
  1477. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1478.  
  1479.  
  1480. {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}
  1481.  
  1482.  
  1483. {block:Audio}<div class="audio">
  1484.  
  1485. {block:AlbumArt}
  1486. {/block:AlbumArt}
  1487.  
  1488.  
  1489. <div class="audioinfo">{block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}{block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  1490. {/block:ExternalAudio}<b>Played:</b> {PlayCount} times</div>
  1491. <br><div class="playercontainer">{AudioPlayerBlack}</div></div>
  1492. {block:Caption}{Caption}{/block:Caption}<br>{/block:Audio}
  1493.  
  1494.  
  1495. <!--
  1496. ♛ INFO AND SYMBOLS
  1497. -->
  1498.  
  1499. <div id="info">
  1500. {block:Date}
  1501. <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;"> <img src="https://vignette3.wikia.nocookie.net/mspaintadventures/images/f/f0/Crowkernel.png/revision/latest/scale-to-width-down/20?cb=20100825225532"> </a> {/block:Date}
  1502.  
  1503. {block:RebloggedFrom}
  1504. <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;"> <img src="https://vignette3.wikia.nocookie.net/mspaintadventures/images/f/f0/Crowkernel.png/revision/latest/scale-to-width-down/20?cb=20100825225532"> </a>
  1505. {/block:RebloggedFrom}
  1506.  
  1507. {block:ContentSource}
  1508. <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;"> <img src="https://vignette3.wikia.nocookie.net/mspaintadventures/images/f/f0/Crowkernel.png/revision/latest/scale-to-width-down/20?cb=20100825225532"> </a>
  1509. {/block:ContentSource}
  1510.  
  1511. {block:NoteCount}
  1512. <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;"> <img src="https://vignette3.wikia.nocookie.net/mspaintadventures/images/f/f0/Crowkernel.png/revision/latest/scale-to-width-down/20?cb=20100825225532"> </a>
  1513. {/block:NoteCount}
  1514.  
  1515. <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;"> <img src="https://vignette3.wikia.nocookie.net/mspaintadventures/images/f/f0/Crowkernel.png/revision/latest/scale-to-width-down/20?cb=20100825225532"> </a></br>
  1516. {/block:RebloggedFrom}
  1517.  
  1518.  
  1519. <br>
  1520.  
  1521.  
  1522. <!--
  1523. ♛ INFO AND SYMBOLS ENDS
  1524. -->
  1525.  
  1526.  
  1527. <div id="tags" style="margin-bottom:50px">{block:HasTags}{block:Tags} • <a href="{TagURL}" title="{Tag}">{Tag}</a>{/block:Tags}{/block:HasTags}</div></div>
  1528.  
  1529. <div class="note">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  1530. {/block:Posts}
  1531. </div>
  1532. </div>
  1533. </div>
  1534.  
  1535.  
  1536.  
  1537. </body>
  1538.  
  1539.  
  1540.  
  1541. <!--
  1542. ♛ POP UP PAGES !!!
  1543. -->
  1544.  
  1545.  
  1546.  
  1547. <div id="box1" class="popup_block">
  1548.  
  1549. <h3>
  1550. dark wings, dark words
  1551. </h3>
  1552.  
  1553. <p><iframe frameborder="0" height="250" id="ask_form" scrolling="yes" src="https://www.tumblr.com/ask_form/davespritius.tumblr.com" width="100%"></iframe></p>
  1554.  
  1555. </div>
  1556.  
  1557. </center>
  1558.  
  1559.  
  1560.  
  1561. <div id="box2" class="popup_block">
  1562.  
  1563. <div style="width:auto;height:350px;overflow:scroll;padding:5px;">
  1564.  
  1565.  
  1566. <h1>BLOGGER</h1>
  1567. <p>Hey! I&rsquo;m Elias&nbsp; !&nbsp; I used to be in the HS fandom&nbsp; ,&nbsp; but I&rsquo;ve moved on to better pastures&nbsp; !&nbsp; Uhm&nbsp; ,&nbsp; I tend get hyper attached to things sometimes and tend to go a little overboard&nbsp; ,&nbsp; so let me know if it bothers you at all&nbsp; !!&nbsp; I&rsquo;m also really bad at reading people so tell me when I&rsquo;ve crossed over the line please&nbsp; .&nbsp; Communication is a big must for me&nbsp; !!&nbsp; I was everyone to enjoy their stay as much as me&nbsp; !!</p>
  1568. <p>I&rsquo;d appreciate it if real life needles are tagged&nbsp; ,&nbsp; or just needles&nbsp; .&nbsp; They really creep me out&nbsp; .&nbsp; If not I&rsquo;m not gonna die or anything&nbsp; , haha&nbsp; !!</p>
  1569. <h1>INTERACTIONS</h1>
  1570. <p>My blog is selective, private, and mutuals only&nbsp; ,&nbsp; so I only really interact with people I&rsquo;m following&nbsp; !! It&rsquo;s nothing bad on you I&rsquo;m just kinda picky I guess&nbsp; ,&nbsp; haha&nbsp; .&nbsp; If we are mutuals you can shoot me IMs/Asks or whatever for plots and the like&nbsp; !!</p>
  1571. <h1>FOLLOWING</h1>
  1572. <p>If I follow you it means im interested&nbsp; !!&nbsp; Or just really like ur posts&nbsp; ,&nbsp; but mainly for interactions if they&rsquo;re possible&nbsp; !!&nbsp; However&nbsp; ,&nbsp; I do have a few things that will keep me from following/unfollowing you&nbsp; .&nbsp; If you interact with certain people that i have had issues with in the past i wont follow you&nbsp; ,&nbsp; im sorry but it&rsquo;s for my own personal health&nbsp; .&nbsp; qwq&nbsp; Ur free to still follow me though and send asks&nbsp; ,&nbsp; but they wont turn into threads more than likely&nbsp; ,&nbsp; ahha;;</p>
  1573. <h1>SHIPPING</h1>
  1574. <p>Sign me TF up&nbsp; ,&nbsp; man&nbsp; .&nbsp; Please do talk with me about it first though&nbsp; !!&nbsp; sometimes characters arent compatible though&nbsp; ,&nbsp; so its always best to to talk things out first&nbsp; !!</p>
  1575. <h1>NSFW</h1>
  1576. <p>Here&rsquo;s some stuff you&rsquo;ll probably want to tagg if u dont like it&nbsp; !!&nbsp; Animal death&nbsp; ,&nbsp; gore&nbsp; ,&nbsp; violence&nbsp; ,&nbsp; and death&nbsp; .&nbsp; Lemme know if i need to tag anything for you and ill be happy too !!</p>
  1577. <p>I WONT RP SMUT WITH MINORS&nbsp; !!&nbsp; If i find out you lied abt ur age and have rped smut with me i&rsquo;ll probably block you bc that&rsquo;s not really cool at all man&nbsp; .</p>
  1578.  
  1579. </div>
  1580. </div>
  1581.  
  1582.  
  1583.  
  1584.  
  1585. <div id="box3" class="popup_block">
  1586.  
  1587. <h3>verses</h3>
  1588.  
  1589. <ul id="tabs">
  1590. <li class="active">MAIN.</li>
  1591. &nbsp;
  1592. <li>AU.</li>
  1593. &nbsp;
  1594. <li>GROUP.</li>
  1595. </ul>
  1596.  
  1597. <div style="width:auto;height:270px;overflow:scroll;padding:5px;">
  1598.  
  1599. <ul id="tab">
  1600. <li class="active">
  1601.  
  1602.  
  1603. <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;">
  1604. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">VERSE NAME.</a></big>
  1605.  
  1606. <br><br>
  1607.  
  1608. 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.
  1609.  
  1610. <br><br><br>
  1611.  
  1612. <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;">
  1613. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">VERSE NAME.</a></big>
  1614.  
  1615. <br><br>
  1616.  
  1617. 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.
  1618.  
  1619.  
  1620.  
  1621. </li>
  1622. <li>
  1623.  
  1624.  
  1625.  
  1626. <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;">
  1627. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">VERSE NAME.</a></big>
  1628.  
  1629. <br><br>
  1630.  
  1631. 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.
  1632.  
  1633.  
  1634. <br><br><br>
  1635.  
  1636. <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;">
  1637. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">VERSE NAME.</a></big>
  1638.  
  1639. <br><br>
  1640.  
  1641. 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.
  1642.  
  1643.  
  1644.  
  1645. </li>
  1646. <li>
  1647.  
  1648.  
  1649. <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;">
  1650. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">VERSE NAME.</a></big>
  1651.  
  1652. <br><br>
  1653.  
  1654. 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.
  1655.  
  1656.  
  1657. <br><br><br>
  1658.  
  1659. <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;">
  1660. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">VERSE NAME.</a></big>
  1661.  
  1662. <br><br>
  1663.  
  1664. 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.
  1665.  
  1666.  
  1667. </li>
  1668. </ul>
  1669.  
  1670.  
  1671. </div>
  1672. </div>
  1673.  
  1674.  
  1675.  
  1676. <div id="box4" class="popup_block">
  1677.  
  1678. <div style="width:auto;height:350px;overflow:scroll;padding:5px;">
  1679.  
  1680. <center>
  1681.  
  1682. <span style="line-height:5px">
  1683.  
  1684. "i turned into a <i>bird</i> and got in a <b>fight</b>"
  1685.  
  1686. <br><br>
  1687.  
  1688. </center>
  1689.  
  1690. <h3>BASIC INFO</h3>
  1691.  
  1692. <b>FULL NAME:</b> Dave Strider<br>
  1693. <b>ALIAS:</b> Davesprite; Dylan; Mac; Cheese; Mac n' Cheese<br>
  1694. <b>AGE:</b> 26<br>
  1695. <b>DATE OF BIRTH:</b> [REDACTED] <br>
  1696. <b>ETHNICITY:</b> Korean-American<br>
  1697. SEXUAL ORINTAION:</b> Homosexual Panromantic <br>
  1698. <b>GENDER:</b> Male<br>
  1699. <b>PRONOUNS:</b> He/Him <br><br>
  1700.  
  1701. <h3>PHYSICAL INFO</h3>
  1702.  
  1703. <b>FACE CLAIM:</b> Jungkook<br>
  1704. <b>VOICE CLAIM:</b> Jungkook <br>
  1705. <b>HEIGHT:</b> 8'7"; that includes his tail<br>
  1706. <b>WEIGHT:</b> 100 lbs<br>
  1707. <b>BUILD:</b> Skinny, Athletic<br>
  1708. <b>HAIR COLOR:</b> Orange<br>
  1709. <b>SKIN TONE:</b> Peachy-orange<br>
  1710. <b>DOMINATE HAND:</b> Ambidextrous<br>
  1711. <b>ACCENT:</b> Korean-American mix.<br>
  1712. <b>TATTOO(S):</b> N/A<br>
  1713. <b>SCAR(S):</b> N/A<br>
  1714. <b>PEIRCINGS:</b> N/A<br>
  1715. <b>GLASSES:</b> N/A<br><br>
  1716.  
  1717. <h3>PERSONALITY INFO</h3>
  1718.  
  1719. <b>JUNG TYPE:</b> ENFP<br>
  1720. <b>MORAL ALIGNMENT:</b> Chaotic Good<br>
  1721. <b>TEMPERMENT:</b> Sanguine<br>
  1722. <b>ANGER TYPE:</b> Cold fury<br>
  1723. <b>APPROACHABILITY:</b> High<br>
  1724. <b>SCHEMATA:</b> Unrelenting Standards<br>
  1725. <b>INTELLEGECE TYPE:</b> Visual && Spatial<br>
  1726. <b>PHOBIA(S):</b> <br><br>
  1727.  
  1728. <h3>BACKGROUND INFO</h3>
  1729.  
  1730. <b>HOME PLANET:</b> Gallifrey<br>
  1731. <b>CURRENT RESIDENT PLANET:</b> Earth<br>
  1732. <b>LANGUAGE(S):</b> English, Korean<br>
  1733. <b>SOCIAL CLASS:</b> High class<br>
  1734. <b>PARENT(S):</b> [REDACTED]<br>
  1735.  
  1736. </div>
  1737. </div>
  1738.  
  1739.  
  1740.  
  1741. <div id="box5" class="popup_block">
  1742.  
  1743. <div style="width:auto;height:350px;overflow:scroll;padding:5px;">
  1744.  
  1745. <center>
  1746.  
  1747. <h3>NAVIGATION</h3>
  1748.  
  1749.  
  1750. <div class="popupnavlinks">
  1751.  
  1752. <a href="/tagged/whatever">LINK</a>
  1753. <a href="/tagged/whatever">LINK</a>
  1754. <br>
  1755. <a href="/tagged/whatever">LINK</a>
  1756. <a href="/tagged/whatever">LINK</a>
  1757. <br>
  1758. <a href="/tagged/whatever">LINK</a>
  1759. <a href="/tagged/whatever">LINK</a>
  1760. <br>
  1761. <a href="/tagged/whatever">LINK</a>
  1762. <a href="/tagged/whatever">LINK</a>
  1763. <br>
  1764. <a href="/tagged/whatever">LINK</a>
  1765. <a href="/tagged/whatever">LINK</a>
  1766. <br>
  1767. <a href="/tagged/whatever">LINK</a>
  1768. <a href="/tagged/whatever">LINK</a>
  1769. <br>
  1770. <a href="/tagged/whatever">LINK</a>
  1771. <a href="/tagged/whatever">LINK</a>
  1772.  
  1773.  
  1774. <br><br><br>
  1775.  
  1776.  
  1777. </div>
  1778. </div>
  1779. </div>
  1780. </div>
  1781.  
  1782.  
  1783. <div id="box6" class="popup_block">
  1784.  
  1785. <h3>connections</h3>
  1786.  
  1787. <ul id="tabs">
  1788. <li class="active">I.</li>
  1789. &nbsp;
  1790. <li>II.</li>
  1791. &nbsp;
  1792. <li>III.</li>
  1793. </ul>
  1794.  
  1795. <div style="width:auto;height:270px;overflow:scroll;padding:5px;">
  1796.  
  1797. <ul id="tab">
  1798. <li class="active">
  1799.  
  1800.  
  1801. <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;">
  1802. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">VERSE NAME.</a></big>
  1803.  
  1804. <br><br>
  1805.  
  1806. 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.
  1807.  
  1808. <br><br><br>
  1809.  
  1810. <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;">
  1811. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">VERSE NAME.</a></big>
  1812.  
  1813. <br><br>
  1814.  
  1815. 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.
  1816.  
  1817.  
  1818.  
  1819. </li>
  1820. <li>
  1821.  
  1822.  
  1823.  
  1824. <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;">
  1825. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">VERSE NAME.</a></big>
  1826.  
  1827. <br><br>
  1828.  
  1829. 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.
  1830.  
  1831.  
  1832. <br><br><br>
  1833.  
  1834. <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;">
  1835. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">VERSE NAME.</a></big>
  1836.  
  1837. <br><br>
  1838.  
  1839. 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.
  1840.  
  1841.  
  1842.  
  1843. </li>
  1844. <li>
  1845.  
  1846.  
  1847. <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;">
  1848. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">VERSE NAME.</a></big>
  1849.  
  1850. <br><br>
  1851.  
  1852. 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.
  1853.  
  1854.  
  1855. <br><br><br>
  1856.  
  1857. <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;">
  1858. <big><a href="/tagged/YOUR-VERSE-TAG-HERE">VERSE NAME.</a></big>
  1859.  
  1860. <br><br>
  1861.  
  1862. 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.
  1863.  
  1864.  
  1865. </li>
  1866. </ul>
  1867.  
  1868.  
  1869. </div>
  1870. </div>
  1871. </div>
  1872.  
  1873.  
  1874.  
  1875.  
  1876. </div>
  1877. </div>
  1878.  
  1879.  
  1880.  
  1881. <!--
  1882. ♛ CUSTOM SIDEBAR TEXT
  1883. -->
  1884.  
  1885.  
  1886.  
  1887. <div id="bite">
  1888. <div id="thekey"></div>
  1889. <div class="death">
  1890. <div id="actualnews">
  1891.  
  1892. <center>
  1893.  
  1894. <div style="width:auto;height:280px;overflow:scroll;padding:5px;">
  1895.  
  1896. <h4>
  1897. you find them awake and theyre like
  1898. </h4>
  1899.  
  1900. Indie Davesprite.<br>
  1901. Flown by Elias<br>
  1902. Est. 5.24.19
  1903.  
  1904. <h4>
  1905. what the fuck are you doing here already
  1906. </h4>
  1907.  
  1908. Singleship/multiverse<br>
  1909. Crossover/Oc friendly<br><br>
  1910. Read all pages before interacting<br>
  1911. Interactions are mainly face to face porta.
  1912.  
  1913. <h4>
  1914. which is what happened last time i saw him
  1915. </h4>
  1916.  
  1917. IMs are open for both OOC and IC purposes<br>
  1918. <a href="feathertcrn.tumblr.com/mr">mobile rules link</a>
  1919.  
  1920. <h4>
  1921. before i became a sprite
  1922. </h4>
  1923.  
  1924. <br>
  1925.  
  1926.  
  1927.  
  1928. </center>
  1929.  
  1930.  
  1931. </div>
  1932. </div></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement