· 9 years ago · Nov 01, 2016, 01:20 AM
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
7 WINTER'S LADY THEMES
8 â™› this code was made by AGIRLINGREY@TUMBLR.
9 â™› do not remove credit or claim as your own.
10
11-->
12
13
14
15
16<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
17<head>
18
19
20
21<!--
22POP UP SCRIPT
23-->
24
25
26<script type="text/javascript"
27src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
28<script>
29$(document).ready(function() {
30//
31$('a.poplight[href^=#]').click(function() {
32var popID = $(this).attr('rel'); //Get Popup Name
33var popURL = $(this).attr('href'); //Get Popup href to define size
34var query= popURL.split('?');
35var dim= query[1].split('&');
36var popWidth = dim[0].split('=')[1]; //Gets the first query string value
37$('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
38var popMargTop = ($('#' + popID).height() + 80) / 2;
39var popMargLeft = ($('#' + popID).width() + 80) / 2;
40//Apply Margin to Popup
41$('#' + popID).css({
42'margin-top' : -popMargTop,
43'margin-left' : -popMargLeft
44});
45$('body').append('<div id="fade"></div>');
46$('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
47return false;
48});
49$('a.close, #fade').live('click', function() {
50$('#fade , .popup_block').fadeOut(function() {
51$('#fade, a.close').remove(); //fade them both out
52});
53return false;
54});
55});
56</script>
57
58
59
60<!--
61VERSE TABS SCRIPT
62-->
63
64
65<script>
66
67$(document).ready(function(){
68 $("ul#tabs li").click(function(e){
69 if (!$(this).hasClass("active")) {
70 var tabNum = $(this).index();
71 var nthChild = tabNum+1;
72 $("ul#tabs li.active").removeClass("active");
73 $(this).addClass("active");
74 $("ul#tab li.active").removeClass("active");
75 $("ul#tab li:nth-child("+nthChild+")").addClass("active");
76 }
77 });
78});
79</script>
80
81
82
83
84<!--
85TOOLTIP STYLING SCRIPT
86-->
87
88
89<link href="http://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
90<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
91<script src="http://static.tumblr.com/5omyijl/RZtn2yg9v/jquery.style-my-tooltips.js"></script>
92<script>
93(function($){
94$(document).ready(function(){
95$("[title]").style_my_tooltips({
96tip_follows_cursor:true,
97tip_delay_time:200,
98tip_fade_speed:500
99});
100});
101})(jQuery);
102</script>
103
104
105
106
107<!--
108BLOBS IN A JAR
109-->
110
111
112<script type="text/javascript">
113// <![CDATA[
114var colour="#51575b"; // what colour are the blobs
115var speed=66; // speed of animation, lower is faster
116var blobs=10; // how many blobs are in the jar
117var charc=String.fromCharCode(9679); // a blob - can be changed to charc='hello' or charc='*' for a different effect
118
119/***************************\
120* Blobs in a Jar Effect *
121*(c)2012-13 mf2fm web-design*
122* http://www.mf2fm.com/rv *
123* DON'T EDIT BELOW THIS BOX *
124\***************************/
125
126var div;
127var xpos=new Array();
128var ypos=new Array();
129var zpos=new Array();
130var dx=new Array();
131var dy=new Array();
132var dz=new Array();
133var blob=new Array();
134var swide=800;
135var shigh=600;
136var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
137
138function addLoadEvent(funky) {
139 var oldonload=window.onload;
140 if (typeof(oldonload)!='function') window.onload=funky;
141 else window.onload=function() {
142 if (oldonload) oldonload();
143 funky();
144 }
145}
146
147addLoadEvent(fill_the_jar);
148
149function fill_the_jar() {
150 var i, dvs;
151 div=document.createElement('div');
152 dvs=div.style;
153 dvs.position='fixed';
154 dvs.left='0px';
155 dvs.top='0px';
156 dvs.width='1px';
157 dvs.height='1px';
158 document.body.appendChild(div);
159 set_width();
160 for (i=0; i<blobs; i++) {
161 add_blob(i);
162 jamjar(i);
163 }
164}
165
166function add_blob(ref) {
167 var dv, sy;
168 dv=document.createElement('div');
169 sy=dv.style;
170 sy.position='absolute';
171 sy.textAlign='center';
172 if (ie_version && ie_version<10) {
173 sy.fontSize="10px";
174 sy.width="100px";
175 sy.height="100px";
176 sy.paddingTop="40px";
177 sy.color=colour;
178 dv.appendChild(document.createTextNode(charc));
179 }
180 else if (ie_version) {
181 sy.fontSize="1px";
182 sy.width="0px";
183 sy.height="0px";
184 }
185 else {
186 dv.appendChild(document.createTextNode(charc));
187 sy.color='rgba(0,0,0,0)';
188 }
189 ypos[ref]=Math.floor(shigh*Math.random());
190 dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
191 xpos[ref]=Math.floor(swide*Math.random());
192 dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
193 zpos[ref]=Math.random()*20;
194 dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
195 blob[ref]=dv;
196 div.appendChild(blob[ref]);
197 set_blob(ref);
198}
199
200function rejig(ref, xy) {
201 if (xy=='y') {
202 dx[ref]=(0.5+Math.random())*sign(dx[ref]);
203 dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
204 }
205 else {
206 dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
207 dy[ref]=(0.5+Math.random())*sign(dy[ref]);
208 }
209}
210
211function sign(a) {
212 if (a<0) return (-2);
213 else if (a>0) return (2);
214 else return (0);
215}
216
217function set_blob(ref) {
218 var sy;
219 sy=blob[ref].style;
220 sy.top=ypos[ref]+'px';
221 sy.left=xpos[ref]+'px';
222 if (ie_version && ie_version<10) {
223 sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
224 sy.fontSize=30-zpos[ref]+"px";
225 }
226 else if (ie_version) {
227 sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
228 }
229 else {
230 sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
231 sy.fontSize=40+zpos[ref]+'px';
232 }
233}
234
235function jamjar(ref) {
236 if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
237 ypos[ref]+=dy[ref];
238 if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
239 xpos[ref]+=dx[ref];
240 if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
241 zpos[ref]+=dz[ref];
242 set_blob(ref);
243 setTimeout("jamjar("+ref+")", speed);
244}
245
246window.onresize=set_width;
247function set_width() {
248 var sw_min=999999;
249 var sh_min=999999;
250 if (document.documentElement && document.documentElement.clientWidth) {
251 if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
252 if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
253 }
254 if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
255 if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
256 if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
257 }
258 if (document.body.clientWidth) {
259 if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
260 if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
261 }
262 if (sw_min==999999 || sh_min==999999) {
263 sw_min=800;
264 sh_min=600;
265 }
266 swide=sw_min;
267 shigh=sh_min;
268}
269// ]]>
270</script>
271
272
273
274
275
276<title>{Title}</title>
277<link rel="shortcut icon" href="{Favicon}">
278<link rel="alternate" type="application/rss+xml" href="{RSS}">
279{block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
280
281<meta name="color:background" content="#000000"/>
282<meta name="color:text" content="#a1a0a0"/>
283<meta name="color:description" content=transparent/>
284<meta name="color:link" content="#e0d3ed"/>
285<meta name="color:link hover" content="#989898" />
286<meta name="color:bold" content="#cdc2f0" />
287<meta name="color:italic" content="#ffffff" />
288<meta name="color:border" content="#292828" />
289<meta name="color:scrollbar" content="#ffffff" />
290<meta name="color:postbg" content=transparent />
291<meta name="color:blockquote" content="#121212" />
292<meta name="color:tags" content="#e0d3ed"/>
293
294<meta name="image:background" content=""/>
295
296<meta name="text:link 1" content="link 1"/>
297<meta name="text:link 1 url" content="/"/>
298<meta name="text:link 2" content="link 2"/>
299<meta name="text:link 2 url" content="/"/>
300<meta name="text:link 3" content="link 3"/>
301<meta name="text:link 3 url" content="/"/>
302<meta name="text:link 4" content="link 4"/>
303<meta name="text:link 4 url" content="/"/>
304<meta name="text:link 5" content="link 5"/>
305<meta name="text:link 5 url" content="/"/>
306<meta name="text:link 6" content="link 6"/>
307<meta name="text:link 6 url" content="/"/>
308<meta name="text:link 7" content="link 7"/>
309<meta name="text:link 7 url" content="/"/>
310<meta name="text:link 8" content="link 8"/>
311<meta name="text:link 8 url" content="/"/>
312
313<meta name="if:tinycursor" content="1"/>
314<meta name="if:greyscale" content="0"/>
315<meta name="text:text size" content="12px" />
316<meta name="if:showsubmit" content="0"/>
317
318<meta name="color:updates bar" content="#070707"/>
319<meta name="image:Updates" content=""/>
320<meta name="image:thekey" content=""/>
321
322
323
324<!--
325CUSTOM FONTS
326-->
327
328
329<link href='https://fonts.googleapis.com/css?family=Playfair+Display' rel='stylesheet' type='text/css'>
330
331<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
332
333<link href='https://fonts.googleapis.com/css?family=Arizonia' rel='stylesheet' type='text/css'>
334
335<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed' rel='stylesheet' type='text/css'>
336
337
338<style type="text/css">
339
340
341
342 /* the hover update thing */
343
344
345
346#bite
347#bite a{
348display:block
349}
350#bite .death {
351margin-top:0px;filter: alpha(opacity = 1.0);
352opacity:1.0;-webkit-transition: all 0.5s ease-out;
353-moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
354}
355
356#bite:hover .death {
357margin-top:0px;
358-webkit-transition: all 0.8s ease-out;
359-moz-transition: all 0.8s ease-out;
360transition: all 0.8s ease-out;
361filter: alpha(opacity = 100);
362filter: alpha(opacity = 100);
363opacity:100;
364}
365
366
367 /* selection font and background */
368
369
370::selection {
371background: #444;
372color:#fff; }
373
374
375::-moz-selection {
376background: #444;
377color:#fff; }
378
379
380
381 /* scrollbar details */
382
383
384
385::-webkit-scrollbar {
386height: 0px;
387width: 2px;
388background:transparent;
389border-left:0px solid transparent;
390border-right:0px solid transparent;}
391
392
393::-webkit-scrollbar-thumb {
394background:transparent;}
395
396
397
398
399
400 /* the cursor */
401
402
403{block:iftinycursor}
404body, a, a:hover{
405cursor: url('https://s-media-cache-ak0.pinimg.com/originals/28/06/de/2806debcbe881d9a4d6f27cdf3a46916.jpg'), progress;}
406{/block:iftinycursor}
407
408iframe#tumblr_controls {
409right:3px !important;
410position: fixed !important;
411-webkit-transition: opacity 0.7s
412linear;opacity: 0.2;
413-webkit-transition: all 0.8s ease-out;
414-moz-transition: all 0.8s ease-out;
415transition: all 0.8s ease-out;}
416
417iframe#tumblr_controls:hover{
418-webkit-transition: opacity 0.7s linear;
419opacity: 1;
420-webkit-transition: all 0.4s ease-out;
421-moz-transition: all 0.4s ease-out;
422transition: all 0.4s ease-out;}
423
424
425
426 /* general look & background */
427
428
429body {
430 background:#51575b;
431 background-image:url('http://i.imgur.com/A0ywRv3.png');
432 background-attachment: fixed;
433 background-repeat: no-repeat;
434 background-position: left top;
435 color:#fff;
436 font-family: calibri;
437 text-align:justify;
438 font-size: 10px;
439 letter-spacing:1px;
440 line-height:135%;
441
442}
443
444
445
446 /* the verses tabs */
447
448
449ul#tabs {
450 list-style-type: none;
451 padding: 0;
452 text-align: center;
453 font-size:8px;
454 letter-spacing:1px;
455}
456
457ul#tabs li {
458 display: inline-block;
459 background-color: transparent;
460 border: solid 0px #262626;
461 padding: 4px 12px;
462 margin-bottom: 4px;
463 color: #1b1b1b;
464 cursor: pointer;
465}
466
467ul#tabs li:hover {
468 background-color: #b0b0b0;
469}
470
471ul#tabs li.active {
472 background-color: #0f0f0f;
473 background-image:url('https://s-media-cache-ak0.pinimg.com/originals/28/06/de/2806debcbe881d9a4d6f27cdf3a46916.jpg');
474 border: 1px solid #9b9b9b;
475}
476
477ul#tab {
478 list-style-type: none;
479 margin: 0;
480 padding: 0;
481}
482
483ul#tab li {
484 display: none;
485}
486
487ul#tab li.active {
488 display: block;
489}
490
491
492
493
494 /* back to general look & details */
495
496
497
498a:link, a:active, a:visited {
499 text-decoration: none;
500 color: #fff;
501 -moz-transition-duration:.6s;
502 -webkit-transition-duration:.6s;
503 -o-transition-duration:.6s;
504 -webkit-filter: blur(0px);}
505
506a:hover {
507 color: #8f8f8f;
508 -moz-transition-duration:.6s;
509 -webkit-transition-duration:.6s;
510 -o-transition-duration:.6s;
511 -webkit-filter: blur(1px);}
512
513
514
515h1 {
516 background-color: transparent;
517 font-family: 'Montserrat', sans-serif;
518 font-size: 16px;
519 line-height: 20px;
520 letter-spacing: 2px;
521 text-align: center;
522 text-transform:uppercase;
523 color: #d1d1d1;
524 }
525
526
527h2 {
528 background-color: transparent;
529 font-family: 'Montserrat', sans-serif;
530 font-size: 15px;
531 line-height: 16px;
532 letter-spacing: 2px;
533 text-align: left;
534 text-transform:uppercase;
535 color: #d1d1d1;
536 }
537
538
539
540h3 {
541 background-color: transparent;
542 background-image:url("https://s-media-cache-ak0.pinimg.com/originals/28/06/de/2806debcbe881d9a4d6f27cdf3a46916.jpg");
543 border:1px dotted #9b9b9b;
544 font-family: arial;
545 font-weight:bold;
546 color: #d1d1d1;
547 text-shadow:0px 0px 2px #2c2f34;
548 font-size: 10px;
549 line-height: 12px;
550 letter-spacing: 2px;
551 text-align: center;
552 text-transform:uppercase;
553 padding:1px;
554 line-height:120%;}
555
556
557
558quotetext {
559 background-color: transparent;
560 font-family: times;
561 font-size: 14px;
562 line-height: 20px;
563 letter-spacing: 2px;
564 text-align: center;
565 text-transform:uppercase;
566 color: #dadada;
567 }
568
569
570
571blockquote {
572 word-wrap: break-word;
573 padding:2px 7px;
574 margin:3px 0 3px 10px;
575 border-left:1px solid {color:border};
576 background-color:transparent;}
577
578
579blockquote img{
580 max-width:100%;
581 height:auto;
582}
583
584blockquote blockquote img{
585 max-width:100%;
586 height:auto;
587}
588
589
590
591
592
593
594
595b, bold {
596 font-size:10px;
597 text-transform:uppercase;
598 letter-spacing:1px;
599 font-family: times;
600 color: #8f8f8f;
601 text-shadow:1px 1px 0 #343434;
602}
603
604
605i, italic {
606 font-size:12px;
607 color: #8f8f8f;
608 font-family: 'Roboto Condensed', sans-serif;
609 text-shadow: 0px 0px 2px #5a5a5a;
610 letter-spacing:1px;
611 text-transform:lowercase;
612}
613
614
615
616p {
617 margin-top:5px;
618 margin-bottom:5px;}
619
620
621ol {
622 list-style:normal;}
623
624
625ul {
626 list-style:square;}
627
628
629small {
630 font-size:10px}
631
632
633sup,sub {
634 font-size:11px}
635
636
637pre {
638 font-size: 10px;
639 letter-spacing:3px;
640 background-color:#7f7f7f;
641 font-family: "Times New Roman", Times, serif;
642 font-style: none;
643 text-align:center;
644}
645
646
647
648big {
649 font-size:14px;
650 text-transform:uppercase;
651 letter-spacing:2px;
652 font-family: "Times New Roman", Times, serif;
653 color: #b8b8b8;
654 text-shadow: 0px 0px 2px #383838;
655}
656
657
658
659{block:IfGreyscale}
660
661img {
662 -webkit-filter:grayscale(100%);
663 -webkit-transition: all 0.9s ease-in-out;
664 -moz-transition: all 0.9s ease-in-out;
665 -o-transition: all 0.9s ease-in-out;
666 -ms-transition: all 0.9s ease-in-out;
667 transition: all 0.9s ease-in-out;}
668
669img:hover {
670 -webkit-filter:none;}
671
672.html_photoset {
673 -webkit-filter: grayscale(100%);
674 -webkit-transition: all 0.9s ease-in-out;
675 -moz-transition: all 0.9s ease-in-out;
676 -o-transition: all 0.9s ease-in-out;
677 -ms-transition: all 0.9s ease-in-out;
678 transition: all 0.9s ease-in-out;}
679
680.html_photoset:hover {
681 -webkit-filter: none;}
682
683{/block:IfGreyscale}
684
685
686
687#pcontainer {
688 background-color:transparent;
689 width:250px;
690 height:300px;
691 padding: 20px;
692 top:200px;
693 margin-left: 325px;
694 position:relative;
695 overflow-y:scroll;
696 overflow-x:hidden;
697 -webkit-mask-image: -webkit-gradient(
698 linear, center 75%, center bottom,
699 from(rgba(0,0,0,20)),
700 to(rgba(20,0,0,0)));
701 border:1px solid transparent;}
702
703
704
705#pcontainer img {
706 height:auto;
707 max-width:100%;
708}
709
710
711
712#content {
713 margin-left:62px;
714 width:310px;
715 margin-top: -100px;
716}
717
718
719#posts {
720 width:250px;
721 padding:10px;
722 margin-top: 85px;
723 margin-left:-70px;
724 padding-bottom:0px;}
725
726
727
728#sidebar {
729 margin-left: 1590px;
730 line-height:15px;
731 width: 180px;
732 position: fixed;
733 top: 200px;
734 text-align: center; }
735
736
737#sidebar img {
738 width:150px;
739 padding-top:10px;
740 padding-bottom:10px;}
741
742
743#description {
744 margin-left: 0px;
745 margin-top: -50px;
746 width:180px;
747 color:transparent;}
748
749
750
751#actualnews {
752font-family: calibri;
753font-size:10px;
754text-align:justify;
755background:transparent;
756color: #ffffff;
757width:270px;
758height:130px;
759padding-top:3px;
760border:0px solid #131313;
761margin-left: 399px;
762margin-top: 235px;
763position:fixed;
764overflow-y:scroll;
765overflow-x:hidden;
766-webkit-filter: blur(0px);
767-webkit-transition: 0.8s ease-in;
768-moz-transition: 1s ease-in;
769transition: 1s ease-in;
770opacity:0.5;
771-webkit-transition: all 0.6s ease-in-out;
772-moz-transition: all 0.6s ease-in-out;
773-o-transition: all 0.6s ease-in-out;
774-ms-transition: all 0.6s ease-in-out;
775transition: all 0.6s ease-in-out;
776}
777
778
779
780#actualnews:hover {
781-webkit-filter:none;
782-webkit-transition: all 0.6s ease-in-out;
783opacity:1;
784-webkit-transition: all 0.6s ease-in-out;
785-moz-transition: all 0.6s ease-in-out;
786-o-transition: all 0.6s ease-in-out;
787-ms-transition: all 0.6s ease-in-out;
788transition: all 0.6s ease-in-out;
789}
790
791
792
793#thekey {
794 position:fixed;
795 color:#7c7470;
796 text-shadow: 0px 0px 2px #fff;
797 margin-top:175px;
798 margin-left:55px;
799 width:710px;
800 padding:9px;
801 letter-spacing:2px;
802 word-spacing:5px; /*this defines the separation of each word of the links*/
803 font-family: helvetica;
804 font-size:12px;
805 text-align:center;
806 background:transparent;
807 text-transform:uppercase;
808 -webkit-transform: rotate(-90deg);
809 -moz-transform: rotate(-90deg);
810 -o-transform: rotate(-90deg);
811}
812
813
814
815
816 /* JUMBLED LINKS */
817
818
819
820.alinks {
821 position:fixed;
822 text-shadow: 0px 0px 0px #000;
823 left:690px;
824 top:120px;
825 transform: rotate(15deg);
826 font-family: 'Montserrat', sans-serif;
827 font-size: 40px;}
828
829
830.alinks a {
831 padding:10px;
832 color:#fff;
833 margin-right:0px;
834 -webkit-filter: blur(0px);
835 -webkit-transition: 0.8s ease-in;
836 -moz-transition: 1s ease-in;
837 transition: 1s ease-in;
838}
839
840.alinks a:hover {
841 -webkit-transition: all 0.6s ease-in-out;
842 -moz-transition: all 0.6s ease-in-out;
843 -o-transition: all 0.6s ease-in-out;
844 -ms-transition: all 0.6s ease-in-out;
845 transition: all 0.6s ease-in-out;
846 color: #727272;
847 text-shadow: 2px 2px 2px #000;
848}
849
850
851
852
853.blinks {
854 position:fixed;
855 text-shadow: 0px 0px 0px #000;
856 left:740px;
857 top:170px;
858 transform: rotate(-45deg);
859 font-family: 'Montserrat', sans-serif;
860 font-size: 40px;}
861
862
863.blinks a {
864 padding:10px;
865 color:#fff;
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.blinks 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: #727272;
880 text-shadow: 2px 2px 2px #000;
881}
882
883
884
885
886.clinks {
887 position:fixed;
888 text-shadow: 0px 0px 0px #000;
889 left:690px;
890 top:220px;
891 transform: rotate(15deg);
892 font-family: 'Montserrat', sans-serif;
893 font-size: 40px;}
894
895
896.clinks a {
897 padding:10px;
898 color:#fff;
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.clinks 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: #727272;
913 text-shadow: 2px 2px 2px #000;
914}
915
916
917
918
919.dlinks {
920 position:fixed;
921 text-shadow: 0px 0px 0px #000;
922 left:740px;
923 top:270px;
924 transform: rotate(-45deg);
925 font-family: 'Montserrat', sans-serif;
926 font-size: 40px;}
927
928
929.dlinks a {
930 padding:10px;
931 color:#fff;
932 margin-right:0px;
933 -webkit-filter: blur(0px);
934 -webkit-transition: 0.8s ease-in;
935 -moz-transition: 1s ease-in;
936 transition: 1s ease-in;
937}
938
939.dlinks a:hover {
940 -webkit-transition: all 0.6s ease-in-out;
941 -moz-transition: all 0.6s ease-in-out;
942 -o-transition: all 0.6s ease-in-out;
943 -ms-transition: all 0.6s ease-in-out;
944 transition: all 0.6s ease-in-out;
945 color: #727272;
946 text-shadow: 2px 2px 2px #000;
947}
948
949
950
951
952.elinks {
953 position:fixed;
954 text-shadow: 0px 0px 0px #000;
955 left:690px;
956 top:320px;
957 transform: rotate(15deg);
958 font-family: 'Montserrat', sans-serif;
959 font-size: 40px;}
960
961
962.elinks a {
963 padding:10px;
964 color:#fff;
965 margin-right:0px;
966 -webkit-filter: blur(0px);
967 -webkit-transition: 0.8s ease-in;
968 -moz-transition: 1s ease-in;
969 transition: 1s ease-in;
970}
971
972.elinks a:hover {
973 -webkit-transition: all 0.6s ease-in-out;
974 -moz-transition: all 0.6s ease-in-out;
975 -o-transition: all 0.6s ease-in-out;
976 -ms-transition: all 0.6s ease-in-out;
977 transition: all 0.6s ease-in-out;
978 color: #727272;
979 text-shadow: 2px 2px 2px #000;
980}
981
982
983
984
985
986
987.credit {
988 position:fixed;
989 text-shadow: 0px 0px 11px #7C6868;
990 right:15px;
991 bottom:15px;
992 transform: rotate(0deg);
993 font-family: helvetica;
994 font-size: 14px; }
995
996
997.credit a {
998 padding:10px;
999 color:#191919;
1000 margin-right:0px;
1001 -webkit-filter: blur(1px);
1002 -webkit-transition: 0.8s ease-in;
1003 -moz-transition: 1s ease-in;
1004 transition: 1s ease-in;
1005}
1006
1007.credit a:hover {
1008 -webkit-transition: all 0.6s ease-in-out;
1009 -moz-transition: all 0.6s ease-in-out;
1010 -o-transition: all 0.6s ease-in-out;
1011 -ms-transition: all 0.6s ease-in-out;
1012 transition: all 0.6s ease-in-out;
1013 color: #000000;
1014 text-shadow: 2px 2px 2px #000000;
1015}
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026 /* JUMBLED LINKS ENDS */
1027
1028
1029
1030#pagination {
1031position:fixed;
1032font-family:times;
1033width:300px;
1034font-size:8px;
1035top:480px;
1036left:740px;
1037letter-spacing:3px;
1038text-align:center;
1039z-index:999999999999;
1040}
1041
1042#pagination a {
1043text-transform:uppercase;
1044color:#ffffff;
1045-webkit-filter: blur(1px);
1046-webkit-transition: 0.8s ease-in;
1047-moz-transition: 1s ease-in;
1048transition: 1s ease-in;
1049z-index:999999999999;
1050}
1051
1052#pagination a:hover {
1053color:#000;
1054-webkit-filter: blur(0px);
1055-webkit-transition: 0.2s ease-in;
1056-moz-transition: 1s ease-in;
1057transition: 1s ease-in;
1058}
1059
1060
1061.audio {
1062 width:335px;
1063 padding-bottom:10px;
1064 background-color:{color:#000000};}
1065
1066.albumart {
1067 float:left;
1068 padding:0px 10px 10px 0px;}
1069
1070.albumart img {
1071 width:65px;
1072 height:65px;}
1073
1074.playercontainer {
1075 text-align:left;
1076 padding:10px;
1077 background-color:#090909;
1078 width:335px;}
1079
1080.audioinfo {
1081 padding:10px;
1082 color:{color:text};}
1083
1084
1085
1086
1087
1088/* QUESTIONS & ANSWERS DETAILS */
1089
1090
1091#asker {
1092 font-family: 'Arizonia', cursive;
1093 font-style:none;
1094 letter-spacing:2px;
1095 text-align:center;
1096 padding-top: 10px;
1097 margin-left:0px;
1098 text-transform:lowercase;
1099 color: #c9c9c9;
1100 font-size:30px;
1101 padding:5px;
1102 letter-spacing:0px
1103 text-shadow:0 0 2px #aeaeae;
1104}
1105
1106
1107#asker a{
1108 font-family: 'Arizonia', cursive;
1109 font-style:none;
1110 letter-spacing:2px;
1111 text-transform:lowercase;
1112 font-size:30px;
1113 letter-spacing: 0px;
1114 text-shadow: none;
1115 color: #c9c9c9;
1116 text-shadow:0 0 2px #1a1a1a;
1117 -webkit-filter: blur(0.5px);
1118}
1119
1120
1121#asker a:hover {
1122 color: #656565;
1123 letter-spacing: 0px;
1124 text-shadow:0 0 2px #000;
1125 -webkit-filter: blur(2px);
1126 -webkit-transition:all .5s ease-in-out;
1127 -moz-transition:all .5s ease-in-out;
1128 transition:all .5s ease-in-out;
1129}
1130
1131
1132
1133#ask {
1134 font-family: times;
1135 width:225px;
1136 font-size:8px;
1137 text-align:center;
1138 padding-top: 5px;
1139 margin-left:0px;
1140 text-transform:auto;
1141 letter-spacing:3px
1142 margin-top:-10px;
1143 padding:5px;
1144 background: #000;
1145 background: url("https://s-media-cache-ak0.pinimg.com/originals/28/06/de/2806debcbe881d9a4d6f27cdf3a46916.jpg");
1146 color:#dcdcdc;
1147 text-transform: uppercase;
1148 border-bottom-left-radius: 10px;
1149 border-bottom-right-radius: 10px;
1150 border-top-left-radius: 10px;
1151 border-top-right-radius: 10px;
1152 padding:10px;
1153 letter-spacing:2px;
1154 border-bottom:solid 1px #717171;
1155 border-top:solid 1px #717171;
1156}
1157
1158
1159.ans {
1160 text-align:center;
1161 padding:10px;
1162}
1163
1164
1165/* POST INFO DETAILS */
1166
1167
1168
1169#info {
1170 background: url("https://s-media-cache-ak0.pinimg.com/originals/28/06/de/2806debcbe881d9a4d6f27cdf3a46916.jpg");
1171 border: 1px solid #717171;
1172 border-bottom-right-radius: 15px;
1173 border-bottom-left-radius: 15px;
1174 border-top-right-radius: 15px;
1175 border-top-left-radius: 15px;
1176 width:245px;
1177 height:25px;
1178 text-align:center;
1179 letter-spacing:10px;
1180 margin-top:8px;
1181 margin-bottom:50px;
1182 text-transform:uppercase;
1183 font-size:15px;
1184 font-style:none;
1185 }
1186
1187
1188
1189
1190#info a {
1191 color:#dcdcdc;}
1192
1193#info a:hover {
1194 color:#000;}
1195
1196
1197
1198
1199#tags {
1200 font-family: helvetica;
1201 color:#181818;
1202 padding-bottom:35px;
1203 letter-spacing:2px;
1204 text-transform:uppercase;
1205 font-size:7px;
1206 font-style:normal;
1207 margin-top:10px;
1208 text-align:right;
1209 float:right;
1210}
1211
1212
1213#tags a {
1214 display:inline-block;
1215 padding:-3px;
1216 opacity:0.8;
1217 text-align:center;
1218 color:#181818;
1219
1220}
1221
1222
1223#tags a:hover {
1224 color:{color:text};
1225}
1226
1227
1228
1229
1230
1231
1232.note {
1233 text-transform:uppercase;
1234 font-style:normal;
1235 letter-spacing:0px;
1236 font-size: 10px;
1237 text-align:left;
1238 line-height:90%;
1239 margin-left:-40px;}
1240
1241.note li {
1242 list-style-type:none;
1243 border-bottom:0px solid {color:border};
1244 padding:10px 25px 10px 25px;
1245 text-align:left;
1246 margin:0px;
1247 -moz-transition-duration:0.5s;
1248 -webkit-transition-duration:0.5s;
1249 -o-transition-duration:0.5s;}
1250
1251.note img.avatar {
1252 margin-right: 10px;
1253 width: 16px;
1254 height: 16px;}
1255
1256
1257
1258
1259/*--BASIC POP-UP DETAILS--*/
1260
1261
1262
1263.popup_block{
1264 display:none;
1265 background: url("");
1266 background:#51575b;
1267 border:0px solid #eee; /* if you want a solid white pop-up, delete this */
1268 float:left;
1269 height: 410px;
1270 top:50%; left:50%;
1271 position:fixed;
1272 z-index: 99999;
1273 -webkit-box-shadow: 1px 1px 5px #323232;
1274 -moz-box-shadow: 1px 1px 5px #323232;
1275 box-shadow: 1px 1px 5px #323232;
1276}
1277
1278
1279*html #fade {position: absolute;}
1280*html .popup_block {position: absolute;}
1281#fade {
1282 display:none;
1283 position:fixed;
1284 left:0px;
1285 top:0px;
1286 width:100%;
1287 height:100%;
1288 z-index:9999;
1289 background:#000;
1290 opacity:0.5;
1291}
1292
1293
1294
1295
1296.popupnavlinks {
1297padding-top:5px;
1298text-align:center; }
1299
1300
1301.popupnavlinks a {
1302display:inline-block;
1303width:120px; height:8px;
1304margin:2px; padding:6px 6px 10px;
1305text-align:center;
1306font-family:'helvetica';
1307font-size:8px;
1308text-transform:uppercase;
1309letter-spacing:1px;
1310color:#dcdcdc; background:transparent;
1311background-image:url('https://s-media-cache-ak0.pinimg.com/originals/28/06/de/2806debcbe881d9a4d6f27cdf3a46916.jpg');
1312border:1px dotted;
1313border-color: #9b9b9b;
1314}
1315
1316
1317.popupnavlinks a:hover {
1318display:inline-block;
1319width:120px; margin:2px;
1320padding:6px 6px 10px;
1321text-align:center;
1322font-family:'helvetica';
1323font-size:8px;
1324text-transform:uppercase;
1325letter-spacing:1px;
1326color:#777573;
1327background:transparent }
1328
1329
1330
1331.popupclose {
1332float:right; top:0px; right:0px;
1333margin-top:-10px; margin-right:-10px;
1334font-family:'Scada', sans serif;
1335font-size:10px;
1336font-weight:bold }
1337
1338.popupclose a {
1339color:#aaa }
1340
1341
1342
1343/*--TOOLTIP DETAILS--*/
1344
1345
1346
1347#s-m-t-tooltip{
1348max-width:400px;
1349margin:15px;
1350padding:2px 8px;
1351background: #dcdcdc;
1352background-image:url('https://s-media-cache-ak0.pinimg.com/originals/28/06/de/2806debcbe881d9a4d6f27cdf3a46916.jpg');
1353border:1px dotted;
1354border-color: #727272;
1355color:#9b9b9b;
1356z-index:99999999999999999999;
1357font-size:9px;
1358letter-spacing:2px;
1359font-style:bold;
1360letter-spacing:2px;
1361font-family:'helvetica';
1362text-transform:uppercase;
1363box-shadow:1px 1px 3px rgba(0,0,0,.1);}
1364
1365
1366
1367
1368
1369</style>
1370
1371
1372</head>
1373
1374<body>
1375
1376<div id="content">
1377
1378<div id="sidebar">
1379
1380<img src="{image:Sidebar}" />
1381
1382<div id="description">{description}</div>
1383
1384</div>
1385
1386<div id="pagination">
1387{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">previous</a> • {/block:PreviousPage}{block:NextPage} <a href="{NextPage}">next</a>{/block:NextPage}{/block:Pagination}
1388</div>
1389
1390
1391<div id="links">
1392
1393
1394<div id="linkbar">
1395
1396
1397<div class="alinks">
1398 <a href="/" title="refresh."> ★ </a>
1399</div>
1400
1401
1402<div class="blinks">
1403<a href="#?w=310" rel="box1" class="poplight" title="ask."> ★ </a>
1404</div>
1405
1406
1407<div class="clinks">
1408 <a href="#?w=310" rel="box2" class="poplight" title="rules."> ★ </a>
1409</div>
1410
1411
1412<div class="dlinks">
1413 <a href="#?w=310" rel="box3" class="poplight" title="verses."> ★ </a>
1414</div>
1415
1416
1417
1418<div class="elinks">
1419 <a href="#?w=310" rel="box4" class="poplight" title="about."> ★ </a>
1420</div>
1421
1422
1423
1424<div class="credit">
1425 <a href="http://agirlingrey.tumblr.com/" title="agirlingrey.">A.</a>
1426</div>
1427
1428
1429</div></div>
1430
1431
1432<div id="pcontainer">
1433
1434<div id="content"><div id="posts">
1435{block:Posts}
1436
1437
1438{block:Quote}<quotetext>"{Quote}"</quotetext> <br><br> — {Source} {/block:Quote}
1439 {block:Title}<h1>{Title} </h1>{/block:Title}
1440 {block:Text}{Body}{/block:Text}
1441
1442{block:Link}<a href="{URL}" class="link" {Target}><h1>{Name} </h1></a>
1443
1444{block:Description}<P>{Description}</p>{/block:Description}{/block:Link}
1445
1446{block:Photo}<center>{LinkOpenTag}<img src="{PhotoURL-HighRes}" width="360px">{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
1447{block:Photoset}<center>{Photoset}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
1448
1449{block:Chat}<ul class="chat"><BR>{block:Lines}<li class="user_{UserNumber}">{block:Label}<span class="label">{Label}</span>{/block:Label} {Line}</li><BR>{/block:Lines}</ul>{/block:Chat}
1450
1451{block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
1452
1453
1454{block:Answer}<div id="asker" style="width:255px; text-shadow:0 0 2px #000; ">{Asker}:<div id="ask"> <p><p><p><p><p>{Question}</div></span></div><font face="calibri"><span style="font-family:calibri;font-size:; marging-left:0px;">{Answer}</span>{/block:Answer}
1455
1456
1457{block:Audio}<div class="audio">
1458
1459{block:AlbumArt}
1460{/block:AlbumArt}
1461
1462
1463<div class="audioinfo">{block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}{block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
1464{/block:ExternalAudio}<b>Played:</b> {PlayCount} times</div>
1465<br><div class="playercontainer">{AudioPlayerBlack}</div></div>
1466{block:Caption}{Caption}{/block:Caption}<br>{/block:Audio}
1467
1468
1469<div id="info">
1470<br>
1471
1472
1473
1474
1475{block:Date}
1476<a href="{Permalink}" style="position:absolute; margin-left:-100px; margin-top:-8px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title=" {ShortMonth} {DayOfMonthWithZero} - {TimeAgo} "> â— </a>
1477{/block:Date}
1478
1479
1480{block:RebloggedFrom}
1481<a href="{ReblogParentURL}" style="position:absolute; margin-left:-65px; margin-top:-8px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title=" via. {ReblogParentName} "> â— </a>
1482{/block:RebloggedFrom}
1483
1484
1485{block:ContentSource}
1486<a href="{SourceURL}" style="position:absolute; margin-left:-30px; margin-top:-8px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title=" source. {SourceTitle} "> â— </a>
1487{/block:ContentSource}
1488
1489
1490<a href="{Permalink}" style="position:absolute; margin-left:5px; margin-top:-8px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title=" {NoteCount} notes "> â— </a>
1491
1492
1493<a href="{ReblogURL}" style="position:absolute; margin-left:40px; margin-top:-8px;-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg); text-shadow: 0px 0px 5px #919191;" title="reblog"> â— </a>
1494
1495
1496<br>
1497
1498{block:HasTags}<div id="tags">{block:Tags} & <a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}</div>
1499{/block:Posts}
1500<div class="note">
1501{block:PostNotes}{PostNotes}{/block:PostNotes}
1502</div>
1503
1504{/block:Posts}</div></div>
1505
1506
1507
1508 </div> </div> </div> </div> </div> </div>
1509
1510
1511
1512</body>
1513
1514
1515
1516<div id="box1" class="popup_block">
1517
1518<h3>
1519yay messages
1520</h3>
1521
1522<center>
1523
1524<i>Add a picture here, or a short rule about how you do or don't accept messages... whatever you want, really.</i> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu suscipit orci. Donec eget neque eleifend, porta lacus ut, hendrerit justo. Nulla quis eleifend nunc.
1525
1526<p><iframe frameborder="0" height="250" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/YOUR URL HERE.tumblr.com" width="100%"></iframe></p>
1527
1528</div>
1529
1530</center>
1531
1532
1533
1534<div id="box2" class="popup_block">
1535
1536<div style="width:auto;height:405px;overflow:scroll;padding:5px;">
1537
1538
1539<p><strong>DISCLAIMER:</strong> I am not, do not know, and do not in any way associate myself with Thomas Jefferson, Stephen Dillane, or the creators/writers/producers of HBO’s John Adams miniseries. This is simply a FAN made roleplay account.</p>
1540<p>Additionally, I am <strong><em>NOT</em></strong> my character. It is without saying that Thomas has said <strong><em>&</em></strong> done things that are by all standards <em>wrong</em> that I do not in any way agree with or condone. Subjects such as slavery, and his relations with Sarah (Sally) Hemmings by my choice will MOST <em>LIKELY</em> not be touched upon in my writing beyond allusion. <strong>YES</strong>, I understand they’re a very real part of his history that cannot be ignored, but they’re not a part of his history that I’m comfortable writing about in depth. 
Asks, especially on anon where I cannot answer privately, will be deleted, and most likely blocked. I’m more than willing to discuss my thoughts in private, should you wish to know them.</p>
1541<h3>BASICS</h3>
1542<p>This blog is multi-verse, and multi-ship, and is OC/crossover friendly. And just a note before I say anything else: HATE of any kind WILL NOT BE TOLERATED. I had a very bad experience with this in the past, and I have no patience for it whatsoever. Anon (or … not anon) hate will not be posted UNLESS I feel like I have something to say — otherwise whoever sent the hate <strong>WILL</strong> be blocked. And on that note, anyone who vague posts about me, my muse, or anything of that sort, or has in the past will be blocked as well. As before, I’ve had some very negative experiences with some really toxic people, and I don’t want them, and their poor attitudes to ruin a hobby that I happen to enjoy.</p>
1543<p>Additionally, please keep in mind that I do both work, <em>and</em> am attending college, so I won’t be very quick getting out replies, but I do try to keep Thomas as up to date as possible. Some days I won’t be able to post anything at all, others I might be able to blast out 5+ replies within the span of a few hours. All I ask is a little patience. If, by chance, I haven’t gotten to a thread that you are anxious for a reply for, just gently remind me. Chances are it’s in my drafts half-finished.</p>
1544<h3>FOLLOWS / FOLLOW BACKS / UNFOLLOWS</h3>
1545<p>As stated, I am selective with whom I choose to follow, follow back, and interact with. This is not because I think I’m in any way better/superior to other blogs, it’s simply because a. because I cannot see Thomas interacting with your muse, or b. because I am, for whatever reason, uncomfortable with the idea of interaction.</p>
1546<p>That being said, if I follow you, there is *obviously* no expectation that you should follow me back. I always appreciate it, of course, but I don’t <em>EXPECT</em> it either. And if I follow you first (or if you follow me first, and I follow you back), DO take that as an assumption that I want to interact — <em>because I do</em>!!</p>
1547<p>As for unfollows, typically this doesn’t happen a whole lot. If I’m following you, I’m probably in it for the long haul. There’s not much that you can post that’s gonna make me do it, I haven’t got any strong triggers, et cetera. So if I do unfollow, that probably means that I’m lurking on mobile, and the unfollow was an accident. Feel free to shout at me if this does happen.</p>
1548<h3>INTERACTIONS / CONTENT / TAGGING</h3>
1549<p>I don’t think this really even needs to be said, but I’m going to say it anyways: please no god modding. I don’t want anyone to assume what Thomas will say or do, and write it out themselves. I promise you I will not, and would not ever do the same. But, I mean, if it’s something simple like…‘ <em>Thomas, can you hand me x thing? ’</em> instead of waiting for me, I mean … yeah, for the sake of fluidity just assume Thomas handed your character the thing. Nothing major tho’ thanks :></p>
1550<p>I DO try to tag everything if I believe it warrants a trigger warning. IF by chance I fail to, please let me know kindly, and I will more certainly tag it for you. Any negative tags will be tagged ’ / negative. ’ I know on past blogs my negative posts became kind of … prolific. PLEASE HOLD ME TO THIS, I’m going to try to post as little negative content as possible on this blog, if any at all. I know it can be a major trigger to a lot of people, and it can just be really off-putting to see, and I don’t <strong><em>want</em></strong> people to be put off by my blog for that reason. This is about writing a character, not about me feeling depressed. </p>
1551<h3>REPLIES</h3>
1552<p>As I stated before, I’m often slow, okay, especially if it’s a longer thread (which most of mine are). But with that being said, I will <em>try</em> to get them done as timely a manner as I can manage. On the topic of replies, I would really appreciate the trimming of threads –––untrimmed threads are messy looking, and stress me out. I will always afford you the same kindness. If you don’t trim threads, that’s one of the things that will either a. be a reason I don’t follow back, or b. a reason I unfollow.</p>
1553<h3>FORMATTING</h3>
1554<p>I am very picky about how <strong><em>mine</em></strong> looks, BUT!! it doesn’t bother me if you do not match my format/have a solid format of your own/don’t format at all. You do you. I will almost always use text — IF THAT BOTHERS YOU just kindly let me know, and I’ll make my text bigger for you. Also icons are <em>preferred</em>. Again, if you don’t have/use them, I don’t mind, I can always go icon-less. I don’t really like one liners but I will do them, but I really prefer para, or novella-length responses</p>
1555<p>And LITERACY. I’m understanding — I know for a lot of you out there, English isn’t your native language, and HONESTLY kudos to all of you… because I sure as fuck couldn’t write like this in a second language. As long as I can get the point of what you’re writing it’s cool, my dudes.</p>
1556<h3>ASKS & MEMES</h3>
1557<p>Being a private blog, open starters, starter calls, and starter memes are open to <strong>mutuals only</strong>. Non-mutuals, and non-rp blogs can always ask questions about my muse (or questions directed at me!), and are in fact encouraged to do so! On the topic of ask memes, I don’t just reblog them for the hell of it –––please please please send memes if I post one. Send me more than one, honestly it would make my day. Typically I will send memes back if you send me one.</p>
1558<h3>NSFW & SHIPPING</h3>
1559<p>Mun <strong><em>&</em></strong> muse are both over the age of 21, so NSFW content is fair game, and if by an odd chance such threads <em>do</em> show up, they WILL be tagged as <strong><em>‘nsfw</em></strong>.’ I will not rp any NSFW content with minors. Simple as that. That being said, I’m awkward af, and don’t always like writing NSFW kind of posts, so they don’t happen all that often.</p>
1560<p>Again, this is a multi-ship blog, and I ship based off of CHEMISTRY. Don’t assume that Thomas will fall for your character –––EVEN if he is flirty, or shows sexual interest. IF you want to be ship exclusively with Thomas (which is NOT something I normally do), please shoot me an ask, or IM, and I’ll get it listed…somewhere.</p>
1561<h3>MUN</h3>
1562<p>OKAY a little about me: As stated previously, I am 21+, I have a job, and I’m in school half time, so that all DOES come first.</p>
1563<p>Roleplaying is fun, but it’s not my job. I’ll never expect you to put my replies first, so please do the same for me. ALSO I have terrible anxiety, so it’s really hard for me to approach someone first –––SO if you want to rp with me, and we’re mutuals, and I HAVEN’T made a move to interact, by all means PLEASE do so, it will honestly make my day. And, because why not, here are a few quick facts about me:</p>
1564<ul>
1565<li>Name: Danielle</li>
1566<li>Age: 25</li>
1567<li>Aries, INFJ (just like my problematic son, Thomas)</li>
1568<li>Location: New York</li>
1569<li>Interests: Art (Illustration/Painting), music (playing & listening), writing, reading, yoga, hiking, kickboxing</li>
1570</ul>
1571
1572</div>
1573</div>
1574
1575
1576
1577
1578<div id="box3" class="popup_block">
1579
1580<h3>verses</h3>
1581
1582<ul id="tabs">
1583 <li class="active">VERSE 1/2</li>
1584 <li>VERSE 3/4</li>
1585 <li>VERSE 5/6</li>
1586 <li>VERSE 7/8</li>
1587</ul>
1588
1589<div style="width:auto;height:335px;overflow:scroll;padding:5px;">
1590
1591
1592
1593<ul id="tab">
1594 <li class="active">
1595
1596
1597<a href="/tagged/â„-â–ˆ-â–Œâ›-...-ᴀɴᴅ-ᴛʜᴇ-ᴩᴜʀꜱᴜɪᴛ-á´êœ°-ʜᴀᴩᴩɪɴᴇꜱꜱ-%28.001%29">..and the pursuit of happiness.</a>
1598<img src="http://i.imgur.com/lPXo9ec.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
1599
1600
1601<br>
1602
1603Any time before Thomas goes to France, and therefore before Martha's death. Thomas is a rising figure on the political scene in this verse, gradually becoming more prominent as a public figure. He makes his beginnings as a laywer, then a burgess, and eventually a member of the Second Continental Congress, where he served alongside who would be the four other committee members who were to write a declaration of independancy. <b><i>He</i></b>, above all others, was chosen to do so, being from the largest, most powerful state in the union, a man well known for the felicity of his pen, and because he wasn't as suspected as a figure like Adams (who himself feared that the declaration wouldn't be accpeted should the Congress know he was the one who wrote it, due to his unpopularity amongst other members). And this is only the beginning of Thomas' long, and often contentious political career.
1604
1605
1606<br><br><br>
1607
1608
1609
1610<a href="/tagged/â„-â–ˆ-â–Œâ›-ÊŸ%27á´€á´Ê™á´€êœ±êœ±á´€á´…ᴜᴇʀ-á´€á´á´‡Ê€Éªá´„ᴀɴ-%28.002%29">l'ambassadeur american</a>
1611<img src="http://i.imgur.com/3KF59m2.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
1612
1613
1614<br>
1615
1616Set in Paris during the beginning of the 1789 French Revolution, before his return to America, performing duties as one of America's ambassadors to France. The beginning part of his time is spent with ambassadors Ben Franklin, and his, at the time, friend, John Adams, helping them negotiate trade agreements between France, Britain, and Spain. The latter, and perhaps more well known, portion of his time was largely spent in the presence of his new found friend, and American Revolutionary war hero, the Marquis de LaFayette, with whom he drafted the Declaration of the Rights of Man, thus involving himself in France's revolutionary activities. Thomas very much saw France's current climate as one mirroring the one that existed in America just a short time ago, seeing their revolutionary cause as not only similar, but the <b>same</b> as America's. Despite the gory, violent uprisings that flooded the streets of Paris, which themselves he did not condone, Thomas did feel that their spirit was just, and good, and the violence, as it had in America, would cease. Additionally, Thomas' time spent in France served as a distraction, having had his beloved wife die only two years before his time served.
1617
1618
1619<br><br><br>
1620
1621
1622
1623</li>
1624<li>
1625
1626
1627
1628<a href="/tagged/â„-â–ˆ-â–Œâ›-ᴛʜᴇ-ʀᴇʟᴜᴄᴛᴀɴᴛ-ꜱᴇᴄʀᴇᴛᴀʀy-%28.003%29">the reluctant secretary</a>
1629<img src="http://i.imgur.com/FNFwQK1.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
1630
1631
1632<br>
1633
1634This verse starts upon Thomas' return home from France, when he's promply been appointed by President Washinton, to <i>be</i> President Washington's Secretary of State. And thus begins the quick rise in tention between the Virginian, and who would become his political rival, Alexander Hamilton, and the rise of the Democratic-Republican party (and thus the introduction of party politics). It was a job Thomas never truly wanted, wishing instead to resign himself to the peace, and comfort of his Monticello, but accepts, albeit begrudgingly, at Washington's second request. Throughout his tenure, he struggles constatnly, butting heads with Hamilton, and the other Cabinet members who seemed only to oppose his ideas in favor of his rival's, who he sees as an iminent threat to the people's, and therefore the nation's, sovreignty. The verse ends when Thomas resigns his position to run for president.
1635
1636
1637<br><br><br>
1638
1639
1640<a href="/tagged/â„-â–ˆ-â–Œâ›-á´€-ᴛʀᴀɴꜱꜰᴇʀ-á´êœ°-á´©á´á´¡á´‡Ê€-%28.004%29">a transfer of power</a>
1641<img src="http://i.imgur.com/Xpc62ZG.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
1642
1643
1644<br>
1645
1646Set during Thomas's first (and failed) run for president in 1796, losing, and therefore becoming Vice President to, John Adams. The following two terms, he'd win, and serve as president — which in itself was <i>not</i> a job he particularly wanted, but would nonetheless do, and do <b>well</b> for what he saw as the good of the American people.
1647
1648
1649<br><br>
1650
1651
1652</li>
1653<li>
1654
1655
1656
1657<a href="/tagged/â„-â–ˆ-â–Œâ›-ᴛʜᴇ-yá´á´œÉ´É¢-ʀᴇɴᴀɪꜱꜱᴀɴᴄᴇ-á´á´€É´-%28.005%29">the young renaissance man</a>
1658<img src="http://i.imgur.com/tpQM3S2.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
1659
1660
1661<br>
1662
1663Thomas' college AU in which <i>he</i> is a student. Set mainly in Williamsburg, VA, Thomas is a college student attending the College of William & Mary, studying philosphy, metaphysics, and mathematics under the tutelage of William Small. Also the years he beings reading and practicing law. Though this is normally a historical verse, this <i>can</i> easily be placed in a modern era. <br><br>(faceclaim: Stephen Dillane in Firelight OR Hamlet)
1664
1665
1666<br><br><br>
1667
1668
1669<a href="/tagged/â„-â–ˆ-â–Œâ›-ᴛʜᴇ-ᴩᴜʀꜱᴜɪᴛ-á´êœ°-á´‹É´á´á´¡ÊŸá´‡á´…ɢᴇ-%28.006%29">the pursuit of knowledge</a>
1670<img src="http://i.imgur.com/23KK8vf.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
1671
1672
1673<br>
1674
1675Thomas' modern college AU, wherein he is a professor at a prominent university. For the sake of flexibility, and ease of using this as a crossover verse, just where, and what he teaches <i>is</i> changable, but his default is this: Thomas is a professor of the political sciences, at Columbia University in New York City — a city that he strongly dislikes, and has no desire to be in. The only reason he remains is because his home, Monticello, no longer feels like home due to the eternal absense of his wife who's been recently deceased.
1676
1677
1678<br><br>
1679
1680
1681
1682</li>
1683<li>
1684
1685
1686
1687
1688<a href="/tagged/â„-â–ˆ-â–Œâ›-á´á´€É´-á´êœ°-ᴛʜᴇ-á´©á´‡á´á´©ÊŸá´‡-%28.007%29">man of the people</a>
1689<img src="http://i.imgur.com/Fg3dlYp.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
1690
1691
1692<br>
1693
1694Thomas' modern political AU. A verse fairly well along the lines of Thomas' historical political career, but set in present day. He progresses over time from Governor of Virginia, to Ambassador to France, to Secretary of State, VP, and ultimately President of the United States. Present day global & political issues will be included. He is a highly liberal man, with a platform similar to that of Senator Sanders of Vermont.
1695
1696
1697<br><br><br>
1698
1699
1700<a href="/tagged/â„-â–ˆ-â–Œâ›-yá´á´œ-ᴡɪʟʟ-ᴡᴇᴀʀ-yá´á´œÊ€-ɪɴᴅᴇᴩᴇɴᴅᴇɴᴄᴇ-ʟɪᴋᴇ-á´€-á´„Ê€á´á´¡É´-%28.008%29">you will wear your independence like a crown (horror/occult au)</a>
1701<img src="http://i.imgur.com/HUKi1qF.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
1702
1703
1704<br>
1705
1706WE HOLD THESE TRUTHS TO BE SACRED & UNDENIABLE. The creation of America — a NEW & INDEPENDENT nation, free from the tyrannies of British rule — seemed to some as an IMPOSSIBLE feat. How could a rag-tag army, whose general had never once commanded an army in a WAR of this scale defeat the GREATEST military power, and empire in the whole of Europe? HOW, with what little supplies they had, could these meager troops even SURVIVE? And HOW could thirteen separate colonies be SPURRED to revolt against their king, many of whom were STILL fiercely loyal to the monarchy?
1707<br><br>
1708Not without some help from powers <b>greater</b> than man himself (tho’ power WOULD be granted to man). OCCULT practices, done in far more depth than simply dabbling, were used FREQUENTLY by all the predominate founders to help further their cause. Deals with demons & devils, and the use of ritual magick became <i>vital</i> to the success of the Americans, unbeknownst to the public, tho' rumors were abound. Clubs steeped in secrecy became the subject of many a whisper, and not without reason. But not even the most devout of conspiracy theorists could begin to imagine the truth of just how in debt the soul of the newly founded America was to forcess that could only be described as <b>supernatural</b>.
1709<br><br>
1710
1711In this verse, Thomas, tho’ not a freemason like many of his associates, <i>is</i> a member of an elite, and secretive group known as the <b>HELLFIRE CLUB</b>, and an active user of occult symbology (in both writing and architecture), and practitioner of ritual magick.
1712<br><br>
1713
1714*** THIS IS A FICTIONAL VERSE!!!!!! I DO <b><i>NOT</i></b> in any way believe illuminati conspiracy theories to be true ***
1715
1716
1717<br><br>
1718
1719
1720</li>
1721</ul>
1722
1723
1724</div>
1725</div>
1726
1727
1728
1729<div id="box4" class="popup_block">
1730
1731<div style="width:auto;height:400px;overflow:scroll;padding:5px;">
1732
1733<h3>BASIC INFORMATION</h3>
1734<p><strong>Name:</strong> Thomas Jefferson<br /><strong>Nicknames: </strong>Tom to a select few <strike>please just call him Thomas</strike><br /><strong>Age:</strong> Verse Dependent <br /><strong>D.O.B.:</strong> April 13th 1743 (death date: July 4th, 1826)<br /><strong>Birthplace:</strong> Shadwell, in the Colony of Virginia <br /><strong>(Main) Residence:</strong> Monticello, located in Charlottesville, VA<br /><strong>Parents:</strong> Peter Jefferson, and Jane Randolph <br /><strong># Of Siblings:</strong> 9, not including himself (he’s the 3rd of 10)<br /><strong>Education:</strong> College of William & Mary (studied: mathematics, metaphysics, philosophy, language, and refined his skills as a violinist). Graduated in 2 years, and immediately began reading the law under the tutelage of Professor George Wythe to obtain his license to practice law. <a href="https://www.monticello.org/site/research-and-collections/jeffersons-formal-education">(& in more detail)</a>. He never obtained a formal degree, but received numerous honorary law degrees from his alma matter, as well as from various Ivy League institutions.<br /><strong>Marital Status:</strong> A widower, never remarried<br /><strong>Notable Personality Traits:</strong> Moody, VERY smart, diligent, persistent, quick witted BUT quiet, soft-spoken, shy, reserved & restrained, anxious/nervous, philosophical <strong><em>&</em></strong> idealistic (to a fault), not confident in himself, but confident in his beliefs, ideals, and morals.<br /><strong>Interests:</strong> epicure, viticulture, horticulture, farming, animals (his favorite being birds), music, art, interior design, architecture, politics, law, books/literature/poetry, collecting</p>
1735<h3>APPEARANCE</h3>
1736<p><strong>Height:</strong> 6ft 2in<br /><strong>Build:</strong> Lean, lanky, thin<br /><strong>Hair:</strong> Reddish-blond, turned sandy as he aged; slightly wavy<br /><strong>Eyes:</strong> Hazel<br /><strong>Prominent features/traits/habits:</strong> staight nose, a jaw that juts out slightly, a stiff, erect posture when standing, but slouches when sitting, loose joints, tends to stand with arms folded over chest, or locked behind his back</p>
1737<h3>PERSONALITY PROFILE</h3>
1738<p><strong>INFJ: The Dreamer & The Do-er</strong></p>
1739<p><em>positive traits</em>: tbd</p>
1740<p><em>negative traits</em>: tbd<br /><br /><strong>Neutral Good: </strong>Someone of the Neutral Good alignment will usually comply with laws if doing so benefits the greater good, but rebel against those they consider unjust or which conflict with the greater good. Goodness is, for them, often an ideal, as well as an obligation that they devote their lives towards pursuing. In doing what they deem as right, the Neutral Good will often sacrifice their own personal happienss (even if they truly wish not to give it up) for the betterment, or happiness of another. They want to do good, even if unprepared for the harsh realities they’ll undoubtedly face in pursuing this greater good — but are strong enough to face adversity when met with it. They value freedom and will protect others’ freedom as long as it’s not used to do harm.</p>
1741<p><strong>Hogwarts House:</strong> Ravenclaw</p>
1742
1743</div>
1744</div>
1745
1746
1747
1748<div id="box5" class="popup_block">
1749
1750<div style="width:auto;height:400px;overflow:scroll;padding:5px;">
1751
1752<h3>navigation</h3>
1753
1754<center>
1755
1756<div class="popupnavlinks">
1757
1758
1759<a href="/tagged/link">LINK.</a>
1760<a href="/tagged/link">LINK.</a>
1761<br>
1762<a href="/tagged/link">LINK.</a>
1763<a href="/tagged/link">LINK.</a>
1764<br>
1765<a href="/tagged/link">LINK.</a>
1766<a href="/tagged/link">LINK.</a>
1767<br>
1768<a href="/tagged/link">LINK.</a>
1769<a href="/tagged/link">LINK.</a>
1770<br>
1771<a href="/tagged/link">LINK.</a>
1772<a href="/tagged/link">LINK.</a>
1773<br>
1774<a href="/tagged/link">LINK.</a>
1775<a href="/tagged/link">LINK.</a>
1776<br>
1777<a href="/tagged/link">LINK.</a>
1778<a href="/tagged/link">LINK.</a>
1779<br>
1780<a href="/tagged/link">LINK.</a>
1781<a href="/tagged/link">LINK.</a>
1782<br>
1783
1784
1785</div>
1786</div>
1787</div>
1788
1789
1790
1791<div id="bite">
1792<div id="thekey"></div>
1793<div class="death">
1794<div id="actualnews">
1795
1796<center>
1797
1798<div style="width:auto;height:280px;overflow:scroll;padding:5px;">
1799
1800<h3>
1801"we hold these"
1802</h3>
1803
1804independent & highly selective historical thomas jefferson (NOT associated with hamilton: an american musical)
1805
1806<h3>
1807"truths to be"
1808</h3>
1809
1810est. september 2016<br>penned by : dani<br>formerly declarationwritten
1811
1812<h3>
1813"sacred & undeniable"
1814</h3>
1815
1816inbox: 07<br>
1817starters:00<br>
1818drafts:09
1819
1820
1821
1822
1823
1824</center>
1825
1826
1827</div>
1828</div></div>