-
Notifications
You must be signed in to change notification settings - Fork 0
/
touhouwall.html
1367 lines (1195 loc) · 69.3 KB
/
touhouwall.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- SCM Music Player http://scmplayer.co -->
<script type="text/javascript" src="https://scmplayer.co/script.js"
data-config="{'skin':'skins/scmGreen/skin.css','volume':100,'autoplay':true,'shuffle':true,'repeat':0,'placement':'bottom','showplaylist':true,'playlist':'https://soundcloud.com/touhouwall'}" ></script>
<!-- SCM Music Player script end -->
<!DOCTYPE html>
<html {block:English}lang="en"{/block:English}>
<head>
<meta name="color:Body background" content="#848484" />
<meta name="color:Post title" content="#393939" />
<meta name="color:Post text" content="#393939" />
<meta name="color:Post links" content="#529ecc" />
<meta name="color:Post background" content="#fdfdfd" />
<meta name="color:Metadata text" content="#b8b8b8" />
<meta name="color:Metadata links" content="#b8b8b8" />
<meta name="color:Masthead title" content="#ffffff" />
<meta name="color:Masthead text" content="#ffffff" />
<meta name="color:Masthead links" content="#ffffff" />
<meta name="color:Masthead background" content="#ffffff" />
<meta name="color:Accent" content="#80b5d5" />
<meta name="color:Widget area background" content="#505050" />
<meta name="color:Widget background" content="#3a3a3a" />
<meta name="color:Widget title" content="#5b5b5b" />
<meta name="color:Widget text" content="#5a5a5a" />
<meta name="color:Widget links" content="#989898" />
<meta name="color:Primary masthead effect" content="#f5ad58" />
<meta name="color:Secondary masthead effect" content="#e17e66" />
<meta name="color:Menu bar button" content="#737373" />
<meta name="color:Menu bar background" content="#e5e5e5" />
<meta name="color:Menu bar links" content="#737373" />
<meta name="if:Menu bar" content="1"/>
<meta name="if:Post background transparent" content="0"/>
<meta name="if:Emphasize lead text post paragraph" content="0"/>
<meta name="if:Masthead avatar" content="1"/>
<meta name="if:Masthead site name" content="1"/>
<meta name="if:Masthead description" content="0"/>
<meta name="if:Masthead navigation" content="1"/>
<meta name="if:Navigation widget" content="0"/>
<meta name="if:Navigation RSS link" content="0"/>
<meta name="if:Navigation archive link" content="1"/>
<meta name="if:Navigation random post link" content="0"/>
<meta name="if:Infinite scroll" content="0"/>
<meta name="if:Site name widget" content="0"/>
<meta name="if:Avatar widget" content="0"/>
<meta name="if:Description widget" content="0"/>
<meta name="if:Search widget" content="0"/>
<meta name="if:Liked posts widget" content="0"/>
<meta name="if:People I Follow widget" content="0"/>
<meta name="if:Form photosets" content="0"/>
<meta name="if:Make it snow" content="0"/>
<meta name="if:Load Latin subset font if available" content="0"/>
<meta name="if:Footer" content="0"/>
<meta name="if:Link to Olle Ota Themes" content="1"/>
<meta name="image:Masthead image" content="" />
<meta name="image:Masthead logo" content="" />
<meta name="image:Masthead background" content="" />
<meta name="image:Body background" content="https://static.tumblr.com/nrrlmzd/WEnn4gpjt/oscar_bg.jpg" />
<meta name="image:Custom image widget" content="" />
<meta name="text:Twitter widget code" content=''/>
<meta name="text:Primary Google Font name" content="Oxygen">
<meta name="text:Secondary Google Font name" content="Montserrat">
<meta name="text:Google Analytics ID" content=''/>
<meta name="text:Disqus shortname" content="" />
<meta name="text:Custom text widget" content="" />
<meta name="text:Custom text widget title" content="" />
<meta name="text:Direct link URL one" content=''/>
<meta name="text:Direct link title one" content=''/>
<meta name="text:Direct link URL two" content=''/>
<meta name="text:Direct link title two" content=''/>
<meta name="text:Direct link URL three" content=''/>
<meta name="text:Direct link title three" content=''/>
<meta name="text:Direct link URL four" content=''/>
<meta name="text:Direct link title four" content=''/>
<meta name="text:Direct link URL five" content=''/>
<meta name="text:Direct link title five" content=''/>
<meta name="text:Direct link URL six" content=''/>
<meta name="text:Direct link title six" content=''/>
<meta name="text:Username on Behance" content=''/>
<meta name="text:Username on Bitbucket" content=''/>
<meta name="text:Username on Facebook" content=''/>
<meta name="text:Username on Flickr" content=''/>
<meta name="text:Username on GitHub" content=''/>
<meta name="text:Username on Google Plus" content=''/>
<meta name="text:Username on Instagram" content=''/>
<meta name="text:Username on Pinterest" content=''/>
<meta name="text:Username on Reddit" content=''/>
<meta name="text:Username on SoundCloud" content=''/>
<meta name="text:Username on Steam" content=''/>
<meta name="text:Username on Twitter" content=''/>
<meta name="text:Username on Vimeo" content=''/>
<meta name="text:Username on WordPress" content=''/>
<meta name="text:Username on YouTube" content=''/>
<meta name="select:Avatar style" content="avatar-circle" title="Circle">
<meta name="select:Avatar style" content="avatar-square" title="Square">
<meta name="select:Avatar style" content="avatar-rounded" title="Rounded">
<meta name="select:Masthead effect" content="none" title="None">
<meta name="select:Masthead effect" content="glow" title="Glow">
<meta name="select:Masthead effect" content="border-in" title="Border in">
<meta name="select:Masthead effect" content="gradient" title="Gradient">
<meta name="select:Masthead effect" content="color" title="Color">
<meta name="select:Masthead effect" content="fade-out" title="Fade out">
<meta name="select:Global font size" content="1.0em" title="1.0">
<meta name="select:Global font size" content="0.6em" title="0.6">
<meta name="select:Global font size" content="0.7em" title="0.7">
<meta name="select:Global font size" content="0.8em" title="0.8">
<meta name="select:Global font size" content="0.9em" title="0.9">
<meta name="select:Global font size" content="1.1em" title="1.1">
<meta name="select:Global font size" content="1.2em" title="1.2">
<meta name="select:Global font size" content="1.3em" title="1.3">
<meta name="select:Global font size" content="1.4em" title="1.4">
<meta name="select:Global font size" content="1.5em" title="1.5">
<meta name="select:Post notes" content="display-permalink" title="Permalink only">
<meta name="select:Post notes" content="display-hide" title="Hide">
<meta name="select:Post tags" content="display-everywhere" title="Index and permalink">
<meta name="select:Post tags" content="display-index" title="Index only">
<meta name="select:Post tags" content="display-permalink" title="Permalink only">
<meta name="select:Post tags" content="display-hide" title="Hide">
<meta name="select:Post Tumblr buttons" content="display-hide" title="Hide">
<meta name="select:Post Tumblr buttons" content="display-everywhere" title="Index and permalink">
<meta name="select:Post Tumblr buttons" content="display-index" title="Index only">
<meta name="select:Post Tumblr buttons" content="display-permalink" title="Permalink only">
<meta name="select:Post content alignment" content="left" title="Left">
<meta name="select:Post content alignment" content="right" title="Right">
<meta name="select:Post content alignment" content="center" title="Center">
<meta name="select:Body background" content="body-bg-full" title="Full-size">
<meta name="select:Body background" content="body-bg-pattern" title="Pattern">
<meta name="select:Masthead background" content="masthead-bg-disabled" title="Disabled">
<meta name="select:Masthead background" content="masthead-bg-full" title="Full-size">
<meta name="select:Masthead background" content="masthead-bg-contain" title="Contain">
<meta name="select:Masthead background" content="masthead-bg-pattern" title="Pattern">
<meta name="select:Masthead links style" content="links-uppercase" title="Uppercase">
<meta name="select:Masthead links style" content="links-bold-uppercase" title="Bold and uppercase">
<meta name="select:Masthead links style" content="links-bold" title="Bold">
<meta name="select:Masthead links style" content="links-italics" title="Italics">
<meta name="select:Masthead links style" content="links-normal" title="Normal">
<meta name="select:Masthead title style" content="links-uppercase" title="Uppercase">
<meta name="select:Masthead title style" content="links-bold-uppercase" title="Bold and uppercase">
<meta name="select:Masthead title style" content="links-bold" title="Bold">
<meta name="select:Masthead title style" content="links-italics" title="Italics">
<meta name="select:Masthead title style" content="links-normal" title="Normal">
<meta name="select:Post title style" content="entry-title-normal" title="Normal">
<meta name="select:Post title style" content="entry-title-bold-uppercase" title="Bold and uppercase">
<meta name="select:Post title style" content="entry-title-bold" title="Bold">
<meta name="select:Post title style" content="entry-title-uppercase" title="Uppercase">
<meta name="select:Post title style" content="entry-title-italics" title="Italics">
<meta name="select:Post title font size" content="0.9em" title="1.0">
<meta name="select:Post title font size" content="0.3em" title="0.4">
<meta name="select:Post title font size" content="0.4em" title="0.3">
<meta name="select:Post title font size" content="0.5em" title="0.5">
<meta name="select:Post title font size" content="0.6em" title="0.6">
<meta name="select:Post title font size" content="0.7em" title="0.7">
<meta name="select:Post title font size" content="0.8em" title="0.8">
<meta name="select:Post title font size" content="0.9em" title="0.9">
<meta name="select:Post title font size" content="1.1em" title="1.1">
<meta name="select:Post title font size" content="1.2em" title="1.2">
<meta name="select:Post title font size" content="1.3em" title="1.3">
<meta name="select:Post title font size" content="1.4em" title="1.4">
<meta name="select:Post title font size" content="1.5em" title="1.5">
<meta name="select:Masthead title font size" content="1.0em" title="1.0">
<meta name="select:Masthead title font size" content="0.3em" title="0.3">
<meta name="select:Masthead title font size" content="0.4em" title="0.4">
<meta name="select:Masthead title font size" content="0.5em" title="0.5">
<meta name="select:Masthead title font size" content="0.6em" title="0.6">
<meta name="select:Masthead title font size" content="0.7em" title="0.7">
<meta name="select:Masthead title font size" content="0.8em" title="0.8">
<meta name="select:Masthead title font size" content="0.9em" title="0.9">
<meta name="select:Masthead title font size" content="1.1em" title="1.1">
<meta name="select:Masthead title font size" content="1.2em" title="1.2">
<meta name="select:Masthead title font size" content="1.3em" title="1.3">
<meta name="select:Masthead title font size" content="1.4em" title="1.4">
<meta name="select:Masthead title font size" content="1.5em" title="1.5">
<meta name="select:Theme attribution style" content="style-text" title="Simple">
<meta name="select:Theme attribution style" content="style-gray" title="Gray button">
<meta name="select:Theme attribution style" content="style-transparent" title="Transparent button">
<meta name="select:Theme attribution style" content="style-w-logo" title="White logo">
<meta name="select:Theme attribution style" content="style-b-logo" title="Black logo">
<meta name="select:Theme attribution style" content="style-s-logo" title="Surf logo">
<link href='//fonts.googleapis.com/css?family={text:Primary Google Font name}{block:IfLoadLatinSubsetFontIfAvailable}&subset=latin,latin-ext{/block:IfLoadLatinSubsetFontIfAvailable}' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family={text:Secondary Google Font name}{block:IfLoadLatinSubsetFontIfAvailable}&subset=latin,latin-ext{/block:IfLoadLatinSubsetFontIfAvailable}' rel='stylesheet' type='text/css'>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
{block:Description}
<meta name="description" content="{MetaDescription}" />
{/block:Description}
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
<title>{block:TagPage}{Tag} posts - {/block:TagPage} {block:SearchPage}{lang:Search results for SearchQuery} - {/block:SearchPage}{block:PostSummary}{PostSummary} - {/block:PostSummary}{Title}</title>
<link rel="shortcut icon" href="{Favicon}">
<link rel="apple-touch-icon" href="{PortraitURL-128}">
<link rel="alternate" type="application/rss+xml" href="{RSS}">
<link href="//static.tumblr.com/wgijwsy/YZomlhwl6/normalize.min.css" rel="stylesheet" type="text/css" />
<style>#theme-attr:hover{background-color:#4797d2}.special-effect{position:absolute;top:0;left:0;right:0;bottom:0;z-index:2;pointer-events:none;opacity:.7}.post-effect-fade-out .post-hover .special-effect,.masthead-effect-fade-out #masthead .special-effect{opacity:1}.post-effect-fade-out .hover-effect{background:-moz-linear-gradient(top,rgba(255,255,255,.5),{color:Primary post hover effect});background:-webkit-gradient(linear,left top,left bottom,from(rgba(255,255,255,.5)),to({color:Primary post hover effect}));background:-ms-linear-gradient(rgba(255,255,255,.5),{color:Primary post hover effect});filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255, 255, 255, 0.5)', endColorstr='{color:Primary post hover effect}')}.masthead-effect-fade-out #masthead-effect{background:-moz-linear-gradient(top,rgba(255,255,255,.5),{color:Primary masthead effect});background:-webkit-gradient(linear,left top,left bottom,from(rgba(255,255,255,.5)),to({color:Primary masthead effect}));background:-ms-linear-gradient(rgba(255,255,255,.5),{color:Primary masthead effect});filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255, 255, 255, 0.5)', endColorstr='{color:Primary masthead effect}')}.post-effect-glow .hover-effect{box-shadow:0 0 4px 2px{color:Primary post hover effect}}.masthead-effect-glow #masthead-effect{box-shadow:0 0 4px 2px{color:Primary masthead effect}}.post-effect-color .hover-effect,.post-effect-solid-color .hover-effect{background:{color:Primary post hover effect}}.post-effect-solid-color .special-effect{opacity:1}.masthead-effect-color #masthead-effect{background:{color:Primary masthead effect}}.post-effect-border-in .hover-effect{border:3px solid{color:Primary post hover effect}}.masthead-effect-border-in #masthead-effect{border:3px solid{color:Primary masthead effect}}.post-effect-gradient .hover-effect{background:-moz-linear-gradient(top,{color:Primary post hover effect},{color:Secondary post hover effect});background:-webkit-gradient(linear,left top,left bottom,from({color:Primary post hover effect}),to({color:Secondary post hover effect}));background:-ms-linear-gradient({color:Primary post hover effect},{color:Secondary post hover effect});filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='{color:Primary post hover effect}', endColorstr='{color:Secondary post hover effect}')}.masthead-effect-gradient #masthead-effect{background:-moz-linear-gradient(top,{color:Primary masthead effect},{color:Secondary masthead effect});background:-webkit-gradient(linear,left top,left bottom,from({color:Primary masthead effect}),to({color:Secondary masthead effect}));background:-ms-linear-gradient({color:Primary masthead effect},{color:Secondary masthead effect});filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='{color:Primary masthead effect}', endColorstr='{color:Secondary masthead effect}')}::-webkit-input-placeholder{color:{color:Masthead text}}:-moz-placeholder{color:{color:Masthead text}}::-moz-placeholder{color:{color:Masthead text}}:-ms-input-placeholder{color:{color:Masthead text}}::-moz-selection{background:{color:Accent};color:#fff;text-shadow:none}::selection{background:{color:Accent};color:#fff;text-shadow:none}html{-webkit-text-size-adjust:none}#masthead{background-color:{color:Masthead background};background-image:url('{image:Masthead background}');color:{color:Masthead text}}#masthead #search form input{color:{color:Masthead text}}.body-bg-full,.masthead-bg-full #masthead{background-size:cover;background-repeat:no-repeat}.body-bg-full{background-attachment:fixed}.masthead-bg-contain #masthead{background-position:top center;background-size:contain}.masthead-bg-disabled #masthead,.body-bg-disabled{background:0}#masthead a{color:{color:Masthead links}}body{background-color:{color:Body background};background-image:url('{image:Body background}');font-size:{select:Font size};color:{color:Post text}}.entry-title a{color:{color:Post title}}#site-name{color:{color:Masthead title}!important}.links-uppercase a{text-transform:uppercase;letter-spacing:.1em}.links-bold a{font-weight:700}.links-bold-uppercase a{font-weight:700;text-transform:uppercase}.links-italics a{font-style:italic}.entry-title-bold .entry-title,.entry-title-bold h1,.entry-title-bold h2,.entry-title-bold h3,.entry-title-bold h4,.entry-title-bold h5,.entry-title-bold h6,.entry-title-bold h7{font-weight:700}.entry-title-italics .entry-title,.entry-title-italics h1,.entry-title-italics h2,.entry-title-italics h3,.entry-title-italics h4,.entry-title-italics h5,.entry-title-italics h6,.entry-title-italics h7{font-style:italic}.entry-title-uppercase .entry-title,.entry-title-uppercase h1,.entry-title-uppercase h2,.entry-title-uppercase h3,.entry-title-uppercase h4,.entry-title-uppercase h5,.entry-title-uppercase h6,.entry-title-uppercase h7{letter-spacing:.1em;text-transform:uppercase}.entry-title-bold-uppercase .entry-title,.entry-title-bold-uppercase h1,.entry-title-bold-uppercase h2,.entry-title-bold-uppercase h3,.entry-title-bold-uppercase h4,.entry-title-bold-uppercase h5,.entry-title-bold-uppercase h6,.entry-title-bold-uppercase h7{font-weight:700;letter-spacing:.1em;text-transform:uppercase}.entry-title-centered .entry-title{text-align:center}a{color:{color:Post links}}.avatar-circle img{border-radius:50%}.avatar-rounded img{border-radius:.5em}.twtr-doc{width:100%}iframe,img,embed,object,video{max-width:100%}.type-text img{vertical-align:bottom;height:auto;width:auto}#tumblr_lightbox img{max-width:inherit}iframe{position:relative}img[align=left]{margin-right:3%}img[align=right]{margin-left:3%}blockquote{margin:1em 0;border-left:2px solid{color:Text};padding-left:10px}ul{list-style-position:inside;padding:0}::-webkit-input-placeholder{color:inherit}:-moz-placeholder{color:inherit}::-moz-placeholder{color:inherit}:-ms-input-placeholder{color:inherit}*{word-wrap:break-word;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}html{-webkit-text-size-adjust:none}body{overflow-x:hidden}.let_it_snow{position:fixed;width:25px;height:25px;animation-timing-function:ease-out;z-index:1000;pointer-events:none}.let_it_snow.snow_type_1{background:transparent url(https://static.tumblr.com/79xqv9n/DsRmx9bw5/snow1.png) center center no-repeat}.let_it_snow.snow_type_2{background:transparent url(https://static.tumblr.com/79xqv9n/yHvmx9bw7/snow2.png) center center no-repeat}.let_it_snow.snow_duration_1{animation-duration:8s}.let_it_snow.snow_duration_2{animation-duration:7s}.let_it_snow.snow_duration_3{animation-duration:6s}.let_it_snow.snow_duration_4{animation-duration:5s}.let_it_snow.snow_duration_5{animation-duration:4s}.let_it_snow.snow_delay_1{animation-delay:5s}.let_it_snow.snow_delay_2{animation-delay:4s}.let_it_snow.snow_delay_3{animation-delay:3s}.let_it_snow.snow_delay_4{animation-delay:2s}.let_it_snow.snow_delay_5{animation-delay:1s}.let_it_snow.snow_anim_1{animation-name:snow_anim_1,snow_anim_fade}.let_it_snow.snow_anim_2{animation-name:snow_anim_2,snow_anim_fade}.let_it_snow.snow_anim_3{animation-name:snow_anim_3,snow_anim_fade}.let_it_snow.snow_anim_4{animation-name:snow_anim_4,snow_anim_fade}.let_it_snow.snow_anim_5{animation-name:snow_anim_5,snow_anim_fade}@keyframes snow_anim_fade{0%{opacity:1}60%{opacity:1}100%{opacity:0}}@keyframes snow_anim_1{0%{transform:translate(0,0) rotate(0)}100%{transform:translate(-70px,630px) rotate(70deg)}}@keyframes snow_anim_2{0%{transform:translate(0,0) rotate(0)}100%{transform:translate(70px,640px) rotate(-70deg)}}@keyframes snow_anim_3{0%{transform:translate(0,0) rotate(0)}100%{transform:translate(30px,550px) rotate(45deg)}}@keyframes snow_anim_4{0%{transform:translate(0,0) rotate(0)}100%{transform:translate(-30px,600px) rotate(-45deg)}}@keyframes snow_anim_5{0%{transform:translate(0,0) rotate(0)}100%{transform:translate(0px,660px) rotate(50deg)}}#infscr-loading{position:absolute;bottom:0;left:50%}#loading{display:inline-block;position:fixed;bottom:0;right:40%;border-bottom:6px solid rgba(160,160,160,1);border-left:6px solid rgba(226,226,226,1);border-right:6px solid rgba(219,219,219,1);border-top:6px solid rgba(221,221,221,1);border-radius:50%;height:30px;width:30px;-webkit-animation:spin .8s infinite linear;animation:spin .8s infinite linear;margin-bottom:8px}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.has-menu{height:100%}.menu-button{color:{color:Menu bar button}}.menu-container{display:inline-block;float:left;width:3.5%;background:{color:Menu bar background};padding:1%;min-height:100%;position:fixed;top:0;left:0;z-index:250}.menu-button{text-align:center;cursor:pointer}.menu-activated{width:20%;box-shadow:1px 2px 9px 0 rgba(0,0,0,.26)}.menu-content{display:none;width:100%;line-height:1.5}.menu-content a{color:{color:Menu bar links}}.menu-content li{padding:1em .5em;width:100%;display:inline-block}.menu-content li.social-icon{float:left;width:33.33%}#navigation-widget .social-icon{float:left}.menu-activated .menu-button{display:none}.menu-activated .menu-content{display:inline-block;position:fixed;top:0;left:0;width:20%;padding:3%;height:100%;overflow-y:auto}.has-menu .theme-wrapper{display:inline-block;width:96.5%;float:right}.clearit:before,.clearit:after{content:"";display:table}.clearit:after{clear:both}.clearit{*zoom:1}.photo-slideshow{visibility:hidden}.photo-slideshow.processed{visibility:visible}.photo-slideshow .row{clear:both;width:100%}.photo-slideshow .pxu-photo{display:block;float:left;margin-bottom:0;width:100%;overflow:hidden}.photo-slideshow .pxu-photo img{display:block}.photo-slideshow.processed .pxu-photo img{width:100%;height:auto}.photo-slideshow .pxu-photo:first-child img{margin-left:0}.photo-slideshow .count-1{width:100%}.photo-slideshow .count-2{width:50%}.photo-slideshow .count-3{width:33.33%}.photo-slideshow .count-4{width:25%}.photo-slideshow .count-5{width:20%}.photo-slideshow .info{display:none}.photo-data{position:relative;float:left}.icons{position:absolute;top:5px;right:5px;width:20px;height:66px;text-indent:-9999px;z-index:999;visibility:hidden}.icons>span,.icons .tumblr-box span{width:20px;height:20px;display:block;margin-bottom:2px;cursor:pointer}.zoom{background:url(https://static.tumblr.com/hugxd2w/kgem0so9j/zoom-icon.png)}.info{background:url(https://static.tumblr.com/hugxd2w/ffwm0so9t/info-icon.png);position:relative}.pxu-data{position:absolute;top:30px;left:-110px;width:240px;background:#000;background:rgba(0,0,0,.85);color:#fff;font-size:12px;line-height:1.4;text-indent:0;padding:20px;display:none;opacity:0;filter:alpha(opacity=0);-ms-filter:"alpha(Opacity=0)";box-shadow:2px 2px 7px rgba(0,0,0,.55);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.pxu-caption{margin-top:0;word-wrap:break-word}.pxu-caption:before{content:url(https://static.tumblr.com/hugxd2w/SSBm6wxmm/caption-icon.png);opacity:.5;filter:alpha(opacity=50);-ms-filter:"alpha(Opacity=50)";float:left;margin-right:5px}.pxu-data.caption-only .pxu-caption{margin-bottom:0}.pxu-data table{font-family:"Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;font-weight:700;width:100%}.pxu-data table tr{width:100%}.pxu-data table tr td{width:50%;font-weight:700;padding-bottom:15px}.pxu-data table tr:last-child td{padding-bottom:0}.pxu-data .label{color:#ccc;text-transform:uppercase;font-size:10px;text-align:right;padding-right:12px;font-weight:400}.arrow-down{width:0;height:0;border-left:10px solid transparent;border-right:10px solid transparent;border-bottom:10px solid rgba(0,0,0,.85);position:absolute;top:-10px;left:110px}
.post-content-align-right article{text-align:right}.post-content-align-center article{text-align:center}.post-content-align-center .post-header{display:inline-block;margin-top:1em}.post-content-align-center .post-tags li{float:none;display:inline}.post-content-align-center .post-tumblr-buttons li{float:none;padding:15px 0 0 15px}.post-content-align-center .post-tumblr-buttons{width:100%;float:none}.post-content-align-center .source{width:100%;display:inline-block}.post-content-align-center blockquote{margin:0 auto;width:auto;display:table}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#loading{display:none;left:10px;top:10px;margin-bottom:0}html{font-family:'{text:Primary Google Font name}';line-height:0;word-wrap:break-word}body{font-size:{select:Global font size}}body a{color:{color:Post links}}.site-name-wrapper{font-size:{select:Masthead title font size}}.title-wrapper,.quote-wrapper{font-size:{select:Post title font size}}#masthead,article,footer,.widget{line-height:1.5}h1,h2,h3,h4,h5,h6{font-weight:400}h1{font-size:2.5em}h2{font-size:2em}h3{font-size:1.5em}h4{font-size:1.2em}h5{font-size:.9em}h6{font-size:.75em}ol{padding:0;list-style-position:inside}li,ul{max-width:100%}blockquote{margin:0;padding:0 1%}a{text-decoration:none}nav ul,footer ul,.chat ul,.widget ul,.notes{display:inline-block;list-style:none;margin:0;padding:0}input[type=search]{width:100%;background:0;border:0}.post-title a,.post-title{line-height:120%}.emphasize-lead .text>p:first-child{font-size:1.3em;line-height:125%}.audio-embed iframe{width:100%}.content-text,.content-media,.alert,.intro{background:{color:Post background}}.widgets{background:{color:Widget area background};color:{color:Widget text}}.widget{background:{color:Widget background}}.widgets a{color:{color:Widget links}}.widgets h1,.widgets h2,.widgets h3,.widgets h4,.widgets h5{color:{color:Widget title}}input[type=search]{color:{color:Widget text};border-bottom:1px solid{color:Widget text}}::-webkit-input-placeholder{color:{color:Widget text}}:-moz-placeholder{color:{color:Widget text}}::-moz-placeholder{color:{color:Widget text}}:-ms-input-placeholder{color:{color:Widget text}}.type-link .post-title a{text-decoration:underline}.post-title a,.post-title{color:{color:Post title}}.post-meta,.post-footer,article footer{color:{color:Metadata text}}.post-meta a,.post-footer a{color:{color:Metadata links}}#disqus_color_hook{color:#5b5b5b}.body-wrapper #wrapper{background:{color:Body wrapper}}.display-everywhere{display:block}.index .display-index{display:block}.permalink .display-index{display:none!important}.index .display-permalink{display:none!important}.permalink .display-permalink{display:block}.display-hide{display:none!important}.body-wrapper #wrapper{vertical-align:bottom;width:100%;display:inline-block}#wrapper{overflow:hidden}.no-post-background .content-text,.no-post-background .content-media,.no-post-background .alert,.no-post-background .intro{background:none!important}.button{border-bottom:2px solid{color:Body links};display:inline-block;margin:1em 0}p+.button{margin-top:0}.widgets .button{border-bottom:2px solid{color:Widget links}}a{-webkit-transition:ease-in .3s;-moz-transition:ease-in .3s;-o-transition:ease-in .3s;-ms-transition:ease-in .3s;transition:ease-in .3s}a:hover{opacity:.8}#overlay ul li a:hover{opacity:1}#masthead{display:inline-block;width:100%;padding:10% 0;position:relative}.sidebar-present #masthead{position:absolute}.masthead-widget{display:inline-block;float:left;width:100%;padding:2% 5%;position:relative;z-index:2}.masthead-widget h1{margin:0}.masthead-navigation li{display:inline}.masthead-navigation a{display:inline;margin-right:.5em}#masthead-description{margin:0}article{display:inline-block;width:100%}article{padding:5% 8% 0}#content article:last-child{padding-bottom:5%}.source{float:right;text-transform:uppercase;letter-spacing:.1em;font-size:.8em;margin:.2em 0}.post-title{margin:0}.post-title a{margin-bottom:.4em;display:inline-block;max-width:100%}.quote blockquote{font-size:2.5em;line-height:100%;border:0;padding:0;margin:1em 0}.chat .label{text-transform:uppercase;letter-spacing:.1em;width:100%;display:inline-block}.chat .entry-content li{margin-bottom:1.5em;margin-top:1.5em}.post-header{margin-bottom:1em}.post-footer{font-size:.9em;margin-top:1em;display:inline-block;width:100%}.post-tags li{float:left;padding:0;margin-right:1%;margin-bottom:2%;max-width:100%}.post-tumblr-buttons{float:right;display:block}.post-tumblr-buttons li{display:inline-block;padding:0 0 0 10px}.post-footer .post-notes-label{display:inline-block;clear:both;width:100%}.post-footer .notes .avatar{border-radius:.2em;margin-right:.5em;vertical-align:middle}.alert{border-bottom:1px solid rgba(0,0,0,.08)}.results{font-size:2.75em}.alert .tag{border-bottom:3px solid}#pagination,#pagination a{display:inline-block;width:100%}#pagination li{border-top:1px solid rgba(0,0,0,.09);border-bottom:1px solid rgba(0,0,0,.09);display:inline-block;padding:2em;text-align:center;width:50%}#prev-page{float:left}#next-page{float:right}nav ul{width:100%}#colophon{width:100%;clear:both;display:inline-block;text-align:center;padding:2% 20%}.widget{padding:1em;margin:2%;width:29.33333333333%;display:inline-block}#avatar-widget{text-align:center}.widget h1,.widget h2,.widget h3,.widget h4{margin:.5em 0}#site-name-widget h1{margin:0}#description-widget p{margin:0}#followed-widget ul img{padding:3%;margin:1%;float:left;display:inline-block;background:rgba(0,0,0,.03)}#followed-widget ul{display:inline}.like_post{background:rgba(0,0,0,.03);padding:8%;text-align:center;margin:0 0 7%}.like_left_quote,.like_right_quote{display:none}#nav-toggle{position:absolute;top:20px;left:20px}#nav-toggle-wrapper{position:absolute;top:0;left:0}#jPanelMenu-menu li a{padding:2em}</style>
<style>article{padding:5%;width:70%;margin:0 15%;border-radius:.3em}.post-background article{margin:5% 15%}.masthead-widget{padding:1% 10%;text-align:center}.widgets{width:100%}.widget{border-radius:.3em}.masthead-navigation ul{font-size:.9em}.hashtag{display:none}.post-tags a{border:1px solid{color:Metadata links};padding:.3em 1em;border-radius:.3em}.post-title{font-weight:700}h1,h2,h3,h4,h5,h6,#masthead{font-family:{text:Secondary Google Font name}}
.masthead-widget{text-align:left}article{margin:0 5%}.post-tags a{border:0;padding:.3em 1em 0 0}.hashtag{display:inline-block;vertical-align:middle;line-height:100%}#masthead{padding:5% 0}.quote-mark{display:none}.post-background article{margin:5% 10%}
.masthead-widget{text-align:center}article{margin:0 15%}.post-background article{margin:5% 15%}
.masthead-widget{text-align:center}article{width:60%;margin:0 20%}.post-background article{margin:5% 20%;box-shadow:0 2px 4px rgba(0,0,0,.13)}#wrapper{margin-top:-5%}#pagination li{border:0;padding:1.35em 2em;width:auto;margin:5% 4% 7% 0;background:{color:Post background};border-radius:.3em;box-shadow:0 2px 4px rgba(0,0,0,.13)}#prev-page,#next-page{float:none}#pagination ul{width:100%;text-align:center}</style>
<style>@media screen and (max-width:700px){.menu-container{width:100%;position:relative;padding:1em 2em;min-height:initial}.menu-button{text-align:left}.menu-container:hover{width:100%}.has-menu .theme-wrapper{width:100%}.menu-container:hover .menu-content{position:initial;width:100%}.menu-content li{padding:.5em 0;float:left;margin:1em;width:auto}#masthead{padding:10% 0}.masthead-widget{padding:0 6%}#masthead,#wrapper,#content,.widgets{width:100%;margin:0;position:inherit;float:none}#masthead{position:relative}#pagination{width:100%}.post-background article{margin:6% 5% 0!important;padding:5%;width:90%}.no-post-background article{margin:0 10% 2em!important;padding:0;width:80%}.post-background #content article:last-child{margin-bottom:6%!important}.no-post-background #content article:first-child{margin-top:2em!important}.no-post-background #content article:last-child{padding-bottom:0}.post-tags li{margin-right:3%;margin-bottom:6%}.widgets{width:100%}.widget{width:90%;margin:5% 0 0 5%}.widget:last-child{margin-bottom:5%}.quote blockquote{font-size:2em}h1{font-size:1.9em}h2{font-size:1.4em}h3{font-size:1.2em}h4{font-size:1em}h5{font-size:.9em}h6{font-size:.75em}}
@media all and (min-width:1500px){.theme-name-Oscar.post-background article{margin:5% 27.5%}.theme-name-Oscar article{margin:0 27.5%;width:45%}}</style>
<style> {CustomCSS} </style>
</head>
<body class="
theme-name-Oscar
{block:IfLinkToOlleOtaThemes}
masthead-effect-{select:Masthead effect}
post-content-align-{select:Post content alignment}
menu-{select:Menu}
{block:PermalinkPage}permalink{/block:PermalinkPage}
{block:IndexPage}index{/block:IndexPage}
{select:Body background}
{select:Masthead background}
{block:IfUseBodyWrapper}body-wrapper{/block:IfUseBodyWrapper}
{block:IfNotUseBodyWrapper}no-body-wrapper{/block:IfNotUseBodyWrapper}
{select:Photo filter}
{block:IfEmphasizeLeadTextPostParagraph}
emphasize-lead
{/block:IfEmphasizeLeadTextPostParagraph}
{block:IfPostBackgroundTransparent}no-post-background{/block:IfPostBackgroundTransparent}
{block:IfNotPostBackgroundTransparent}post-background{/block:IfNotPostBackgroundTransparent}
{block:IfMenuBar}has-menu{/block:IfMenuBar}
{block:IfNotMenuBar}no-menu{/block:IfNotMenuBar}
{/block:IfLinkToOlleOtaThemes}
{block:IfNotLinkToOlleOtaThemes}
masthead-effect-{select:Masthead effect}
post-content-align-{select:Post content alignment}
menu-{select:Menu}
{block:PermalinkPage}permalink{/block:PermalinkPage}
{block:IndexPage}index{/block:IndexPage}
{select:Body background}
{select:Masthead background}
{block:IfUseBodyWrapper}body-wrapper{/block:IfUseBodyWrapper}
{block:IfNotUseBodyWrapper}no-body-wrapper{/block:IfNotUseBodyWrapper}
{select:Photo filter}
{block:IfEmphasizeLeadTextPostParagraph}
emphasize-lead
{/block:IfEmphasizeLeadTextPostParagraph}
{block:IfPostBackgroundTransparent}no-post-background{/block:IfPostBackgroundTransparent}
{block:IfNotPostBackgroundTransparent}post-background{/block:IfNotPostBackgroundTransparent}
{block:IfMenuBar}has-menu{/block:IfMenuBar}
{block:IfNotMenuBar}no-menu{/block:IfNotMenuBar}
{/block:IfNotLinkToOlleOtaThemes}
">
{block:IfMenuBar}
<div class="menu-container">
<div class="menu-button">
<i class="fa fa-bars"></i>
</div>
<div class="menu-content">
<nav>
<ul>
{block:HasPages}{block:Pages}
<li>
<a href="{URL}" {Target}>{Label}</a>
</li>
{/block:Pages}{/block:HasPages}
{block:SubmissionsEnabled}
<li>
<a href="/submit" {Target}>{SubmitLabel}</a>
</li>
{/block:SubmissionsEnabled}
{block:AskEnabled}
<li>
<a href="/ask" {Target}>{AskLabel}</a>
</li>
{/block:AskEnabled}
{block:IfLinkToOlleOtaThemes}
<li>
<a href="https://soundcloud.com/touhouwall" {Target} rel="nofollow" title="{Title} ">Soundcloud</a>
</li>
{/block:IfLinkToOlleOtaThemes}
{block:IfNavigationRSSLink}
<li>
<a href="{RSS}" id="rss" title="{lang:Subscribe via RSS}" {Target}>{lang:RSS}</a>
</li>
{/block:IfNavigationRSSLink}
{block:IfNavigationArchiveLink}
<li>
<a href="/archive" id="archive" title="{lang:Browse the archive}" {Target}>{lang:Archive}</a>
</li>
{/block:IfNavigationArchiveLink}
{block:IfNavigationRandomPostLink}
<li>
<a href="/random" id="random" rel="nofollow" {Target}>{lang:Random post}</a>
</li>
{/block:IfNavigationRandomPostLink}
{block:IfDirectLinkUrlOne}
<li>
<a href="{text:Direct link URL One}" class="direct-link" {Target}>
{block:IfDirectLinkTitleOne}{text:Direct link title One}{/block:IfDirectLinkTitleOne}
{block:IfNotDirectLinkTitleOne}{lang:Link}{/block:IfNotDirectLinkTitleOne}
</a>
</li>
{/block:IfDirectLinkUrlOne}
{block:IfDirectLinkUrlTwo}
<li>
<a href="{text:Direct link URL Two}" class="direct-link" {Target}>
{block:IfDirectLinkTitleTwo}{text:Direct link title Two}{/block:IfDirectLinkTitleTwo}
{block:IfNotDirectLinkTitleTwo}{lang:Link}{/block:IfNotDirectLinkTitleTwo}
</a>
</li>
{/block:IfDirectLinkUrlTwo}
{block:IfDirectLinkUrlThree}
<li>
<a href="{text:Direct link URL Three}" class="direct-link" {Target}>
{block:IfDirectLinkTitleThree}{text:Direct link title Three}{/block:IfDirectLinkTitleThree}
{block:IfNotDirectLinkTitleThree}{lang:Link}{/block:IfNotDirectLinkTitleThree}
</a>
</li>
{/block:IfDirectLinkUrlThree}
{block:IfDirectLinkUrlFour}
<li>
<a href="{text:Direct link URL Four}" class="direct-link" {Target}>
{block:IfDirectLinkTitleFour}{text:Direct link title Four}{/block:IfDirectLinkTitleFour}
{block:IfNotDirectLinkTitleFour}{lang:Link}{/block:IfNotDirectLinkTitleFour}
</a>
</li>
{/block:IfDirectLinkUrlFour}
{block:IfDirectLinkUrlFive}
<li>
<a href="{text:Direct link URL Five}" class="direct-link" {Target}>
{block:IfDirectLinkTitleFive}{text:Direct link title Five}{/block:IfDirectLinkTitleFive}
{block:IfNotDirectLinkTitleFive}{lang:Link}{/block:IfNotDirectLinkTitleFive}
</a>
</li>
{/block:IfDirectLinkUrlFive}
{block:IfDirectLinkUrlSix}
<li>
<a href="{text:Direct link URL Six}" class="direct-link" {Target}>
{block:IfDirectLinkTitleSix}{text:Direct link title Six}{/block:IfDirectLinkTitleSix}
{block:IfNotDirectLinkTitleSix}{lang:Link}{/block:IfNotDirectLinkTitleSix}
</a>
</li>
{/block:IfDirectLinkUrlSix}
{block:IfUsernameOnBehance}
<li class="social-icon">
<a href="https://www.behance.net/{text:Username on Behance}" title="Behance">
<i class="fa fa-fw fa-behance"></i>
</a>
</li>
{/block:IfUsernameOnBehance}
{block:IfUsernameOnBitbucket}
<li class="social-icon">
<a href="https://bitbucket.org/{text:Username on Bitbucket}" title="Bitbucket">
<i class="fa fa-fw fa-bitbucket"></i>
</a>
</li>
{/block:IfUsernameOnBitbucket}
{block:IfUsernameOnDribbble}
<li class="social-icon">
<a href="https://dribbble.com/{text:Username on Dribbble}" title="Dribbble">
<i class="fa fa-fw fa-dribbble"></i>
</a>
</li>
{/block:IfUsernameOnDribbble}
{block:IfUsernameOnFacebook}
<li class="social-icon">
<a href="https://www.facebook.com/{text:Username on Facebook}" title="Facebook">
<i class="fa fa-fw fa-facebook"></i>
</a>
</li>
{/block:IfUsernameOnFacebook}
{block:IfUsernameOnFlickr}
<li class="social-icon">
<a href="https://www.flickr.com/photos/{text:Username on Flickr}" title="Flickr">
<i class="fa fa-fw fa-flickr"></i>
</a>
</li>
{/block:IfUsernameOnFlickr}
{block:IfUsernameOnGithub}
<li class="social-icon">
<a href="https://github.com/{text:Username on GitHub}" title="GitHub">
<i class="fa fa-fw fa-github"></i>
</a>
</li>
{/block:IfUsernameOnGithub}
{block:IfUsernameOnGooglePlus}
<li class="social-icon">
<a href="https://plus.google.com/{text:Username on Google Plus}" title="Google+">
<i class="fa fa-fw fa-google-plus"></i>
</a>
</li>
{/block:IfUsernameOnGooglePlus}
{block:IfUsernameOnInstagram}
<li class="social-icon">
<a href="https://instagram.com/{text:Username on Instagram}" title="Instagram">
<i class="fa fa-fw fa-instagram"></i>
</a>
</li>
{/block:IfUsernameOnInstagram}
{block:IfUsernameOnPinterest}
<li class="social-icon">
<a href="https://www.pinterest.com/{text:Username on Pinterest}" title="Pinterest">
<i class="fa fa-fw fa-pinterest"></i>
</a>
</li>
{/block:IfUsernameOnPinterest}
{block:IfUsernameOnReddit}
<li class="social-icon">
<a href="https://www.reddit.com/user/{text:Username on Reddit}" title="Reddit">
<i class="fa fa-fw fa-reddit"></i>
</a>
</li>
{/block:IfUsernameOnReddit}
{block:IfUsernameOnSoundCloud}
<li class="social-icon">
<a href="https://soundcloud.com/{text:Username on SoundCloud}" title="SoundCloud">
<i class="fa fa-fw fa-soundcloud"></i>
</a>
</li>
{/block:IfUsernameOnSoundCloud}
{block:IfUsernameOnSteam}
<li class="social-icon">
<a href="https://steamcommunity.com/id/{text:Username on Steam}" title="Steam">
<i class="fa fa-fw fa-steam"></i>
</a>
</li>
{/block:IfUsernameOnSteam}
{block:IfUsernameOnTwitter}
<li class="social-icon">
<a href="https://twitter.com/{text:Username on Twitter}" title="Twitter">
<i class="fa fa-fw fa-twitter"></i>
</a>
</li>
{/block:IfUsernameOnTwitter}
{block:IfUsernameOnVimeo}
<li class="social-icon">
<a href="https://vimeo.com/{text:Username on Vimeo}" title="Vimeo">
<i class="fa fa-fw fa-vimeo-square"></i>
</a>
</li>
{/block:IfUsernameOnVimeo}
{block:IfUsernameOnWordPress}
<li class="social-icon">
<a href="https://{text:Username on WordPress}.wordpress.com/" title="WordPress">
<i class="fa fa-fw fa-wordpress"></i>
</a>
</li>
{/block:IfUsernameOnWordPress}
{block:IfUsernameOnYouTube}
<li class="social-icon">
<a href="https://www.youtube.com/user/{text:Username on YouTube}" title="YouTube">
<i class="fa fa-fw fa-youtube"></i>
</a>
</li>
{/block:IfUsernameOnYouTube}
</ul>
</nav>
</div>
</div>
{/block:IfMenuBar}
<div class="theme-wrapper">
<span id="fade-body-hook"></span>
<header id="masthead" class="null" role="banner">
<span id="masthead-effect" class="special-effect"></span>
{block:IfMastheadImageImage}
<div id="masthead-image" class="masthead-widget">
<img src="{image:Masthead image}"/>
</div>
{/block:IfMastheadImageImage}
{block:IfMastheadLogoImage}
<div id="masthead-logo" class="masthead-widget">
<a href="/" title="{lang:Home}" {Target} id="site-custom-logo">
<img src="{image:Masthead logo}"/>
</a>
</div>
{/block:IfMastheadLogoImage}
{block:IfNotMastheadLogoImage}{block:IfMastheadAvatar}
<div id="masthead-avatar" class="{select:Avatar style} masthead-widget">
<a href="/" title="{lang:Home}" {Target}>
<img src="{PortraitURL-128}">
</a>
</div>
{/block:IfMastheadAvatar}{/block:IfNotMastheadLogoImage}
{block:IfMastheadSiteName}
<div class="masthead-widget">
<h1 class="{select:Masthead title style}">
<span class="site-name-wrapper">
<a href="/" title="{lang:Home}" id="site-name" {Target} role="heading">{Title}</a>
</span>
</h1>
</div>
{/block:IfMastheadSiteName}
{block:IfMastheadDescription}{block:Description}
<div class="masthead-widget">
<p id="masthead-description">{Description}</p>
</div>
{/block:Description}{/block:IfMastheadDescription}
{block:IfMastheadNavigation}
<div id="pages" class="masthead-widget" role="navigation">
<nav class="masthead-navigation">
<ul class="{select:Masthead links style}">
{block:HasPages}{block:Pages}
<li>
<a href="{URL}" {Target}>{Label}</a>
</li>
{/block:Pages}{/block:HasPages}
{block:SubmissionsEnabled}
<li>
<a href="/submit" {Target}>{SubmitLabel}</a>
</li>
{/block:SubmissionsEnabled}
{block:AskEnabled}
<li>
<a href="/ask" {Target}>{AskLabel}</a>
</li>
{/block:AskEnabled}
{block:IfLinkToOlleOtaThemes}
<li>
<a href="https://www.eso.org/public/archives/images/top100-original.zip" {Target} rel="nofollow" title="void">星の海</a>
</li>
{/block:IfLinkToOlleOtaThemes}
{block:IfNavigationRSSLink}
<li>
<a href="{RSS}" id="rss" title="{lang:Subscribe via RSS}" {Target}>{lang:RSS}</a>
</li>
{/block:IfNavigationRSSLink}
{block:IfNavigationArchiveLink}
<li>
<a href="/archive" id="archive" title="{lang:Browse the archive}" {Target}>{lang:Archive}</a>
</li>
{/block:IfNavigationArchiveLink}
{block:IfNavigationRandomPostLink}
<li>
<a href="/random" id="random" rel="nofollow" {Target}>{lang:Random post}</a>
</li>
{/block:IfNavigationRandomPostLink}
{block:IfDirectLinkUrlOne}
<li>
<a href="{text:Direct link URL One}" class="direct-link" {Target}>
{block:IfDirectLinkTitleOne}{text:Direct link title One}{/block:IfDirectLinkTitleOne}
{block:IfNotDirectLinkTitleOne}{lang:Link}{/block:IfNotDirectLinkTitleOne}
</a>
</li>
{/block:IfDirectLinkUrlOne}
{block:IfDirectLinkUrlTwo}
<li>
<a href="{text:Direct link URL Two}" class="direct-link" {Target}>
{block:IfDirectLinkTitleTwo}{text:Direct link title Two}{/block:IfDirectLinkTitleTwo}
{block:IfNotDirectLinkTitleTwo}{lang:Link}{/block:IfNotDirectLinkTitleTwo}
</a>
</li>
{/block:IfDirectLinkUrlTwo}
{block:IfDirectLinkUrlThree}
<li>
<a href="{text:Direct link URL Three}" class="direct-link" {Target}>
{block:IfDirectLinkTitleThree}{text:Direct link title Three}{/block:IfDirectLinkTitleThree}
{block:IfNotDirectLinkTitleThree}{lang:Link}{/block:IfNotDirectLinkTitleThree}
</a>
</li>
{/block:IfDirectLinkUrlThree}
{block:IfDirectLinkUrlFour}
<li>
<a href="{text:Direct link URL Four}" class="direct-link" {Target}>
{block:IfDirectLinkTitleFour}{text:Direct link title Four}{/block:IfDirectLinkTitleFour}
{block:IfNotDirectLinkTitleFour}{lang:Link}{/block:IfNotDirectLinkTitleFour}
</a>
</li>
{/block:IfDirectLinkUrlFour}
{block:IfDirectLinkUrlFive}
<li>
<a href="{text:Direct link URL Five}" class="direct-link" {Target}>
{block:IfDirectLinkTitleFive}{text:Direct link title Five}{/block:IfDirectLinkTitleFive}
{block:IfNotDirectLinkTitleFive}{lang:Link}{/block:IfNotDirectLinkTitleFive}
</a>
</li>
{/block:IfDirectLinkUrlFive}
{block:IfDirectLinkUrlSix}
<li>
<a href="{text:Direct link URL Six}" class="direct-link" {Target}>
{block:IfDirectLinkTitleSix}{text:Direct link title Six}{/block:IfDirectLinkTitleSix}
{block:IfNotDirectLinkTitleSix}{lang:Link}{/block:IfNotDirectLinkTitleSix}
</a>
</li>
{/block:IfDirectLinkUrlSix}
{block:IfUsernameOnBehance}
<li class="social-icon">
<a href="https://www.behance.net/{text:Username on Behance}" title="Behance">
<i class="fa fa-fw fa-behance"></i>
</a>
</li>
{/block:IfUsernameOnBehance}
{block:IfUsernameOnBitbucket}
<li class="social-icon">
<a href="https://bitbucket.org/{text:Username on Bitbucket}" title="Bitbucket">
<i class="fa fa-fw fa-bitbucket"></i>
</a>
</li>
{/block:IfUsernameOnBitbucket}
{block:IfUsernameOnDribbble}
<li class="social-icon">
<a href="https://dribbble.com/{text:Username on Dribbble}" title="Dribbble">
<i class="fa fa-fw fa-dribbble"></i>
</a>
</li>
{/block:IfUsernameOnDribbble}
{block:IfUsernameOnFacebook}
<li class="social-icon">
<a href="https://www.facebook.com/{text:Username on Facebook}" title="Facebook">
<i class="fa fa-fw fa-facebook"></i>
</a>
</li>
{/block:IfUsernameOnFacebook}
{block:IfUsernameOnFlickr}
<li class="social-icon">
<a href="https://www.flickr.com/photos/{text:Username on Flickr}" title="Flickr">
<i class="fa fa-fw fa-flickr"></i>
</a>
</li>
{/block:IfUsernameOnFlickr}
{block:IfUsernameOnGithub}
<li class="social-icon">
<a href="https://github.com/{text:Username on GitHub}" title="GitHub">
<i class="fa fa-fw fa-github"></i>
</a>
</li>
{/block:IfUsernameOnGithub}
{block:IfUsernameOnGooglePlus}
<li class="social-icon">
<a href="https://plus.google.com/{text:Username on Google Plus}" title="Google+">
<i class="fa fa-fw fa-google-plus"></i>
</a>
</li>
{/block:IfUsernameOnGooglePlus}
{block:IfUsernameOnInstagram}
<li class="social-icon">
<a href="https://instagram.com/{text:Username on Instagram}" title="Instagram">
<i class="fa fa-fw fa-instagram"></i>
</a>
</li>
{/block:IfUsernameOnInstagram}
{block:IfUsernameOnPinterest}
<li class="social-icon">
<a href="https://www.pinterest.com/{text:Username on Pinterest}" title="Pinterest">
<i class="fa fa-fw fa-pinterest"></i>
</a>
</li>
{/block:IfUsernameOnPinterest}
{block:IfUsernameOnReddit}
<li class="social-icon">
<a href="https://www.reddit.com/user/{text:Username on Reddit}" title="Reddit">
<i class="fa fa-fw fa-reddit"></i>
</a>
</li>
{/block:IfUsernameOnReddit}
{block:IfUsernameOnSoundCloud}
<li class="social-icon">
<a href="https://soundcloud.com/{text:Username on SoundCloud}" title="SoundCloud">
<i class="fa fa-fw fa-soundcloud"></i>
</a>
</li>
{/block:IfUsernameOnSoundCloud}
{block:IfUsernameOnSteam}
<li class="social-icon">
<a href="https://steamcommunity.com/id/{text:Username on Steam}" title="Steam">
<i class="fa fa-fw fa-steam"></i>
</a>
</li>
{/block:IfUsernameOnSteam}
{block:IfUsernameOnTwitter}
<li class="social-icon">
<a href="https://twitter.com/{text:Username on Twitter}" title="Twitter">
<i class="fa fa-fw fa-twitter"></i>
</a>
</li>
{/block:IfUsernameOnTwitter}
{block:IfUsernameOnVimeo}
<li class="social-icon">
<a href="https://vimeo.com/{text:Username on Vimeo}" title="Vimeo">
<i class="fa fa-fw fa-vimeo-square"></i>
</a>
</li>
{/block:IfUsernameOnVimeo}
{block:IfUsernameOnWordPress}
<li class="social-icon">
<a href="https://{text:Username on WordPress}.wordpress.com/" title="WordPress">
<i class="fa fa-fw fa-wordpress"></i>
</a>
</li>
{/block:IfUsernameOnWordPress}
{block:IfUsernameOnYouTube}
<li class="social-icon">
<a href="https://www.youtube.com/user/{text:Username on YouTube}" title="YouTube">
<i class="fa fa-fw fa-youtube"></i>
</a>
</li>
{/block:IfUsernameOnYouTube}
</ul>
</nav>
</div>
{/block:IfMastheadNavigation}
</header>
<div id="wrapper" class="{select:Post title style}">
<div id="content" role="main">
{block:SearchPage}
<article class="alert {block:SearchResults}found-results{/block:SearchResults} {block:NoSearchResults}no-results{/block:NoSearchResults}">
{block:SearchResults}
<p class="results">{lang:Search results for SearchQuery 2}</p>
{/block:SearchResults}
{block:NoSearchResults}
<p class="results">{lang:Sorry no results for SearchQuery 2}</p>
{/block:NoSearchResults}
</article>
{/block:SearchPage}
{block:TagPage}
<article class="alert">
<p class="results">{lang:Showing posts tagged Tag 3}</p>
</article>
{/block:TagPage}
{block:Posts}
<article id="{PostID}" class="
hentry
item
{block:Text}type-text content-text{/block:Text}
{block:Photo}type-photo content-media{/block:Photo}
{block:Photoset}type-photoset content-text{/block:Photoset}
{block:Quote}type-quote content-text{/block:Quote}
{block:Link}type-link content-text{/block:Link}
{block:Chat}type-chat content-text{/block:Chat}
{block:Video}type-video content-text{/block:Video}
{block:Audio}type-audio content-text{/block:Audio}
{block:Answer}type-answer content-text{/block:Answer}
" data-tags="{TagsAsClasses} null">
<header class="post-header">
{block:Answer}
<p class="asker">{lang:Asker asked 2}:</p>
{/block:Answer}
<h1 class="post-title">
<span class="title-wrapper">
{block:Text}
{block:Title}
<a href="{Permalink}" {Target}>{Title}</a>
{/block:Title}
{/block:Text}
{block:Link}
<a href="{URL}" {Target}>{Name}</a>
{/block:Link}
{block:Chat}
{block:Title}
<a href="{Permalink}" {Target}>{Title}</a>
{/block:Title}
{/block:Chat}
{block:Audio}
{block:TrackName}
<a href="{Permalink}" {Target}>{TrackName}</a>
{/block:TrackName}
{/block:Audio}
{block:Answer}
<a href="{Permalink}" {Target}>{Question}</a>
{/block:Answer}
</span>
</h1>
<div class="post-meta">
<a href="{Permalink}" class="permalink" {Target}> <time datetime="{Year}-{MonthNumberWithZero}-{DayOfMonthWithZero}">{DayOfMonth} {Month} {Year}</time></a>
{block:ContentSource}
<a href="{SourceURL}" class="source" title="{lang:Source}: {SourceTitle}" {Target}>
{block:SourceLogo}<img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
{block:NoSourceLogo}{lang:Source}{/block:NoSourceLogo}
</a>
{/block:ContentSource}
</div>
</header>
{block:Text}
<div class="text post-content">
{Body}
{block:More} <a href="{Permalink}" class="button">{lang:Read more}</a> {/block:More}
</div>
{/block:Text}
{block:Photo}
<div class="photo post-content">
<div class="photo-url">
{LinkOpenTag}<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" />{LinkCloseTag}
</div>
{block:Caption}
<div class="media-caption">
{Caption}
{block:More} <a href="{Permalink}" class="button">{lang:Read more}</a> {/block:More}
</div>
{/block:Caption}
</div>
{/block:Photo}
{block:Photoset}
<div class="post-content">
{block:IfFormPhotosets}
{Photoset}
{/block:IfFormPhotosets}
{block:IfNotFormPhotosets}
{block:Photos}
<div class="photoset-photo">
<img src="{PhotoURL-HighRes}"/>
</div>
{/block:Photos}
{/block:IfNotFormPhotosets}
{block:Caption}
<div class="media-caption">
{Caption}
{block:More} <a href="{Permalink}" class="button">{lang:Read more}</a> {/block:More}
</div>
{/block:Caption}
</div>
{/block:Photoset}
{block:Quote}
<div class="quote post-content">
<blockquote>
<span class="quote-wrapper">
<span class="quote-mark quote-mark-open">“</span>{Quote}<span class="quote-mark quote-mark-close">”</span>
</span>
</blockquote>
{block:Source}
<div class="text-caption">
<p>{Source}</p>
{block:More} <a href="{Permalink}" class="button">{lang:Read more}</a> {/block:More}
</div>
{/block:Source}
</div>
{/block:Quote}
{block:Link}
{block:Description}
<div class="link post">
<div class="entry-content inner">
{Description}
{block:More} <a href="{Permalink}" class="button">{lang:Read more}</a> {/block:More}
</div>
</div>
{/block:Description}
{/block:Link}
{block:Chat}
<div class="chat post">
<div class="entry-content inner">
<ul>
{block:Lines}<li class="{Alt}">{block:Label}<span class="label">{Label}</label></span>{/block:Label} {Line} </li>{/block:Lines}
</ul>
</div>
</div>
{/block:Chat}
{block:Audio}
<div class="audio post-content">
<div class="audio-embed embed_wrap" id="{PostID}">
{block:AudioEmbed}
{AudioEmbed-640}
{/block:AudioEmbed}
</div>
{block:Caption}
<div class="media-caption">
{Caption}
{block:More} <a href="{Permalink}" class="button">{lang:Read more}</a> {/block:More}
</div>
{/block:Caption}
</div>
{/block:Audio}
{block:Video}
<div class="video post-content">
<div class="video-player embed_wrap" id="{PostID}" >
{VideoEmbed-700}
</div>
{block:Caption}
<div class="media-caption">
{Caption}
{block:More} <a href="{Permalink}" class="button">{lang:Read more}</a> {/block:More}
</div>
{/block:Caption}
</div>
{/block:Video}
{block:Answer}
<div class="answer post-content">
{Replies}
</div>
{/block:Answer}
{block:Date}
<footer class="post-footer" role="contentinfo">
{block:HasTags}
<ul class="post-tags {select:Post tags}">
{block:Tags}
<li>
<a href="{TagURL}" {Target} rel="tag"><span class="hashtag">#</span>{Tag}</a>
</li>
{/block:Tags}
</ul>
{/block:HasTags}
{block:IfDisqusShortname}{block:PermalinkPage}
<div id="disqus_color_hook">
<div id="disqus_thread"></div>
<script type="text/javascript">