-
Notifications
You must be signed in to change notification settings - Fork 1
/
verbose.html
1295 lines (1290 loc) · 49.3 KB
/
verbose.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
<!DOCTYPE html5>
<html class="no-js" lang="en">
<head>
<!---
-Masonry
--->
<meta charset="utf-8" />
<link rel="shortcut icon" href="{favicon}">
<link rel="apple-touch-icon" href="{PortraitURL-128}" />
<link rel="alternate" type="application/rss+xml" href="{RSS}"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>
<meta property="og:title" content="{Title}" />
<meta property="og:site_name" content="{Title}" />
<meta name="description" content="{MetaDescription}" />
<meta property="og:description" content="{MetaDescription}" />
<meta property="og:url" content="{PortraitURL-64}" />
<meta property="og:image" content="{PortraitURL-64}"/>
<meta property="og:type" content="blog" />
<link rel="stylesheet" href="https://raw.githubusercontent.com/necolas/normalize.css/master/normalize.css"/>
<link rel="stylesheet"
href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.1/styles/default.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.1/highlight.min.js"></script>
<link href="//dl.dropbox.com/s/vpi3f9s7nhpe7v7/honeybee.css" rel="stylesheet">
{block:Hide}
<!---General--->
<meta name="color:Body Background Color" content="#EEEEEE"/>
<meta name="image:Body Background Image" content=""/>
<meta name="select:Body Background Attachment" content="fixed" title="Fixed">
<meta name="select:Body Background Attachment" content="static" title="Static">
<meta name="select:Body Background Repeat" content="repeat" title="Repeat">
<meta name="select:Body Background Repeat" content="no-repeat" title="No Repeatt">
<meta name="color:Accent Color" content=" #ffd4c3">
<meta name="select:Font Size" content="12px" title="12px">
<meta name="select:Font Size" content="16px" title="16px">
<meta name="select:Font Size" content="18px" title="18px">
<meta name="select:Font Size" content="22px" title="22px">
<!---Header--->
<meta name="image:Header Background Image" content=""/>
<meta name="select:Header Background Attachment" content="fixed" title="Fixed">
<meta name="select:Header Background Attachment" content="static" title="Static">
<meta name="select:Header Background Repeat" content="repeat" title="Repeat">
<meta name="select:Header Background Repeat" content="no-repeat" title="No Repeatt">
<meta name="select:Banner Overlay Opacity" content="o-90" title="90%">
<meta name="select:Banner Overlay Opacity" content="o-80" title="80%">
<meta name="select:Banner Overlay Opacity" content="o-70" title="70%">
<meta name="select:Banner Overlay Opacity" content="o-60" title="60%">
<meta name="select:Banner Overlay Opacity" content="o-50" title="50%">
<meta name="select:Banner Overlay Opacity" content="o-40" title="40%">
<meta name="select:Banner Overlay Opacity" content="o-30" title="30%">
<meta name="select:Banner Overlay Opacity" content="o-20" title="20%">
<meta name="select:Banner Overlay Opacity" content="o-10" title="10%">
<meta name="select:Banner Overlay Opacity" content="o-0" title="0%">
<meta name="text:Header Height" content="250px"/>
<meta name="color:Header Background Color" content="#EEEEEE"/>
<meta name="color:Header Text Color" content="#666666"/>
<meta name="color:Header Subtitle Text Color" content="#666666"/>
<meta name="text:Header Title" content="Header Title"/>
<meta name="font:Header Title" content="Helvetica Neue"/>
<meta name="text:Header Subtitle" content="Header Subtitle"/>
<meta name="font:Header Subtitle" content="Helvetica Neue"/>
<meta name="if:Header Background" content="0"/>
<!---Sidebar--->
<meta name="select:Avatar Shape" content="round" title="Round">
<meta name="select:Avatar Shape" content="square" title="Square">
<meta name="if:Leave Sidebar Open" content="0"/>
<meta name="if:Show Searchbox" content="0"/>
<meta name="color:Sidebar Background Color" content="#f6f6f6"/>
<meta name="color:Sidebar Title Color" content="#666666"/>
<meta name="color:Sidebar Text Color" content="#4b4f5a"/>
<meta name="color:Sidebar Link" content=" #fbf2a4"/>
<meta name="color:Sidebar Link Hover" content=" #edcf76"/>
<meta name="font:Sidebar Title" content="Helvetica Neue"/>
<meta name="font:Sidebar Description" content="Helvetica Neue"/>
<meta name="text:Page List Title" content="Pages"/>
<meta name="text:Custom Link Box Title" content="My Link Box"/>
<meta name="text:First Link Title" content=""/>
<meta name="text:First Link Description" content=""/>
<meta name="text:First Link Url" content=""/>
<meta name="text:Second Link Title" content=""/>
<meta name="text:Second Link Description" content=""/>
<meta name="text:Second Link Url" content=""/>
<meta name="text:Third Link Title" content=""/>
<meta name="text:Third Link Description" content=""/>
<meta name="text:Third Link Url" content=""/>
<meta name="text:Fourth Link Title" content=""/>
<meta name="text:Fourth Link Description" content=""/>
<meta name="text:Fourth Link Url" content=""/>
<meta name="text:Behance URL" content=""/>
<meta name="text:Curious Cat URL" content=""/>
<meta name="text:Dribble URL" content=""/>
<meta name="text:Ello URL" content=""/>
<meta name="text:Facebook URL" content=""/>
<meta name="text:Github URL" content=""/>
<meta name="text:GoodReads URL" content=""/>
<meta name="text:Instagram URL" content=""/>
<meta name="text:Kik URL"content=""/>
<meta name="text:Letterboxed URL"content=""/>
<meta name="text:Quora URL" content=""/>
<meta name="text:Reddit URL" content=""/>
<meta name="text:Spotify URL" content=""/>
<meta name="text:Twitch URL" content=""/>
<meta name="text:Twitter URL" content=""/>
<meta name="text:Youtube URL" content=""/>
<!---Posts--->
<meta name="select:Post Width" content="400px" title="400"/>
<meta name="select:Post Width" content="500px" title="500"/>
<meta name="select:Post Width" content="700px" title="700"/>
<meta name="color:Post Background Color" content="#F6F6F6"/>
<meta name="color:Post Title Color" content="#666666"/>
<meta name="color:Post Text Color" content="#4b4f5a"/>
<meta name="color:Post Link Color" content="#fbf2a4"/>
<meta name="color:Post Link Hover Color" content="#edcf76"/>
<meta name="color:Blockquote Color" content="#feb195">
<meta name="color:Answer Background Color" content="#f6f6f6"/>
<meta name="color:Ask Background Color" content="#feb195"/>
<meta name="font:Post Title" content="Helvetica Neue"/>
<meta name="font:Post Text" content="Helvetica Neue"/>
<meta name="font:Quote Text" content="Quadrat"/>
{/block:Hide}
</head>
<style type="text/css">
pre,.hljs, .hljs-code { display: block; background-color: var(---accent-color);}
pre .com { color: var(---blockquote-color) } /* comment - skyblue */
pre .pun { color: var(---post-text-color);} /* punctuation */
pre .pln { color: var(---post-text-color); } /* plaintext */
:root {
---header-height: {text:Header Height};
/**Images***/
---body-bg-image: url("{image:Body Background Image}");
---header-bg-image: url("{image:Header Background Image}");
/***Colors***/
---body-bg-color: {color:Body Background Color};
---blockquote-color: {color:Blockquote Color};
---header-bg-color: {color:Header Background Color};
---header-title-color: {color:Header Text Color};
---header-sub-color: {color:Header Subtitle Text Color};
---accent-color: {color:Accent Color};
---sidebar-bg-color: {color:Sidebar Background Color};
---sidebar-title-color: {color:Sidebar Title Color};
---sidebar-text-color: {color:Sidebar Text Color};
---sidebar-link-color: {color:Sidebar Link};
---sidebar-link-hover-color: {color:Sidebar Link Hover};
---featured-post-color: {color:Featured Post Color};
---post-bg-color: {color:Post Background Color};
---post-title-color: {color:Post Title Color};
---post-text-color: {color:Post Text Color};
---post-link-color: {color:Post Link Color};
---post-link-hover-color: {color:Post Link Hover Color};
---answer-bg-color: {color:Answer Background Color};
---ask-bg-color: {color:Ask Background Color};
/***Fonts***/
---header-title-font: {font:Header Title};
---header-sub-font: {font:Header Subtitle};
---sidebar-title-font: {font:Sidebar Title};
---sidebar-text-font: {font:Sidebar Description};
---post-title-font: {font:Post Title};
---post-text-font: {font:Post Text};
---quote-text-font: {font:Quote Text};
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
body {
background:var(---body-bg-color) var(---body-bg-image);
background-attachment:{select:Body Background Attachment};
background-repeat:{select:Body Background Repeat};
font-size:{select:Font Size};
line-height:calc({select:Font Size} + 10px);
overflow-x:hidden;
padding:0px;
margin:0px;
}
a:active {
outline-style:dashed;
outline-color:red;
outline-width:2px;
}
a:focus,button:focus {
outline-style:solid;
outline-color:red;
outline-width:2px;
}
h1 {
font-size:calc({select:Font Size} + 30px);
line-height:calc({select:Font Size} + 50px);;
}
h2 {
font-size:calc({select:Font Size} + 20px);
line-height:calc({select:Font Size} + 35px);
}
h3 {
font-size:calc({select:Font Size} + 10px);
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
border:none;
}
.menu_icon {
position:fixed;
z-index:1;
}
.close_button {
position:static;
margin-bottom:10%;
}
.menu_icon:hover, .close_button:hover {
padding:5px;
background:#fbf2a4;
}
.close_button, .menu_icon {
padding:5px;
background: var(---accent-color);
box-shadow:none;
transition:1s;
text-align:center;
width:auto;
}
#showLeft, .close_button{
{block:IfLeaveSidebarOpen}
display:none;
{/block:IfLeaveSidebarOpen}
{block:IfNotLeaveSidebarOpen}
display:block;
{/block:IfNotLeaveSidebarOpen}
}
{block:IndexPage}
#header {
display:flex;
align-items:center;
{block:IfHeaderBackground}
background:var(---header-bg-color) var(---header-bg-image);
background-attachment:{select:Header Background Attachment};
background-repeat:{select:Header Background Repeat};
{/block:IfHeaderBackground}
{block:IfLeaveSidebarOpen}
width:80%;
margin-left:20%;
{/block:IfLeaveSidebarOpen}
{block:IfNotLeaveSidebarOpen}
text-align: center;
{/block:IfNotLeaveSidebarOpen}
font-family: var(---header-sub-font);
color: var(---header-sub-color);
margin-bottom:4%;
position:relative;
{block:IndexPage}
height:var(---header-height);
{/block:IndexPage}
}
{block:IfHeaderBackground}
#header .overlay {background-color:var(---header-bg-color);}
.overlay{background-color:#000; width:100%; height:100%;}
.overlay.o-0{-ms-filter:"alpha(opacity=0)";filter:alpha(opacity=0);-moz-opacity:0;-khtml-opacity:0;opacity:0}
.overlay.o-10{-ms-filter:"alpha(opacity=10)";filter:alpha(opacity=10);-moz-opacity:.1;-khtml-opacity:.1;opacity:.1}
.overlay.o-20{-ms-filter:"alpha(opacity=20)";filter:alpha(opacity=20);-moz-opacity:.2;-khtml-opacity:.2;opacity:.2}
.overlay.o-30{-ms-filter:"alpha(opacity=30)";filter:alpha(opacity=30);-moz-opacity:.3;-khtml-opacity:.3;opacity:.3}
.overlay.o-40{-ms-filter:"alpha(opacity=40)";filter:alpha(opacity=40);-moz-opacity:.4;-khtml-opacity:.4;opacity:.4}
.overlay.o-50{-ms-filter:"alpha(opacity=50)";filter:alpha(opacity=50);-moz-opacity:.5;-khtml-opacity:.5;opacity:.5}
.overlay.o-60{-ms-filter:"alpha(opacity=60)";filter:alpha(opacity=60);-moz-opacity:.6;-khtml-opacity:.6;opacity:.6}
.overlay.o-70{-ms-filter:"alpha(opacity=70)";filter:alpha(opacity=70);-moz-opacity:.7;-khtml-opacity:.7;opacity:.7}
.overlay.o-80{-ms-filter:"alpha(opacity=80)";filter:alpha(opacity=80);-moz-opacity:.8;-khtml-opacity:.8;opacity:.8}
.overlay.o-90{-ms-filter:"alpha(opacity=90)";filter:alpha(opacity=90);-moz-opacity:.9;-khtml-opacity:.9;opacity:.9}
{/block:IfHeaderBackground}
.header_content {
top:0;left:0;
position:absolute;
width:100%;
{block:IfLeaveSidebarOpen}
padding-left:5%;
{/block:IfLeaveSidebarOpen}
}
#header #header_title {
font-family: var(---header-title-font);
color: var(---header-title-color);
}
{/block:IndexPage}
.menu-left {
{block:IfNotLeaveSidebarOpen}
width: 0%; /* 0 width - change this with JavaScript */
margin-left:-30%;
padding:5%;
{/block:IfNotLeaveSidebarOpen}
{block:IfLeaveSidebarOpen}
width: 20%;
float:left;
padding:2%;
{/block:IfLeaveSidebarOpen}
position: fixed; /* Stay in place */
height: 100%; /* 100% Full-height */
z-index: 1; /* Stay on top */
top: 0; /* Stay at the top */
left: 0;
overflow-x: hidden; /* Disable horizontal scroll */
transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}
#side {
color:var(---sidebar-text-color);
transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
box-sizing: border-box;
background-color: var(---sidebar-bg-color);
}
#side h1, #side h2, #side h3, #side h4,#side h5, #side ul li a b {
font-family: var(---sidebar-title-font);
}
#side ul a b {
calc({select:Font Size} + 5px)
}
#side a {
color:var(---sidebar-text-color);
text-decoration:none;
}
#side ul {
list-style-type:none;
padding:0px;
margin:0px;
}
#side ul li p a {
color:var(---sidebar-text-color);
box-shadow:inset 0 -8px 0 0 var(---sidebar-link-color);
border-bottom:1px solid var(---post-text-color);
text-decoration:none;
transition:1s;
}
#side ul li p a:hover {
box-shadow:inset 0 -20px 0 0 var(---sidebar-link-hover-color);
text-decoration:none;
}
.avatar .round {
border-radius:50%;
}
.avatar .square {
border-radius:5%;
}
#blog_title {
font-family: var(---sidebar-title-font);
}
#blog_title a {
color: var(---sidebar-title-color);
box-shadow:inset 0 -14px 0 0 var( ---sidebar-link-color);
border-bottom:2px solid var(---sidebar-text-color);
text-decoration:none;
transition:1s;
}
#blog_title a:hover {
box-shadow:inset 0 -36px 0 0 var( ---sidebar-link-hover-color);
}
#description {
font-family: var(---sidebar-text-font);
}
#formId {
border:2px solid var(---sidebar-text-color);
border-radius:5px;
margin-top:15%;
display:flex;
}
#formId li {display:inline;
list-style-type:none;
}
#search {
width:70%;
border:none;
border-right:2px solid var(---sidebar-text-color);
padding:8px 0px;
text-align:center;
}
#formId:hover {
background: var(---accent-color);
}
#btn-search {
background:none;
border:none;
text-align:center;
width:30%;
}
.social_media a {
display:inline-block;
padding:5px;
margin:5px;
background: var(---sidebar-link-color);
transition:1s;
}
.social_media a:hover {
background: var(---sidebar-link-hover-color);
}
#main {
{block:IfLeaveSidebarOpen}
margin-left:23%;
max-width:75%;
{/block:IfLeaveSidebarOpen}
{block:IfNotLeaveSidebarOpen}
max-width:90%;
margin-left:0%;
margin:0 auto;
{/block:IfNotLeaveSidebarOpen}
transition: 0.5s;
{block:PermalinkPage}
padding-top:5%;
{/block:PermalinkPage}
margin-top:0%;
}
/***All***/
/***Single Column***/
.uno {
font-family: var(---post-text-font);
color: var(---post-text-color);
margin-left:0%;
position:relative;
}
.post {
margin-bottom:5%;
overflow:hidden;
max-width:100%;
{block:IfLeaveSidebarOpen}
width:{select:Post Width};
{/block:IfLeaveSidebarOpen}
position:relative;
overflow:hidden;
padding-bottom:10%;
border-bottom:2px solid var(---accent-color);
}
.post a, #pagination a, #footer a, .notes a {
color: var(---post-text-color);
box-shadow:inset 0 -8px 0 0 var( ---post-link-color);
border-bottom:1px solid var(---post-text-color);
text-decoration:none;
transition:1s;
}
.post a:hover, #pagination a:hover, #footer a:hover,.notes a:hover {
box-shadow:inset 0 -20px 0 0 var(---post-link-hover-color);
}
.post .post-reblog-header {
display:fle;
margin-top:-35px;
margin-left:50px;
}
.post .post-tumblelog-name {
box-shadow:none;
padding:5px 15px;
background-color: var(---accent-color);
}
.post figure a {
box-shadow:none;
}
.post-text-box {
margin:0px;
margin-top:3%;
background:var(---post-bg-color);
}
.post img,iframe,.tumblr_video_container {
display:block;
margin-left: auto;
margin-right: auto;
}
.post-text-box, .post .post-reblog-header, .date, #pagination {
max-width:{select:Post Width};
{block:IfNotLeaveSidebarOpen}
margin:0 auto;
{/block:IfNotLeaveSidebarOpen}
}
.post-text-box img {
max-width:100%;
}
.post-text-box ul, .post-text-box ol {
padding:10px 20px;
margin-left:40px;
}
.post-text-box blockquote {
border-left: 4px solid var(---post-text-color);
background: var(---blockquote-color);
padding:20px 15px;
margin:0px;
}
.post-text-box blockquote p:first-child, .post-text-box ul li p:last-child {
padding-top:0px;
}
.post-text-box blockquote p:last-child,.post-text-box ul li p:last-child {
padding-bottom:0px;
}
.post-text-box p, .post-text-box h1, .post-text-box h2, .post-text-box h3, .post-text-box h4, .post-text-box h5 {
padding-left:20px;
padding-right:20px;
}
.post-text-box p:first-child {
padding-top:50px;
}
.post-text-box p:last-child {
padding-bottom:50px;
}
.post-text-box pre {
background: var(---accent-color);
padding:20px;
width:100%;
box-sizing: border-box;
overflow-x:scroll;
}
.post-text-box pre:before {
content: "🔴 🟡 🟢" ;
width:100%;
display:block;
}
.post_title {
{block:IfNotLeaveSidebarOpen}
text-align:center;
margin:0 auto;
{/block:IfNotLeaveSidebarOpen}
max-width:70%;
}
.post_title a {
{block:IfNotLeaveSidebarOpen}
text-align:center;
margin:0 auto;
{/block:IfNotLeaveSidebarOpen}
font-family: var(---post-title-font);
color: var(---post-title-color);
border-bottom:1px solid (---post-text-color);
box-shadow:none;
}
.quote h1 {
line-height: calc({select:Font Size} + 20px);
font-size:40px;
font-family: var(---quote-text-font);
}
.quote_content {
padding:2%;
background-color:var(---blockquote-color);
width:{select:Post Width};
margin:0 auto;
}
.music_box {
display:flex;
background:var(---header-bg-color);
max-width:{select:Post Width};
margin:0 auto;
}
.music_content, .music_img,.embeddedmusic {
min-width:50%;
}
.music_content {
background:var(---accent-color);
padding:5%;
}
.music_content ul {
margin-top:0px;
padding-top:10%;
list-style:none;
}
.music_img {
padding:15%;
margin:none;
position:relative;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.audio_player {width:90px;
height:27px;
padding-top:30px;
padding-bottom:60px;
padding-left:20px;
background:#f2f2f2;
border-radius:50%;
margin:0 auto;
}
.tumblr_audio_player {
width:60px;
}
.embeddedmusic iframe {
width:100%;
height:100%;
}
.asks {
background:var(---answer-bg-color);
width:{select:Post Width};
margin:0 auto;
margin-bottom:5%;
}
.asks .questionp {
width:85%;
margin:0 auto;
padding-top:30px;
padding-bottom:30px;
}
.asks em {
margin-top:-10px;
}
.askinfo {
height:40px;
dixplay:flex;
margin-bottom:1%;
clear:both;
padding-top:35px;
padding-left:35px;
align-items:center;
}
.question {
background-color:var(---ask-bg-color);
}
.chatlines {
width:{select:Post Width};
margin:0px;
margin:0 auto;
list-style:none;
padding:0px;
}
.chatlines li {
padding:5px;
}
.chatlines .label {
padding:5px;
margin-right:20px;
}
.chatlines .odd {
border-bottom: 4px dotted var(---post-link-color);
}
.chatlines .odd .label {
background: var(---post-link-color);
}
.chatlines .even {
border-bottom: 4px dotted var(---post-link-hover-color);
}
.chatlines .even .label {
background: var(---post-link-hover-color);
}
/***Like and Reblog
https://shythemes.tumblr.com/post/147903463743/custom-like-and-reblog-buttons
***/
svg {
height:18px;
opacity:.5;
padding:1px;
display:block;
overflow:visible;
}
.date {
display:flex;
justify-content:space-between;
flex-wrap: wrap;
align-items:center;
}
.controls a {
position:relative;
display:inline-block;
overflow:hidden;
padding:1px 2px;
width:20px;
height:20px;
margin-left:1em;
box-shadow:none;
border-bottom:none;
}
.controls .reblog {
opacity:.93;
}
.controls .reblog svg {
height:18px;
}
.controls .like .liked + svg {
opacity:1;
}
.controls .like .liked + svg path {
fill:#ec5a5a;
}
.controls .like .like_button {
position:relative;
}
.controls .like .like_button iframe {
position:absolute;
top:0;
left:0;
bottom:0;
right:0;
z-index:2;
opacity:0;
}
.tags {
width:100%;
display:inline;
}
.tags a {
margin-left:10px;
}
#pagination {
clear:both;
display:flex;
padding-left:3%;
padding-right:3%;
}
#pagination p {
width:100%;
}
#pagination p:nth-child(2) {
text-align:right;
}
#pagination a:first-child a:after {
content: '/';
color: var(---accent-color);
background:var(---accent-color);
margin-left:10px;
margin-right:10px;
font-weight:bold;
font-size:30px;
}
#footer {
padding:2%;
text-align:center;
clear:both;
}
{CustomCSS}
@media only screen and (max-width: 600px) {
.menu-left {
width: 0%; /* 0 width - change this with JavaScript */
margin-left:-40%;
padding:5%;
}
#showLeft, .close_button{
display:block;
}
#header {
margin-left:0px;
width:100%;
text-align:center;
}
#main {
width:95%;
margin-left:0px;
margin:0 auto;
}
/***Double***/
.uno, .dos, .quatro {
width:100%;
float:none;
margin-left:0px;
margin:0 auto;
}
.uno .grid-sizer,.uno .grid-item,.dos .grid-sizer,.dos .grid-item,.quatro .grid-sizer,.quatro .grid-item{
float:none;
display:block;
width:100%;
float:none;
}
.post,.music_box {
width:100%;
margin:0 auto;
}
}
@media only screen and (min-width: 600px) and (max-width: 960px) {
.menu-left {
width:30%;
}
{block:IfLeaveSidebarOpen}
#header {
margin-left:30%;
width:70%;
}
#main {
width:60%;
margin-left:35%;
}
.uno, .dos, .quatro {
width:95%;
margin:0 auto;
}
{/block:IfLeaveSidebarOpen}
{block:IfNotLeaveSidebarOpen}
.uno, .dos, .quatro, #main {
width:90%;
margin-left:0%;
margin:0 auto;
}
{/block:IfNotLeaveSidebarOpen}
.uno .grid, .dos .grid,.quatro .grid {
width:95%;
}
.uno .grid-sizer,.uno .grid-item,.dos .grid-sizer,.dos .grid-item,.quatro .grid-sizer,.quatro .grid-item {
width:100%;
}
.post {
width:100%;
margin:0 auto;
}
.quatro .{text:Featured Tag} {
{block:IndexPage}
width:100%;
{/block:IndexPage}
}
}
</style>
<body>
<button id="showLeft" class="menu_icon button" onclick="openNav()"><span class="th-equal-o"></span> Open Menu</button>
<!---Side Menu--->
<aside class="menu-left" id="side">
<button href="javascript:void(0)" class="close_button" onclick="closeNav()"><span class="th-cross-3-o"></span> Close Menu</button>
<figure class="avatar">
<a href="/" class="user-avatar"><img class="{select:Avatar Shape}" src="{PortraitURL-64}" alt="avatar" ></a>
</figure>
<h2 id="blog_title"><a href="/">{Title}</a></h2>
<p id="description">{Description}</p>
<nav id="menu">
<ul>
{block:HasPages}
<h3>{text:Page List Title}</h3>
{block:Pages}
<li class="nav-item nav-item--page">
<a href="{URL}" class="label {CurrentState} {ExternalState}">{Label}</a>
</li>
{/block:Pages}
{/block:HasPages}
{block:AskEnabled}
<li class="nav-item nav-item--ask">
<a href="/ask" class="label {block:AskPage}current-page{/block:AskPage}">{AskLabel}</a>
</li>
{/block:AskEnabled}
{block:SubmissionsEnabled}
<li class="nav-item nav-item--submit">
<a href="/submit" class="label {block:SubmitPage}current-page{/block:SubmitPage}">{SubmitLabel}</a>
</li>
{/block:SubmissionsEnabled}
</ul>
<ul><h3>{text:Custom Link Box Title}</h3>
<li>
<a href="{text:First Link Url}"><b>{text:First Link Title}</b></a>
<p>{text:First Link Description}</p>
</li>
<li>
<a href="{text:Second Link Url}"><b>{text:Second Link Title}</b></a>
<p>{text:Second Link Description}</p>
</li>
<li>
<a href="{text:Third Link Url}"><b>{text:Third Link Title}</b></a>
<p>{text:Third Link Description}</p>
</li>
<li>
<a href="{text:Fourth Link Url}"><b>{text:Fourth Link Title}</b></a>
<p>{text:Fourth Link Description}</p>
</li>
</ul>
</nav>
{block:IfShowSearchbox}
<form action="/search" method="get" id="formId">
<input type="search" type="text" type="submit" id="search" name="q" value="{SearchQuery}" placeholder="Search" class="search">
<input type="submit" value="Search" id="btn-search">
</form>
{/block:IfShowSearchbox}
<div class="social_media">
{block:ifBehanceURL}
<a href="{text:Behance URL}"><span class="th-behance"></span> Behance</a>
{/block:ifBehanceURL}
{block:ifCuriousCatURL}
<a href="{text:Curious Cat URL}"><span class="th-curious-cat"></span> Curious Cat</a>
{/block:ifCuriousCatURL}
{block:ifDribbbleURL}
<a href="{text:Dribbble URL}"><span class="th-dribbble"></span> Dribbble</a>
{/block:ifDribbbleURL}
{block:ifElloURL}
<a href="{text:Ello URL}"><span class="th-ello"></span> Ello</a>
{/block:ifElloURL}
{block:ifFacebookURL}
<a href="{text:Facebook URL}"><span class="th-facebook"></span> Facebook</a>
{/block:ifFacebookURL}
{block:ifGithubURL}
<a href="{text:Github URL}"><span class="th-github"></span> Github</a>
{/block:ifGithubURL}
{block:IfGoodReadsURL}
<a href="{text:GoodReads URL}"><span class="th-goodreads"></span> GoodReads</a>
{/block:IfGoodReadsURL}
{block:IfInstagramURL}
<a href="{text:Instagram URL}"><span class="th-instagram"></span> Instagram</a>
{/block:IfInstagramURL}
{block:IfKikURL}
<a href="{text:Kik URL}"><span class="th-kik"></span> Kik</a>
{/block:IfKikURL}
{block:IfLetterboxdURL}
<a href="{text:Letterboxd URL}"><span class="th-letterboxd"></span> Letterboxd</a>
{/block:IfLetterboxdURL}
{block:IfQuoraURL}
<a href="{text:Quora URL}"><span class="th-quora"></span> Quora</a>
{/block:IfQuoraURL}
{block:IfRedditURL}
<a href="{text:Reddit URL}"><span class="th-reddit"></span> Reddit</a>
{/block:IfRedditURL}
{block:IfSpotifyURL}
<a href="{text:Spotify URL}"><span class="th-spotify"></span> Spotify</a>
{/block:IfSpotifyURL}
{block:IfTwitchURL}
<a href="{text:Twitch URL}"><span class="th-twitch"></span> Twitch</a>
{/block:IfTwitchURL}
{block:IfTwitterURL}
<a href="{text:Twitter URL}"><span class="th-twitter"></span> Twitter</a>
{/block:IfTwitterURL}
{block:IfYoutubeURL}
<a href="{text:Youtube URL}"><span class="th-youtube"></span> Youtube</a>
{/block:IfYoutubeURL}
</div>
</aside>
<!---Header--->
<header id="header">
<div class="overlay {select:Banner Overlay Opacity}"></div>
<div class="header_content">
{block:HomePage}
<h1 id="header_title">{text:Header Title}</h1>
<p id="header_subtitle">{text:Header Subtitle}</h1>
{/block:HomePage}
{block:DayPage}
<h1 id="header_title">{Month} {DayOfMonth}, {Year}</h1>
{/block:DayPage}
{block:TagPage}
<h1 id="header_title">Posts tagged "{Tag}"</h1>
{/block:TagPage}
{block:SearchResults}
<h1 class="results"> {lang:SearchResultCount results for SearchQuery 2}</h1>
{/block:SearchResults}
{block:NoSearchResults}
<h1 class="results"> {lang:No search results for SearchQuery 2}</h1>
{/block:NoSearchResults}
{/block:SearchPage}
</div>
</header>
<!---Posts--->
<main id="main">
<section id="posts" class="uno">
{block:Posts}
<article id="{PostID}" class="post {block:Text}text {/block:Text}{block:Photoset}photoset {/block:Photoset}{block:Photo}photo {/block:Photo}{block:RebloggedFrom}reblogged {/block:RebloggedFrom}{block:Quote}quote {/block:Quote}{block:Link}link {/block:Link}{block:Chat}chat {/block:Chat}{block:Audio}audio {/block:Audio}{block:Video}video {/block:Video}{block:Answer}answer {/block:Answer}">
{block:text}
<!---Text Post--->
{block:Title}<h2 class="post_title"><a href="{Permalink}">{Title}</a></h2>{/block:Title}
{block:NotReblog}
<div class="post-text-box">{Body}</div>
{/block:NotReblog}
{block:RebloggedFrom}
<div class="reblog-list">
{block:Reblogs}
<div class="post-reblog-trail-item{block:isOriginalEntry} original-reblog-content{/block:isOriginalEntry}">
<div class="post-reblog-content">
<div class="post-text-box">
{Body}
</div>
</div>
<div class="post-reblog-header">
{block:IsActive}
<a target="_blank" class="post-tumblelog-name" href="{Permalink}">{Username}</a>
{/block:IsActive}
{block:IsDeactivated}
<span class="inactive post-tumblelog-name">{Username}</span>
{/block:IsDeactivated}
</div>
</div>
{/block:Reblogs}
</div>
{/block:RebloggedFrom}
{/block:text}
{block:Photo}
<!---Photo Post--->
<figure class="{block:HighRes}high-res{/block:HighRes}{block:Caption} with-caption{/block:Caption}" data-photo-width="{PhotoWidth-HighRes}">
{LinkOpenTag}<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="{PhotoWidth-HighRes}" height="{PhotoHeight-HighRes}"{block:LivePhoto}data-live-photo="{LivePhotoURL}" data-live-photo-still-image-time="{LivePhotoStillImageTime}"{/block:LivePhoto}>{LinkCloseTag}
{block:NotReblog}
<figcaption class="post-text-box ">
{Caption}
</figcaption>
{/block:NotReblog}
</figure>
{block:RebloggedFrom}
<div class="reblog-list">
{block:Reblogs}
<div class="post-reblog-trail-item{block:isOriginalEntry} original-reblog-content{/block:isOriginalEntry}">
<div class="post-reblog-content">
<div class="post-text-box">
{Body}
</div>
</div>
<div class="post-reblog-header">
{block:IsActive}
<a target="_blank" class="post-tumblelog-name" href="{Permalink}">{Username}</a>
{/block:IsActive}
{block:IsDeactivated}
<span class="inactive post-tumblelog-name">{Username}</span>
{/block:IsDeactivated}
</div>
</div>
{/block:Reblogs}
</div>
{/block:RebloggedFrom}
{/block:Photo}
{block:Photoset}
<!---Photoset Post--->
<figure class="post-content photoset {block:IndexPage}slideshow-container{/block:IndexPage} {block:Caption}with-caption{/block:Caption}" >
<center>{Photoset-500}</center>
{block:NotReblog}
<figcaption class="post-text-box">
{Caption}
</figcaption>
{/block:NotReblog}