· 9 years ago · Nov 01, 2016, 01:18 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="#777573"; // 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/c3/8f/46/c38f46171914f5ca7c56c7f2afa5393f.gif'), 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:#7d7676;
431 background-image:url('http://i.imgur.com/tV6LvFG.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/c3/8f/46/c38f46171914f5ca7c56c7f2afa5393f.gif');
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/c3/8f/46/c38f46171914f5ca7c56c7f2afa5393f.gif");
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:240px;
690 height:350px;
691 padding: 20px;
692 top:190px;
693 margin-left: 457px;
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:100px;
758height:420px;
759padding-top:3px;
760border:0px solid #131313;
761margin-left: 835px;
762margin-top: -155px;
763position:fixed;
764-webkit-filter: blur(0px);
765-webkit-transition: 0.8s ease-in;
766-moz-transition: 1s ease-in;
767transition: 1s ease-in;
768opacity:0.5;
769-webkit-transition: all 0.6s ease-in-out;
770-moz-transition: all 0.6s ease-in-out;
771-o-transition: all 0.6s ease-in-out;
772-ms-transition: all 0.6s ease-in-out;
773transition: all 0.6s ease-in-out;
774}
775
776
777
778#actualnews:hover {
779-webkit-filter:none;
780-webkit-transition: all 0.6s ease-in-out;
781opacity:1;
782-webkit-transition: all 0.6s ease-in-out;
783-moz-transition: all 0.6s ease-in-out;
784-o-transition: all 0.6s ease-in-out;
785-ms-transition: all 0.6s ease-in-out;
786transition: all 0.6s ease-in-out;
787}
788
789
790
791#thekey {
792 position:fixed;
793 color:#7c7470;
794 text-shadow: 0px 0px 2px #fff;
795 margin-top:175px;
796 margin-left:55px;
797 width:710px;
798 padding:9px;
799 letter-spacing:2px;
800 word-spacing:5px; /*this defines the separation of each word of the links*/
801 font-family: helvetica;
802 font-size:12px;
803 text-align:center;
804 background:transparent;
805 text-transform:uppercase;
806 -webkit-transform: rotate(-90deg);
807 -moz-transform: rotate(-90deg);
808 -o-transform: rotate(-90deg);
809}
810
811
812
813
814 /* JUMBLED LINKS */
815
816
817
818.alinks {
819 position:fixed;
820 text-shadow: 0px 0px 0px #000;
821 left:550px;
822 top:60px;
823 transform: rotate(0deg);
824 font-family: 'Montserrat', sans-serif;
825 font-size: 20px;}
826
827
828.alinks a {
829 opacity:0.5;
830 padding:10px;
831 color:#fff;
832 margin-right:0px;
833 -webkit-filter: blur(0px);
834 -webkit-transition: 0.8s ease-in;
835 -moz-transition: 1s ease-in;
836 transition: 1s ease-in;
837}
838
839.alinks a:hover {
840 opacity:1;
841 -webkit-filter: blur(3px);
842 -webkit-transition: all 0.6s ease-in-out;
843 -moz-transition: all 0.6s ease-in-out;
844 -o-transition: all 0.6s ease-in-out;
845 -ms-transition: all 0.6s ease-in-out;
846 transition: all 0.6s ease-in-out;
847 color: #c7c7c7;
848 text-shadow: 3px 3px 3px #000;
849}
850
851
852
853
854.blinks {
855 position:fixed;
856 text-shadow: 0px 0px 0px #000;
857 left:825px;
858 top:111px;
859 transform: rotate(0deg);
860 font-family: 'Montserrat', sans-serif;
861 font-size: 10px;}
862
863
864.blinks a {
865 padding:10px;
866 color:#fff;
867 margin-right:0px;
868 -webkit-filter: blur(0px);
869 -webkit-transition: 0.8s ease-in;
870 -moz-transition: 1s ease-in;
871 transition: 1s ease-in;
872}
873
874.blinks a:hover {
875 -webkit-transition: all 0.6s ease-in-out;
876 -moz-transition: all 0.6s ease-in-out;
877 -o-transition: all 0.6s ease-in-out;
878 -ms-transition: all 0.6s ease-in-out;
879 transition: all 0.6s ease-in-out;
880 color: #727272;
881 text-shadow: 2px 2px 2px #000;
882}
883
884
885
886
887.clinks {
888 position:fixed;
889 text-shadow: 0px 0px 0px #000;
890 left:845px;
891 top:111px;
892 transform: rotate(0deg);
893 font-family: 'Montserrat', sans-serif;
894 font-size: 10px;}
895
896
897.clinks a {
898 padding:10px;
899 color:#fff;
900 margin-right:0px;
901 -webkit-filter: blur(0px);
902 -webkit-transition: 0.8s ease-in;
903 -moz-transition: 1s ease-in;
904 transition: 1s ease-in;
905}
906
907.clinks a:hover {
908 -webkit-transition: all 0.6s ease-in-out;
909 -moz-transition: all 0.6s ease-in-out;
910 -o-transition: all 0.6s ease-in-out;
911 -ms-transition: all 0.6s ease-in-out;
912 transition: all 0.6s ease-in-out;
913 color: #727272;
914 text-shadow: 2px 2px 2px #000;
915}
916
917
918
919
920.dlinks {
921 position:fixed;
922 text-shadow: 0px 0px 0px #000;
923 left:865px;
924 top:111px;
925 transform: rotate(0deg);
926 font-family: 'Montserrat', sans-serif;
927 font-size: 10px;}
928
929
930.dlinks a {
931 padding:10px;
932 color:#fff;
933 margin-right:0px;
934 -webkit-filter: blur(0px);
935 -webkit-transition: 0.8s ease-in;
936 -moz-transition: 1s ease-in;
937 transition: 1s ease-in;
938}
939
940.dlinks a:hover {
941 -webkit-transition: all 0.6s ease-in-out;
942 -moz-transition: all 0.6s ease-in-out;
943 -o-transition: all 0.6s ease-in-out;
944 -ms-transition: all 0.6s ease-in-out;
945 transition: all 0.6s ease-in-out;
946 color: #727272;
947 text-shadow: 2px 2px 2px #000;
948}
949
950
951
952
953.elinks {
954 position:fixed;
955 text-shadow: 0px 0px 0px #000;
956 left:885px;
957 top:111px;
958 transform: rotate(0deg);
959 font-family: 'Montserrat', sans-serif;
960 font-size: 10px;}
961
962
963.elinks a {
964 padding:10px;
965 color:#fff;
966 margin-right:0px;
967 -webkit-filter: blur(0px);
968 -webkit-transition: 0.8s ease-in;
969 -moz-transition: 1s ease-in;
970 transition: 1s ease-in;
971}
972
973.elinks a:hover {
974 -webkit-transition: all 0.6s ease-in-out;
975 -moz-transition: all 0.6s ease-in-out;
976 -o-transition: all 0.6s ease-in-out;
977 -ms-transition: all 0.6s ease-in-out;
978 transition: all 0.6s ease-in-out;
979 color: #727272;
980 text-shadow: 2px 2px 2px #000;
981}
982
983
984
985
986
987
988.credit {
989 position:fixed;
990 text-shadow: 0px 0px 11px #7C6868;
991 right:15px;
992 bottom:15px;
993 transform: rotate(0deg);
994 font-family: helvetica;
995 font-size: 14px; }
996
997
998.credit a {
999 padding:10px;
1000 color:#191919;
1001 margin-right:0px;
1002 -webkit-filter: blur(1px);
1003 -webkit-transition: 0.8s ease-in;
1004 -moz-transition: 1s ease-in;
1005 transition: 1s ease-in;
1006}
1007
1008.credit a:hover {
1009 -webkit-transition: all 0.6s ease-in-out;
1010 -moz-transition: all 0.6s ease-in-out;
1011 -o-transition: all 0.6s ease-in-out;
1012 -ms-transition: all 0.6s ease-in-out;
1013 transition: all 0.6s ease-in-out;
1014 color: #000000;
1015 text-shadow: 2px 2px 2px #000000;
1016}
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027 /* JUMBLED LINKS ENDS */
1028
1029
1030
1031#pagination {
1032position:fixed;
1033font-family:times;
1034width:300px;
1035font-size:8px;
1036top:480px;
1037left:740px;
1038letter-spacing:3px;
1039text-align:center;
1040z-index:999999999999;
1041}
1042
1043#pagination a {
1044text-transform:uppercase;
1045color:#ffffff;
1046-webkit-filter: blur(1px);
1047-webkit-transition: 0.8s ease-in;
1048-moz-transition: 1s ease-in;
1049transition: 1s ease-in;
1050z-index:999999999999;
1051}
1052
1053#pagination a:hover {
1054color:#000;
1055-webkit-filter: blur(0px);
1056-webkit-transition: 0.2s ease-in;
1057-moz-transition: 1s ease-in;
1058transition: 1s ease-in;
1059}
1060
1061
1062.audio {
1063 width:335px;
1064 padding-bottom:10px;
1065 background-color:{color:#000000};}
1066
1067.albumart {
1068 float:left;
1069 padding:0px 10px 10px 0px;}
1070
1071.albumart img {
1072 width:65px;
1073 height:65px;}
1074
1075.playercontainer {
1076 text-align:left;
1077 padding:10px;
1078 background-color:#090909;
1079 width:335px;}
1080
1081.audioinfo {
1082 padding:10px;
1083 color:{color:text};}
1084
1085
1086
1087
1088
1089/* QUESTIONS & ANSWERS DETAILS */
1090
1091
1092#asker {
1093 font-family: 'Arizonia', cursive;
1094 font-style:none;
1095 letter-spacing:2px;
1096 text-align:center;
1097 padding-top: 10px;
1098 margin-left:0px;
1099 text-transform:lowercase;
1100 color: #c9c9c9;
1101 font-size:30px;
1102 padding:5px;
1103 letter-spacing:0px
1104 text-shadow:0 0 2px #aeaeae;
1105}
1106
1107
1108#asker a{
1109 font-family: 'Arizonia', cursive;
1110 font-style:none;
1111 letter-spacing:2px;
1112 text-transform:lowercase;
1113 font-size:30px;
1114 letter-spacing: 0px;
1115 text-shadow: none;
1116 color: #c9c9c9;
1117 text-shadow:0 0 2px #1a1a1a;
1118 -webkit-filter: blur(0.5px);
1119}
1120
1121
1122#asker a:hover {
1123 color: #656565;
1124 letter-spacing: 0px;
1125 text-shadow:0 0 2px #000;
1126 -webkit-filter: blur(2px);
1127 -webkit-transition:all .5s ease-in-out;
1128 -moz-transition:all .5s ease-in-out;
1129 transition:all .5s ease-in-out;
1130}
1131
1132
1133
1134#ask {
1135 font-family: times;
1136 width:225px;
1137 font-size:8px;
1138 text-align:center;
1139 padding-top: 5px;
1140 margin-left:0px;
1141 text-transform:auto;
1142 letter-spacing:3px
1143 margin-top:-10px;
1144 padding:5px;
1145 background: #000;
1146 background: url("https://s-media-cache-ak0.pinimg.com/originals/c3/8f/46/c38f46171914f5ca7c56c7f2afa5393f.gif");
1147 color:#dcdcdc;
1148 text-transform: uppercase;
1149 border-bottom-left-radius: 10px;
1150 border-bottom-right-radius: 10px;
1151 border-top-left-radius: 10px;
1152 border-top-right-radius: 10px;
1153 padding:10px;
1154 letter-spacing:2px;
1155 border-bottom:solid 1px #717171;
1156 border-top:solid 1px #717171;
1157}
1158
1159
1160.ans {
1161 text-align:center;
1162 padding:10px;
1163}
1164
1165
1166/* POST INFO DETAILS */
1167
1168
1169
1170#info {
1171 background: url("https://s-media-cache-ak0.pinimg.com/originals/c3/8f/46/c38f46171914f5ca7c56c7f2afa5393f.gif");
1172 border: 1px solid #717171;
1173 border-bottom-right-radius: 15px;
1174 border-bottom-left-radius: 15px;
1175 border-top-right-radius: 15px;
1176 border-top-left-radius: 15px;
1177 width:245px;
1178 height:25px;
1179 text-align:center;
1180 letter-spacing:10px;
1181 margin-top:8px;
1182 margin-bottom:50px;
1183 text-transform:uppercase;
1184 font-size:15px;
1185 font-style:none;
1186 }
1187
1188
1189
1190
1191#info a {
1192 color:#dcdcdc;}
1193
1194#info a:hover {
1195 color:#000;}
1196
1197
1198
1199
1200#tags {
1201 font-family: helvetica;
1202 color:#181818;
1203 padding-bottom:35px;
1204 letter-spacing:2px;
1205 text-transform:uppercase;
1206 font-size:7px;
1207 font-style:normal;
1208 margin-top:10px;
1209 text-align:right;
1210 float:right;
1211}
1212
1213
1214#tags a {
1215 display:inline-block;
1216 padding:-3px;
1217 opacity:0.8;
1218 text-align:center;
1219 color:#181818;
1220
1221}
1222
1223
1224#tags a:hover {
1225 color:{color:text};
1226}
1227
1228
1229
1230
1231
1232
1233.note {
1234 text-transform:uppercase;
1235 font-style:normal;
1236 letter-spacing:0px;
1237 font-size: 10px;
1238 text-align:left;
1239 line-height:90%;
1240 margin-left:-40px;}
1241
1242.note li {
1243 list-style-type:none;
1244 border-bottom:0px solid {color:border};
1245 padding:10px 25px 10px 25px;
1246 text-align:left;
1247 margin:0px;
1248 -moz-transition-duration:0.5s;
1249 -webkit-transition-duration:0.5s;
1250 -o-transition-duration:0.5s;}
1251
1252.note img.avatar {
1253 margin-right: 10px;
1254 width: 16px;
1255 height: 16px;}
1256
1257
1258
1259
1260/*--BASIC POP-UP DETAILS--*/
1261
1262
1263
1264.popup_block{
1265 display:none;
1266 background: url("");
1267 background:#716b6b;
1268 padding:20px;
1269 border:0px solid #eee; /* if you want a solid white pop-up, delete this */
1270 float:left;
1271 height: 400px;
1272 top:50%; left:50%;
1273 position:fixed;
1274 z-index: 99999;
1275 -webkit-box-shadow: 1px 1px 5px #323232;
1276 -moz-box-shadow: 1px 1px 5px #323232;
1277 box-shadow: 1px 1px 5px #323232;
1278}
1279
1280
1281*html #fade {position: absolute;}
1282*html .popup_block {position: absolute;}
1283#fade {
1284 display:none;
1285 position:fixed;
1286 left:0px;
1287 top:0px;
1288 width:100%;
1289 height:100%;
1290 z-index:9999;
1291 background:#000;
1292 opacity:0.5;
1293}
1294
1295
1296
1297
1298.popupnavlinks {
1299padding-top:5px;
1300text-align:center; }
1301
1302
1303.popupnavlinks a {
1304display:inline-block;
1305width:120px; height:8px;
1306margin:2px; padding:6px 6px 10px;
1307text-align:center;
1308font-family:'helvetica';
1309font-size:8px;
1310text-transform:uppercase;
1311letter-spacing:1px;
1312color:#dcdcdc; background:transparent;
1313background-image:url('https://s-media-cache-ak0.pinimg.com/originals/c3/8f/46/c38f46171914f5ca7c56c7f2afa5393f.gif');
1314border:1px dotted;
1315border-color: #9b9b9b;
1316}
1317
1318
1319.popupnavlinks a:hover {
1320display:inline-block;
1321width:120px; margin:2px;
1322padding:6px 6px 10px;
1323text-align:center;
1324font-family:'helvetica';
1325font-size:8px;
1326text-transform:uppercase;
1327letter-spacing:1px;
1328color:#777573;
1329background:transparent }
1330
1331
1332
1333.popupclose {
1334float:right; top:0px; right:0px;
1335margin-top:-10px; margin-right:-10px;
1336font-family:'Scada', sans serif;
1337font-size:10px;
1338font-weight:bold }
1339
1340.popupclose a {
1341color:#aaa }
1342
1343
1344
1345/*--TOOLTIP DETAILS--*/
1346
1347
1348
1349#s-m-t-tooltip{
1350max-width:400px;
1351margin:15px;
1352padding:2px 8px;
1353background: #dcdcdc;
1354background-image:url('https://s-media-cache-ak0.pinimg.com/originals/c3/8f/46/c38f46171914f5ca7c56c7f2afa5393f.gif');
1355border:1px dotted;
1356border-color: #727272;
1357color:#9b9b9b;
1358z-index:99999999999999999999;
1359font-size:9px;
1360letter-spacing:2px;
1361font-style:bold;
1362letter-spacing:2px;
1363font-family:'helvetica';
1364text-transform:uppercase;
1365box-shadow:1px 1px 3px rgba(0,0,0,.1);}
1366
1367
1368
1369
1370
1371</style>
1372
1373
1374</head>
1375
1376<body>
1377
1378<div id="content">
1379
1380<div id="sidebar">
1381
1382<img src="{image:Sidebar}" />
1383
1384<div id="description">{description}</div>
1385
1386</div>
1387
1388<div id="pagination">
1389{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">previous</a> • {/block:PreviousPage}{block:NextPage} <a href="{NextPage}">next</a>{/block:NextPage}{/block:Pagination}
1390</div>
1391
1392
1393<div id="links">
1394
1395
1396<div id="linkbar">
1397
1398
1399<div class="alinks">
1400 <a href="/" title="refresh."> apostle of democracy </a>
1401</div>
1402
1403
1404<div class="blinks">
1405<a href="#?w=310" rel="box1" class="poplight" title="ask."> 01. </a>
1406</div>
1407
1408
1409<div class="clinks">
1410 <a href="#?w=310" rel="box2" class="poplight" title="rules."> 02. </a>
1411</div>
1412
1413
1414<div class="dlinks">
1415 <a href="#?w=310" rel="box3" class="poplight" title="verses."> 03. </a>
1416</div>
1417
1418
1419
1420<div class="elinks">
1421 <a href="#?w=310" rel="box4" class="poplight" title="about."> 04. </a>
1422</div>
1423
1424
1425
1426<div class="credit">
1427 <a href="http://agirlingrey.tumblr.com/" title="agirlingrey.">A.</a>
1428</div>
1429
1430
1431</div></div>
1432
1433
1434<div id="pcontainer">
1435
1436<div id="content"><div id="posts">
1437{block:Posts}
1438
1439
1440{block:Quote}<quotetext>"{Quote}"</quotetext> <br><br> — {Source} {/block:Quote}
1441 {block:Title}<h1>{Title} </h1>{/block:Title}
1442 {block:Text}{Body}{/block:Text}
1443
1444{block:Link}<a href="{URL}" class="link" {Target}><h1>{Name} </h1></a>
1445
1446{block:Description}<P>{Description}</p>{/block:Description}{/block:Link}
1447
1448{block:Photo}<center>{LinkOpenTag}<img src="{PhotoURL-HighRes}" width="360px">{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
1449{block:Photoset}<center>{Photoset}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
1450
1451{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}
1452
1453{block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
1454
1455
1456{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}
1457
1458
1459{block:Audio}<div class="audio">
1460
1461{block:AlbumArt}
1462{/block:AlbumArt}
1463
1464
1465<div class="audioinfo">{block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}{block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
1466{/block:ExternalAudio}<b>Played:</b> {PlayCount} times</div>
1467<br><div class="playercontainer">{AudioPlayerBlack}</div></div>
1468{block:Caption}{Caption}{/block:Caption}<br>{/block:Audio}
1469
1470
1471<div id="info">
1472<br>
1473
1474
1475
1476
1477{block:Date}
1478<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>
1479{/block:Date}
1480
1481
1482{block:RebloggedFrom}
1483<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>
1484{/block:RebloggedFrom}
1485
1486
1487{block:ContentSource}
1488<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>
1489{/block:ContentSource}
1490
1491
1492<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>
1493
1494
1495<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>
1496
1497
1498<br>
1499
1500{block:HasTags}<div id="tags">{block:Tags} & <a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}</div>
1501{/block:Posts}
1502<div class="note">
1503{block:PostNotes}{PostNotes}{/block:PostNotes}
1504</div>
1505
1506{/block:Posts}</div></div>
1507
1508
1509
1510 </div> </div> </div> </div> </div> </div>
1511
1512
1513
1514</body>
1515
1516
1517
1518<div id="box1" class="popup_block">
1519
1520<h3>
1521yay messages
1522</h3>
1523
1524<center>
1525
1526<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.
1527
1528<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>
1529
1530</div>
1531
1532</center>
1533
1534
1535
1536<div id="box2" class="popup_block">
1537
1538<div style="width:auto;height:405px;overflow:scroll;padding:5px;">
1539
1540
1541<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>
1542<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>
1543<h3>BASICS</h3>
1544<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>
1545<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>
1546<h3>FOLLOWS / FOLLOW BACKS / UNFOLLOWS</h3>
1547<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>
1548<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>
1549<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>
1550<h3>INTERACTIONS / CONTENT / TAGGING</h3>
1551<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>
1552<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>
1553<h3>REPLIES</h3>
1554<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>
1555<h3>FORMATTING</h3>
1556<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>
1557<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>
1558<h3>ASKS & MEMES</h3>
1559<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>
1560<h3>NSFW & SHIPPING</h3>
1561<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>
1562<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>
1563<h3>MUN</h3>
1564<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>
1565<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>
1566<ul>
1567<li>Name: Danielle</li>
1568<li>Age: 25</li>
1569<li>Aries, INFJ (just like my problematic son, Thomas)</li>
1570<li>Location: New York</li>
1571<li>Interests: Art (Illustration/Painting), music (playing & listening), writing, reading, yoga, hiking, kickboxing</li>
1572</ul>
1573
1574</div>
1575</div>
1576
1577
1578
1579
1580<div id="box3" class="popup_block">
1581
1582<h3>verses</h3>
1583
1584<ul id="tabs">
1585 <li class="active">VERSE 1/2</li>
1586 <li>VERSE 3/4</li>
1587 <li>VERSE 5/6</li>
1588 <li>VERSE 7/8</li>
1589</ul>
1590
1591<div style="width:auto;height:335px;overflow:scroll;padding:5px;">
1592
1593
1594
1595<ul id="tab">
1596 <li class="active">
1597
1598
1599<a href="/tagged/â„-â–ˆ-â–Œâ›-...-ᴀɴᴅ-ᴛʜᴇ-ᴩᴜʀꜱᴜɪᴛ-á´êœ°-ʜᴀᴩᴩɪɴᴇꜱꜱ-%28.001%29">..and the pursuit of happiness.</a>
1600<img src="http://i.imgur.com/lPXo9ec.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
1601
1602
1603<br>
1604
1605Any 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.
1606
1607
1608<br><br><br>
1609
1610
1611
1612<a href="/tagged/â„-â–ˆ-â–Œâ›-ÊŸ%27á´€á´Ê™á´€êœ±êœ±á´€á´…ᴜᴇʀ-á´€á´á´‡Ê€Éªá´„ᴀɴ-%28.002%29">l'ambassadeur american</a>
1613<img src="http://i.imgur.com/3KF59m2.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
1614
1615
1616<br>
1617
1618Set 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.
1619
1620
1621<br><br><br>
1622
1623
1624
1625</li>
1626<li>
1627
1628
1629
1630<a href="/tagged/â„-â–ˆ-â–Œâ›-ᴛʜᴇ-ʀᴇʟᴜᴄᴛᴀɴᴛ-ꜱᴇᴄʀᴇᴛᴀʀy-%28.003%29">the reluctant secretary</a>
1631<img src="http://i.imgur.com/FNFwQK1.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
1632
1633
1634<br>
1635
1636This 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.
1637
1638
1639<br><br><br>
1640
1641
1642<a href="/tagged/â„-â–ˆ-â–Œâ›-á´€-ᴛʀᴀɴꜱꜰᴇʀ-á´êœ°-á´©á´á´¡á´‡Ê€-%28.004%29">a transfer of power</a>
1643<img src="http://i.imgur.com/Xpc62ZG.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
1644
1645
1646<br>
1647
1648Set 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.
1649
1650
1651<br><br>
1652
1653
1654</li>
1655<li>
1656
1657
1658
1659<a href="/tagged/â„-â–ˆ-â–Œâ›-ᴛʜᴇ-yá´á´œÉ´É¢-ʀᴇɴᴀɪꜱꜱᴀɴᴄᴇ-á´á´€É´-%28.005%29">the young renaissance man</a>
1660<img src="http://i.imgur.com/tpQM3S2.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
1661
1662
1663<br>
1664
1665Thomas' 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)
1666
1667
1668<br><br><br>
1669
1670
1671<a href="/tagged/â„-â–ˆ-â–Œâ›-ᴛʜᴇ-ᴩᴜʀꜱᴜɪᴛ-á´êœ°-á´‹É´á´á´¡ÊŸá´‡á´…ɢᴇ-%28.006%29">the pursuit of knowledge</a>
1672<img src="http://i.imgur.com/23KK8vf.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
1673
1674
1675<br>
1676
1677Thomas' 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.
1678
1679
1680<br><br>
1681
1682
1683
1684</li>
1685<li>
1686
1687
1688
1689
1690<a href="/tagged/â„-â–ˆ-â–Œâ›-á´á´€É´-á´êœ°-ᴛʜᴇ-á´©á´‡á´á´©ÊŸá´‡-%28.007%29">man of the people</a>
1691<img src="http://i.imgur.com/Fg3dlYp.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
1692
1693
1694<br>
1695
1696Thomas' 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.
1697
1698
1699<br><br><br>
1700
1701
1702<a href="/tagged/â„-â–ˆ-â–Œâ›-yá´á´œ-ᴡɪʟʟ-ᴡᴇᴀʀ-yá´á´œÊ€-ɪɴᴅᴇᴩᴇɴᴅᴇɴᴄᴇ-ʟɪᴋᴇ-á´€-á´„Ê€á´á´¡É´-%28.008%29">you will wear your independence like a crown (horror/occult au)</a>
1703<img src="http://i.imgur.com/HUKi1qF.png" align="left" style="height:85px;width:85px;padding-right:5px;padding-bottom:0px;">
1704
1705
1706<br>
1707
1708WE 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?
1709<br><br>
1710Not 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>.
1711<br><br>
1712
1713In 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.
1714<br><br>
1715
1716*** THIS IS A FICTIONAL VERSE!!!!!! I DO <b><i>NOT</i></b> in any way believe illuminati conspiracy theories to be true ***
1717
1718
1719<br><br>
1720
1721
1722</li>
1723</ul>
1724
1725
1726</div>
1727</div>
1728
1729
1730
1731<div id="box4" class="popup_block">
1732
1733<div style="width:auto;height:400px;overflow:scroll;padding:5px;">
1734
1735<h3>BASIC INFORMATION</h3>
1736<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>
1737<h3>APPEARANCE</h3>
1738<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>
1739<h3>PERSONALITY PROFILE</h3>
1740<p><strong>INFJ: The Dreamer & The Do-er</strong></p>
1741<p><em>positive traits</em>: tbd</p>
1742<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>
1743<p><strong>Hogwarts House:</strong> Ravenclaw</p>
1744
1745</div>
1746</div>
1747
1748
1749
1750<div id="box5" class="popup_block">
1751
1752<div style="width:auto;height:400px;overflow:scroll;padding:5px;">
1753
1754<h3>navigation</h3>
1755
1756<center>
1757
1758<div class="popupnavlinks">
1759
1760
1761<a href="/tagged/link">LINK.</a>
1762<a href="/tagged/link">LINK.</a>
1763<br>
1764<a href="/tagged/link">LINK.</a>
1765<a href="/tagged/link">LINK.</a>
1766<br>
1767<a href="/tagged/link">LINK.</a>
1768<a href="/tagged/link">LINK.</a>
1769<br>
1770<a href="/tagged/link">LINK.</a>
1771<a href="/tagged/link">LINK.</a>
1772<br>
1773<a href="/tagged/link">LINK.</a>
1774<a href="/tagged/link">LINK.</a>
1775<br>
1776<a href="/tagged/link">LINK.</a>
1777<a href="/tagged/link">LINK.</a>
1778<br>
1779<a href="/tagged/link">LINK.</a>
1780<a href="/tagged/link">LINK.</a>
1781<br>
1782<a href="/tagged/link">LINK.</a>
1783<a href="/tagged/link">LINK.</a>
1784<br>
1785
1786
1787</div>
1788</div>
1789</div>
1790
1791
1792
1793<div id="bite">
1794<div id="thekey"></div>
1795<div class="death">
1796<div id="actualnews">
1797
1798<center>
1799
1800<div style="width:auto;height:280px;overflow:scroll;padding:5px;">
1801
1802<h3>
1803"we hold these"
1804</h3>
1805
1806independent & highly selective historical thomas jefferson (NOT associated with hamilton: an american musical)
1807
1808<h3>
1809"truths to be"
1810</h3>
1811
1812est. september 2016<br>penned by : dani<br>formerly declarationwritten
1813
1814<h3>
1815"sacred & undeniable"
1816</h3>
1817
1818inbox: 07<br>
1819starters:00<br>
1820drafts:09
1821
1822
1823
1824
1825
1826</center>
1827
1828
1829</div>
1830</div></div>