-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDNDBeyond Character Sheet.user.css
More file actions
5352 lines (4807 loc) · 360 KB
/
Copy pathDNDBeyond Character Sheet.user.css
File metadata and controls
5352 lines (4807 loc) · 360 KB
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
/* ==UserStyle==
@name DNDBeyond Character Sheet Dark
@version 1.3.390
@namespace DNDBeyond Character Sheet Dark
@preprocessor uso
@author Azmoria (Jay_Lane)
@advanced dropdown backgroundImg "Background" {
color "Color" <<<EOT
background-image: none !important;
EOT;
dnd "DnDBeyond Set" <<<EOT
EOT;
custom "Custom Image" <<<EOT
background-image: var(--custom-background) !important;
EOT;
}
@var text customBackground "Custom Background url; Include url() eg. url(http://imgur.com/img.jpg)" "url()"
@var color background "Background Color" "#0b0b0d"
@var color sheetColor "Sheet Color" #000000aa
@var color sidebarColor "Sidebar Color" #0b0b0dff
@var color fontColor "Font Color" #ddd
@advanced dropdown outlineToggle "Text Outline" {
on "ON" <<<EOT
.ddbc-builder-svg,
.ct-sidebar__control-icon,
.ddbc-character-tidbits__body,
[class$=filter__active-remove-icon]{
filter: drop-shadow(1px 1px 0px var(--outline-color));
}
.ct-character-sheet__inner *,
.dice_result *,
.glc-game-log *,
.dice-rolling-panel *,
div.ct-sidebar__inner [class*='styles_content'] *{
text-shadow: 1px 0px 0
var(--outline-color),
0.9239px 0.3827px 0
var(--outline-color),
0.7071px 0.7071px 0
var(--outline-color),
0.3827px 0.9239px 0
var(--outline-color),
0px 1px 0
var(--outline-color),
-0.3827px 0.9239px 0
var(--outline-color),
-0.7071px 0.7071px 0
var(--outline-color),
-0.9239px 0.3827px 0
var(--outline-color),
-1px 0px 0
var(--outline-color),
-0.9239px -0.3827px 0
var(--outline-color),
-0.7071px -0.7071px 0
var(--outline-color),
-0.3827px -0.9239px 0
var(--outline-color),
0px -1px 0
var(--outline-color),
0.3827px -0.9239px 0
var(--outline-color),
0.7071px -0.7071px 0
var(--outline-color),
0.9239px -0.3827px 0
var(--outline-color);
}
EOT;
off "OFF"<<<EOT
EOT;
}
@var color outlineColor "Outline Color" #000
@var color borderColor "Border Color" #5dbbf7
@var color highlightColor "Highlight Color" #5dbbf7
@var color iconPrimary "Icon Primary Color" #5dbbf7
@var color iconSecondary "Icon Secondary Color" #041925
@var color scrollbarColor "Scrollbar Color" #5dbbf7
@var color rollColor "Rollable Items Color" #5dbbf7
@advanced dropdown titleToggle "Character Title Background" {
off "OFF"<<<EOT
background: none !important;
EOT;
on "Default"<<<EOT
EOT;
sheetColor "Sheet Color"<<<EOT
background: var(--sheet-color);
EOT;
}
@advanced dropdown scrollWheelHP "Enable Scrollwheel HP" {
off "OFF"<<<EOT
EOT;
on "ON"<<<EOT
.ct-health-manager__adjuster-scrollwheel {
display: block !important;
}
.ct-health-manager__adjuster-scrollwheel .ct-health-manager__adjuster-scrollwheel-instructions {
color: var(--font-color) !important;
}
.ddbc-scrollwheel__bg,
.ddbc-scrollwheel__wheel{
background: var(--sidebar-color);
}
.ddbc-scrollwheel__wheel-bg {
background: linear-gradient(180deg,#000f,#0009 3%,#ddd5 18.83%,#fffa 49.39%,#ddd9 79.64%,#0006 98%,#000f);
}
.ddbc-scrollwheel__wheel-scroll {
background-image: repeating-linear-gradient(180deg,#000 1px,#000 2px,transparent 4px,transparent 8px);
opacity: 0.3;
bottom: 2px;
z-index:1;
}
EOT;
}
@advanced dropdown rollableAreas "Rollable Area's Button Style" {
small "Smaller Buttons" <<<EOT
.ct-character-sheet--dice-enabled .integrated-dice__container,
.avtt-roll-formula-button.integrated-dice__container{
border-width: 0px !important;
}
.ct-character-sheet--dice-enabled .ct-skills__item .integrated-dice__container,
.ct-character-sheet--dice-enabled .ct-spells-spell__tohit .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-combat-attack__tohit .integrated-dice__container{
height: auto !important;
font-size: 15px !important;
width: auto !important;
margin-bottom: 0px !important;
}
.ct-character-sheet--dice-enabled .ddbc-combat-attack__tohit .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-combat-attack__damage .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-combat-item-attack__damage .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-spell-damage-effect__damages .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-spell-damage-effect__healing .integrated-dice__container,
.ct-character-sheet--dice-enabled .ct-skills__col--modifier .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-combat-attack__tohit .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-ability-summary__primary .integrated-dice__container,
.ct-character-sheet--dice-enabled .ct-initiative-box__value .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-combat-attack__tohit .integrated-dice__container:hover,
.ct-character-sheet--dice-enabled .ddbc-combat-attack__damage .integrated-dice__container:hover,
.ct-character-sheet--dice-enabled .ddbc-combat-item-attack__damage .integrated-dice__container:hover,
.ct-character-sheet--dice-enabled .ddbc-spell-damage-effect__damages .integrated-dice__container:hover,
.ct-character-sheet--dice-enabled .ddbc-spell-damage-effect__healing .integrated-dice__container:hover,
.ct-character-sheet--dice-enabled .ct-skills__col--modifier .integrated-dice__container:hover,
.ct-character-sheet--dice-enabled .ddbc-combat-attack__tohit .integrated-dice__container:hover,
.ct-character-sheet--dice-enabled .ddbc-ability-summary__primary .integrated-dice__container:hover,
.ct-character-sheet--dice-enabled .ct-initiative-box__value .integrated-dice__container:hover,
.encounter-builder-app [aria-haspopup=menu].integrated-dice__container,
.encounter-builder-app [aria-haspopup=menu].integrated-dice__container:hover,
.avtt-roll-formula-button.integrated-dice__container:hover{
border-color: var(--character-sheet-border);
height: calc-size(fit-content, size + 2px) !important;
min-height: unset !important;
max-width: unset !important;
width: calc-size(fit-content, size + 2px) !important;
}
.ct-character-sheet--dice-enabled .ddbc-combat-attack__tohit .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-combat-attack__damage .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-combat-item-attack__damage .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-spell-damage-effect__damages .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-spell-damage-effect__healing .integrated-dice__container,
.ct-character-sheet--dice-enabled .ct-skills__col--modifier .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-combat-attack__tohit .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-ability-summary__primary .integrated-dice__container,
.ct-character-sheet--dice-enabled .ct-initiative-box__value .integrated-dice__container,
.avtt-roll-formula-button.integrated-dice__container{
height: calc-size(fit-content, size + 2px) !important;
width: calc-size(fit-content, size + 2px) !important;
}
.ct-character-sheet--dice-enabled .ct-skills__item .ct-skills__col--skill {
padding: 2px 0px !important;
}
.ddbc-tab-list .integrated-dice__container{
font-size: 14px;
}
.ct-skills__item .ct-skills__col--modifier,
.ct-skills__item .ct-skills__col--adjustments,
.avtt-roll-formula-button.integrated-dice__container {
padding: 0px !important;
line-height: 16px;
}
EOT;
default "DNDBeyond Default" <<<EOT
.ct-character-sheet--dice-enabled .ddbc-combat-attack__tohit .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-combat-attack__damage .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-combat-item-attack__damage .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-spell-damage-effect__damages .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-spell-damage-effect__healing .integrated-dice__container,
.ct-character-sheet--dice-enabled .ct-skills__col--modifier .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-combat-attack__tohit .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-ability-summary__primary .integrated-dice__container,
.ct-character-sheet--dice-enabled .ct-initiative-box__value .integrated-dice__container,
.ct-character-sheet--dice-enabled .ddbc-combat-attack__tohit .integrated-dice__container:hover,
.ct-character-sheet--dice-enabled .ddbc-combat-attack__damage .integrated-dice__container:hover,
.ct-character-sheet--dice-enabled .ddbc-combat-item-attack__damage .integrated-dice__container:hover,
.ct-character-sheet--dice-enabled .ddbc-spell-damage-effect__damages .integrated-dice__container:hover,
.ct-character-sheet--dice-enabled .ddbc-spell-damage-effect__healing .integrated-dice__container:hover,
.ct-character-sheet--dice-enabled .ct-skills__col--modifier .integrated-dice__container:hover,
.ct-character-sheet--dice-enabled .ddbc-combat-attack__tohit .integrated-dice__container:hover,
.ct-character-sheet--dice-enabled .ddbc-ability-summary__primary .integrated-dice__container:hover,
.ct-character-sheet--dice-enabled .ct-initiative-box__value .integrated-dice__container:hover,
.encounter-builder-app [aria-haspopup=menu].integrated-dice__container,
.encounter-builder-app [aria-haspopup=menu].integrated-dice__container:hover,
.avtt-roll-formula-button.integrated-dice__container
{
border-color: var(--character-sheet-border);
}
EOT;
}
@var color rollCalcColor "Roll Results Background Color" #030f1acc
@advanced dropdown beyond20Invert "Invert Beyond20 Menu"{
yes "Yes" <<<EOT
.ajs-dialog iframe
{
filter: invert(1)
}
EOT;
no "No" <<<EOT
EOT;
}
@var range diceOpacity "Dice Opacity" [1, 0.01, 1, 0.01]
@advanced dropdown diceTint "Dice Tint" {
on "Default"<<<EOT
EOT;
Custom "Custom Dice Sliders"<<<EOT
var(--dice-color);
EOT;
}
@var range diceSepia "Custom Dice Sepia %" [0, 0, 100, 1]
@var range hueRotation "Custom Dice Hue Rotation" [0, 0, 360, 1]
@var range diceBrightness "Custom Dice Brightness %" [100, 1, 500, 1]
@var range diceSaturation "Custom Dice Saturation %" [100, 1, 500, 1]
@var range diceContrast "Custom Dice Contrast %" [100, 1, 500, 1]
@var select diceInvert "Invert Dice Color" {
"No": "0",
"Yes": "1"
}
@advanced dropdown rgbDice "RGB Dice"{
off "OFF"<<<EOT
EOT;
Rainbow "Rainbow"<<<EOT
canvas.dice-rolling-panel__container,
div#character-tools-target>canvas,
body#diceTrayBody video,
body#diceTrayBody canvas{
-webkit-animation: rainbow var(--rgb-speed) linear infinite;
}
@-webkit-keyframes rainbow {
from {
-webkit-filter: var(--rgb-sliders-check) hue-rotate(1deg) var(--dice-color);
}
to {
-webkit-filter: var(--rgb-sliders-check) hue-rotate(360deg) var(--dice-color);
}
}
@keyframes rainbow {
from {
-webkit-filter: var(--rgb-sliders-check) hue-rotate(1deg) var(--dice-color);
filter: var(--rgb-sliders-check) hue-rotate(1deg) var(--dice-color);
}
to {
-webkit-filter: var(--rgb-sliders-check) hue-rotate(360deg) var(--dice-color);
filter: var(--rgb-sliders-check) hue-rotate(360deg) var(--dice-color);
}
}
EOT;
Custom "Custom RGB"<<<EOT
canvas.dice-rolling-panel__container,
body#diceTrayBody video,
body#diceTrayBody canvas,
div#character-tools-target>canvas{
-webkit-animation: rgb var(--rgb-speed) linear infinite;
}
@-webkit-keyframes rgb {
0%, 100% {
-webkit-filter: var(--rgb-sliders-check) var(--rgb-from) var(--dice-color);
}
50% {
-webkit-filter: var(--rgb-sliders-check) var(--rgb-to) var(--dice-color);
}
}
@keyframes rgb {
0%, 100% {
-webkit-filter: var(--rgb-sliders-check) var(--rgb-from) var(--dice-color);
filter: var(--rgb-sliders-check) var(--rgb-from) var(--dice-color);
}
50% {
-webkit-filter: var(--rgb-sliders-check) var(--rgb-to) var(--dice-color);
filter: var(--rgb-sliders-check) var(--rgb-to) var(--dice-color);
}
}
EOT;
}
@var range rgbSpeed "Dice RGB Speed; Second(s) per Cycle" [6, 1, 8, 1]
@var range rgbFrom "Custom Dice RGB Starting Hue Rotation" [100, 0, 360, 1]
@var range rgbTo "Custom Dice RGB Ending Hue Rotation" [200, 0, 360, 1]
@advanced dropdown frameTint "Frame Tint" {
on "Default"<<<EOT
EOT;
Custom "Custom Frame Sliders"<<<EOT
var(--frame-color);
EOT;
}
@var range frameSepia "Custom Frame Sepia %" [0, 0, 100, 1]
@var range frameHueRotation "Custom Frame Hue Rotation" [0, 0, 360, 1]
@var range frameBrightness "Custom Frame Brightness %" [100, 1, 500, 1]
@var range frameSaturation "Custom Frame Saturation %" [100, 1, 500, 1]
@var range frameContrast "Custom Frame Contrast %" [100, 1, 500, 1]
@var select frameInvert "Invert Frame Color" {
"No": "0",
"Yes": "1"
}
@advanced dropdown rgbFrame "RGB Frame"{
off "OFF"<<<EOT
EOT;
Rainbow "Rainbow"<<<EOT
.ddbc-character-avatar>[class^="ddbc-character-avatar__frame"]{
-webkit-animation: rainbowFrame var(--rgb-frame-speed) linear infinite;
}
@-webkit-keyframes rainbowFrame {
from {
-webkit-filter: var(--rgb-frame-check) hue-rotate(1deg);
}
to {
-webkit-filter: var(--rgb-frame-check) hue-rotate(360deg);
}
}
@keyframes rainbowFrame {
from {
-webkit-filter: var(--rgb-frame-check) hue-rotate(1deg);
filter: var(--rgb-frame-check) hue-rotate(1deg);
}
to {
-webkit-filter: var(--rgb-frame-check) hue-rotate(360deg);
filter: var(--rgb-frame-check) hue-rotate(360deg);
}
}
EOT;
Custom "Custom RGB"<<<EOT
.ddbc-character-avatar>[class^="ddbc-character-avatar__frame"]{
-webkit-animation: rgbFrame var(--rgb-frame-speed) linear infinite;
}
@-webkit-keyframes rgbFrame {
0%, 100% {
-webkit-filter: var(--rgb-frame-check) var(--rgb-frame-from);
}
50% {
-webkit-filter: var(--rgb-frame-check) var(--rgb-frame-to);
}
}
@keyframes rgbFrame {
0%, 100% {
-webkit-filter: var(--rgb-frame-check) var(--rgb-frame-from);
filter: var(--rgb-frame-check) var(--rgb-frame-from);
}
50% {
-webkit-filter: var(--rgb-frame-check) var(--rgb-frame-to);
filter: var(--rgb-frame-check) var(--rgb-frame-to);
}
}
EOT;
}
@var range frameRgbSpeed "Frame RGB Speed; Second(s) per Cycle" [6, 1, 8, 1]
@var range frameRgbFrom "Custom Frame RGB Starting Hue Rotation" [100, 0, 360, 1]
@var range frameRgbTo "Custom Frame RGB Ending Hue Rotation" [200, 0, 360, 1]
@advanced dropdown rgbBorder "RGB Borders/Theme"{
off "OFF"<<<EOT
EOT;
Rainbow "Rainbow"<<<EOT
.ddbc-box-background path,
.ddbc-saving-throws-summary path,
.ct-sidebar__inner [class*='styles_content']:before,
.ct-sidebar__pane-gap:before,
.ct-sidebar__pane-top svg,
.ct-sidebar__pane-bottom svg,
.ct-mobile-divider__divider svg,
.ct-sidebar__pane-gap:after,
.ct-character-header-desktop__button:after,
.site .ct-button.ct-theme-button--outline:after,
.site .ct-button.ct-theme-button--filled:after,
.ct-health-summary__adjuster-field:after,
.ddbc-campaign-summary:after,
.ct-character-header__group--game-log:after
{
-webkit-animation: rainbowBorder var(--rgb-border-speed) linear infinite;
}
@-webkit-keyframes rainbowBorder {
from {
-webkit-filter: hue-rotate(1deg);
}
to {
-webkit-filter: hue-rotate(360deg);
}
}
@keyframes rainbowBorder {
from {
-webkit-filter: hue-rotate(1deg);
filter: hue-rotate(1deg);
}
to {
-webkit-filter: hue-rotate(360deg);
filter: hue-rotate(360deg);
}
}
EOT;
Custom "Custom RGB"<<<EOT
.ddbc-box-background path,
.ddbc-saving-throws-summary path,
.ct-sidebar__inner [class*='styles_content']:before,
.ct-sidebar__pane-gap:before,
.ct-sidebar__pane-top svg,
.ct-sidebar__pane-bottom svg,
.ct-mobile-divider__divider svg,
.ct-sidebar__pane-gap:after,
.ct-health-summary__adjuster-field:before,
.ct-character-header-desktop__button:before,
.site .ct-button.ct-theme-button--outline:before,
.site .ct-button.ct-theme-button--filled:before,
.ddbc-campaign-summary:before,
.ct-character-header__group--game-log:before{
-webkit-animation: rgbBorder var(--rgb-border-speed) linear infinite;
}
@-webkit-keyframes rgbBorder {
0%, 100% {
-webkit-filter: var(--rgb-border-from);
}
50% {
-webkit-filter: var(--rgb-border-to);
}
}
@keyframes rgbBorder {
0%, 100% {
-webkit-filter: var(--rgb-border-from);
filter: var(--rgb-border-from);
}
50% {
-webkit-filter: var(--rgb-border-to);
filter: var(--rgb-border-to);
}
}
EOT;
}
@var range borderRgbSpeed "Border RGB Speed; Second(s) per Cycle" [6, 1, 8, 1]
@var range borderRgbFrom "Custom Border RGB Starting Hue Rotation" [100, 0, 360, 1]
@var range borderRgbTo "Custom Border RGB Ending Hue Rotation" [200, 0, 360, 1]
@advanced dropdown diceTray "Character Sheet Style; Here's a custom background to simulate a dice tray https://i.imgur.com/W5cLzvI.jpeg"{
off "Default Character Sheet"<<<EOT
EOT;
diceTrayLog "Dice Tray with popup/log" <<<EOT
.ct-character-sheet__inner div.ct-character-header-desktop>div:not(.ct-character-header-desktop__group--campaign),
.ct-quick-info,
.ct-subsections,
.ct-character-header-mobile,
.ct-combat-mobile,
.ct-main-mobile__abilities,
.ct-subsection-mobile>div>div:not(.ct-main-mobile__campaign),
.ct-quick-nav__toggle,
.ct-character-header-tablet,
.ct-combat-tablet__extras,
.ct-main-tablet__abilities,
.ct-main-tablet__large-boxes
{
display: none;
}
.ct-main-mobile__campaign{
border: none;
}
.ct-character-sheet__inner {
max-width: unset;
}
.ct-character-header-desktop__group--campaign{
visibility: hidden;
}
div[aria-roledescription="Game Log"] {
visibility: visible;
position: fixed;
top: 10px;
left: 10px;
width: 40px;
height: 20px;
border-radius:10px;
}
div[aria-roledescription="Game Log"]:before {
border: none;
}
.ct-character-header-desktop__group--campaign{
position: absolute;
right: 0px;
top: 10px;
}
.ct-main-mobile__campaign{
position: absolute;
right: 5px;
top: 60px
}
.ct-main-tablet__campaign{
position: absolute;
right: 5px;
top: 10px
}
.ct-sidebar{
position: fixed;
top: 0px;
bottom: 0px;
height: auto
}
body{
overflow: hidden;
}
EOT;
diceTray "Dice Tray Log only"<<<EOT
.ct-character-sheet__inner div.ct-character-header-desktop>div:not(.ct-character-header-desktop__group--campaign),
.ct-quick-info,
.ct-subsections,
.ct-character-header-mobile,
.ct-combat-mobile,
.ct-main-mobile__abilities,
.ct-subsection-mobile>div>div:not(.ct-main-mobile__campaign),
.ct-quick-nav__toggle,
.ct-character-header-tablet,
.ct-combat-tablet__extras,
.ct-main-tablet__abilities,
.ct-main-tablet__large-boxes,
#noty_layout__bottomRight
{
display: none;
}
.ct-main-mobile__campaign{
border: none;
}
.ct-character-sheet__inner {
max-width: unset;
}
.ct-character-header-desktop__group--campaign{
visibility: hidden;
}
div[aria-roledescription="Game Log"] {
visibility: visible;
position: fixed;
top: 10px;
left: 10px;
width: 40px;
height: 20px;
border-radius:10px;
border:
}
div[aria-roledescription="Game Log"]:before {
border: none;
}
.ct-character-header-desktop__group--campaign{
position: absolute;
right: 0px;
top: 10px;
}
.ct-main-mobile__campaign{
position: absolute;
right: 5px;
top: 60px
}
.ct-main-tablet__campaign{
position: absolute;
right: 5px;
top: 10px
}
.ct-sidebar{
position: fixed;
top: 0px;
bottom: 0px;
height: auto
}
body{
overflow: hidden;
}
EOT;
diceTrayOnly "Dice Tray no popup/log"<<<EOT
.ct-character-sheet__inner div.ct-character-header-desktop>div,
.ct-quick-info,
.ct-subsections,
.ct-character-header-mobile,
.ct-combat-mobile,
.ct-main-mobile__abilities,
.ct-subsection-mobile>div>div,
.ct-quick-nav__toggle,
#noty_layout__bottomRight,
.ct-quick-nav__footer-sidebar,
.ct-sidebar,
.ct-character-header-tablet,
.ct-combat-tablet__extras,
.ct-main-tablet__abilities,
.ct-main-tablet__large-boxes,
.ct-main-tablet__campaign
{
display: none;
}
body{
overflow: hidden;
}
EOT;
}
@advanced dropdown menuDisplay "Display Menus"{
Default "Yes" <<<EOT
EOT;
menuDisplay "No" <<<EOT
.site-bar,
.mm-mega-menu,
header.main,
[name="megamenu"]
{
display: none !important;
}
@media (min-width: 1200px){
.ct-sidebar {
top: 6px;
}
}
EOT;
}
@var color aboveVTTCombatTracker "AboveVTT Combat Tracker Background" #0c0c0ce8
@advanced dropdown aboveFilter "AboveVTT Filter" {
Dark "Dark Mode"<<<EOT
filter: invert(1) hue-rotate(180deg) saturate(6) contrast(2);
EOT;
Light "Light Mode"<<<EOT
EOT;
}
@advanced dropdown fontContrast "AboveVTT - Tooltip Font Contrast Colors" {
dark "Dark Mode" <<<EOT
.tooltip-hover.monster-tooltip,
.tooltip-hover.monster-tooltip:hover,
.tooltip-hover.monster-tooltip:focus,
.tooltip-hover.monster-tooltip:active,
.tooltip-hover.monster-tooltip:visited,
.plural-monster-tooltip,
.body-page .p-article-a .p-article-content a.monster-tooltip,
.body-forum .p-article-a .p-article-content a.monster-tooltip,
.single-column #content .p-forum-a .p-comment-wrapper [style*="color:red"],
.single-column #content .p-forum-a .p-comment-wrapper [style*="color: rgba(255, 0, 0, 1)"],
[style*="color: rgba(255, 0, 0, 1)"],
.mon-stat-block__name .mon-stat-block__name-link,
.mon-stat-block__name .mon-stat-block__name-link:active,
.mon-stat-block__name .mon-stat-block__name-link:hover,
.mon-stat-block__name .mon-stat-block__name-link:visited,
.listing .info .row.monster-name .link:hover,
.listing .info .row.monster-name .link,
#site .ddb-campaigns-list-item-footer-buttons-item-delete,
#site .ddb-campaigns-character-card-footer-links-item-remove,
#site .ddb-campaigns-character-card-footer-links-item-remove,
#site .ddb-campaigns-character-card-footer-links-item-delete,
.list-row-primary-text-monster,
.homebrew-creation-actions-item-delete,
.homebrew-creation-actions-item-delete:hover,
.ddb-homebrew-rejection-label,
.combatant-card--monster .combatant-summary__name,
.body-rpgmonster .listing-filters .advanced-filter a span,
.add-monster-modal__header-text--name,
.ddb-campaigns-character-card-footer-links div:last-of-type>button:first-of-type,
.list-row-primary-text a[href^="/monsters"],
.listing__items .listing__list-item__column.blocked,
.stat-block-background--space .stat-block-ability-scores,
.red-statblock-text{
color: #D35050 !important;
}
:root{
--compendium-item-tooltip: #ca793f;
--compendium-action-tooltip: #149f59;
}
body *{
--compendium-monster-tooltip: #D35050;
--compendium-spell-tooltip: #896CE0;
--compendium-magic-item-tooltip: #1877EC;
}
.section-tome-of-beasts-1 li::marker, .section-tome-of-beasts-1 strong:not(em strong,ul strong,strong em,.flexible-double-column.hangingIndent strong,.epigraph strong),
.section-tome-of-beasts-1 .monster--stat-block.tob--stat-block .monster--stats p:nth-child(odd),
.section-tome-of-beasts-1 .monster--stat-block.tob--stat-block .monster--action-header{
color: #9f6fa5;
}
.section-tome-of-beasts-1 .monster--stat-block.tob--stat-block{
--stat-block-divider: #9f6fa5;
}
.tooltip-hover.spell-tooltip,
.tooltip-hover.spell-tooltip:hover,
.tooltip-hover.spell-tooltip:focus,
.tooltip-hover.spell-tooltip:active,
.tooltip-hover.spell-tooltip:visited,
.body-page .p-article-a .p-article-content a.spell-tooltip,
.mon-stat-block .tooltip-hover.spell-tooltip,
.mon-stat-block .tooltip-hover.spell-tooltip:hover,
.mon-stat-block .tooltip-hover.spell-tooltip:focus,
.mon-stat-block .tooltip-hover.spell-tooltip:active,
.mon-stat-block .tooltip-hover.spell-tooltip:visited,
.listing .info .row.spell-name .link:hover,
.listing .info .row.spell-name .link,
a[style*="color: #704cd9;"],
.list-row-primary-text-spell,
.list-row-spell a,
.section-bigby-presents-glory-of-the-giants.body-page .p-article-a .p-article-content :is(.table-compendium,.text--rules-sidebar) .tooltip-hover.spell-tooltip{
color: #896CE0 !important;
}
.tooltip-hover.magic-item-tooltip,
.tooltip-hover.magic-item-tooltip:hover,
.tooltip-hover.magic-item-tooltip:focus,
.tooltip-hover.magic-item-tooltip:active,
.tooltip-hover.magic-item-tooltip:visited,
.mon-stat-block .tooltip-hover.magic-item-tooltip,
.mon-stat-block .tooltip-hover.magic-item-tooltip:hover,
.mon-stat-block .tooltip-hover.magic-item-tooltip:focus,
.mon-stat-block .tooltip-hover.magic-item-tooltip:active,
.mon-stat-block .tooltip-hover.magic-item-tooltip:visited,
.body-page .p-article-a .p-article-content a.magic-item-tooltip,
.list-row-primary-text-item{
color: #1877EC !important;
}
EOT;
light "Light Mode" <<<EOT
.mon-stat-block .tooltip-hover.spell-tooltip,
.mon-stat-block .tooltip-hover.spell-tooltip:hover,
.mon-stat-block .tooltip-hover.spell-tooltip:focus,
.mon-stat-block .tooltip-hover.spell-tooltip:active,
.mon-stat-block .tooltip-hover.spell-tooltip:visited,
.listing .info .row.spell-name .link:hover,
.listing .info .row.spell-name .link,
.list-row-primary-text-spell{
color: #704cd9 !important;
}
.listing .info .row.monster-name .link:hover,
.listing .info .row.monster-name .link,
.list-row-primary-text-monster,
.combatant-card--monster .combatant-summary__name,
.listing__items .listing__list-item__column.blocked{
color: #bc0f0f !important;
}
EOT;
}
@advanced dropdown aboveFlyType "AboveVTT Flight icon theme" {
off "Default"<<<EOT
EOT;
on "Wings" <<<EOT
.elev:not(:empty) svg path{
fill: none !important;
stroke: none !important;
}
.elev{
}
.elev:not(:empty) svg text{
font-size: 7px !important;
}
.elev:not(:empty) svg{
width: 110% !important;
left: -20%;
position: absolute;
}
.token:has(.elev:not(:empty)):before{
content:'';
position:absolute;
top:0;
right:0;
left:0;
bottom:0;
width: 200%;
height:200%;
transform: translate(-25%,-18%) scale(var(--token-scale));
pointer-events:none;
z-index: -1;
-webkit-mask-size: cover !important;
-webkit-mask-repeat: no-repeat;
-webkit-mask-position: center center;
background: linear-gradient(to right, #fff8 15%, #0008, #fff8 85%) !important;
opacity: 1;
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.0' width='40px' height='40px' viewBox='0 0 1153.000000 1280.000000' preserveAspectRatio='xMidYMid meet'%3E%3Cmetadata%3E%0ACreated by potrace 1.15, written by Peter Selinger 2001-2017%0A%3C/metadata%3E%3Cg transform='translate(0.000000,1280.000000) scale(0.100000,-0.100000)' fill='%23000000' stroke='none'%3E%3Cpath d='M3022 11499 c-102 -39 -226 -179 -298 -334 -36 -77 -93 -283 -119 -430 -22 -121 -31 -483 -16 -645 15 -164 53 -394 95 -585 31 -137 130 -501 154 -564 6 -17 11 28 16 150 13 336 45 618 137 1198 68 430 80 492 93 488 23 -7 56 -87 90 -220 19 -75 44 -157 55 -182 19 -42 19 -48 5 -88 -21 -57 -13 -114 33 -233 33 -88 37 -107 35 -177 -1 -43 2 -95 8 -116 17 -63 65 -120 125 -147 51 -23 53 -26 60 -72 15 -103 80 -180 206 -247 62 -32 72 -42 94 -90 29 -61 64 -91 183 -160 46 -26 107 -68 135 -92 84 -73 162 -105 270 -111 89 -4 93 -6 119 -36 29 -35 71 -51 163 -61 33 -4 87 -20 121 -36 54 -26 77 -30 180 -36 66 -3 133 -11 149 -18 50 -20 93 -63 120 -120 14 -30 29 -55 34 -55 29 0 167 203 246 360 59 119 121 277 112 286 -3 3 -46 0 -94 -7 -52 -8 -173 -13 -298 -13 -233 0 -328 14 -502 75 -190 66 -314 151 -500 342 -143 147 -242 290 -360 523 -139 272 -392 888 -459 1119 -87 297 -212 403 -392 334z'/%3E%3Cpath d='M2709 11471 c-49 -41 -85 -114 -172 -351 -96 -262 -118 -332 -177 -570 -100 -402 -154 -758 -192 -1275 -16 -223 -16 -999 0 -1215 56 -727 180 -1302 409 -1885 77 -196 276 -605 289 -593 4 5 -23 501 -32 573 -3 28 -23 109 -44 180 -176 589 -252 1297 -237 2205 5 304 25 697 42 860 5 39 -3 111 -24 240 -130 798 -80 1232 200 1721 59 105 61 133 9 137 -27 2 -43 -4 -71 -27z'/%3E%3Cpath d='M8396 11476 c-88 -33 -160 -133 -221 -309 -88 -254 -264 -663 -421 -977 -220 -440 -431 -710 -695 -886 -151 -101 -289 -155 -484 -190 -134 -23 -459 -25 -595 -2 -52 9 -98 14 -102 12 -12 -7 59 -201 117 -319 75 -155 196 -335 226 -335 4 0 18 21 29 48 24 53 62 97 104 119 18 9 81 18 169 25 113 7 151 14 192 33 27 13 79 26 115 30 105 11 136 22 169 62 26 31 34 35 61 30 43 -9 164 9 216 32 23 11 71 41 107 69 36 27 109 73 162 102 121 65 157 96 183 159 20 45 27 51 97 84 121 58 214 167 215 253 0 33 15 54 40 54 30 0 98 58 127 107 25 42 28 59 30 143 2 86 6 104 43 192 48 115 57 171 40 233 -12 42 -11 51 13 113 14 37 37 108 51 157 14 50 32 109 40 133 20 54 56 106 67 95 4 -4 29 -152 53 -328 98 -693 115 -857 126 -1228 4 -164 10 -300 12 -303 5 -4 89 256 138 429 97 339 170 798 170 1066 0 203 -53 537 -110 692 -104 284 -320 465 -484 405z'/%3E%3Cpath d='M8780 11450 c-14 -26 -7 -49 41 -127 85 -139 141 -272 183 -433 46 -180 51 -229 51 -540 0 -324 -6 -384 -71 -720 l-36 -185 12 -365 c15 -427 8 -1005 -14 -1290 -50 -622 -127 -1057 -263 -1475 -64 -199 -66 -210 -93 -512 -27 -316 -29 -302 25 -218 59 91 237 446 304 604 116 276 237 673 305 1001 62 298 96 549 133 995 22 252 24 1082 4 1330 -50 636 -143 1093 -321 1595 -92 257 -117 303 -192 341 -47 24 -55 24 -68 -1z'/%3E%3Cpath d='M2463 11196 c-81 -85 -220 -262 -316 -399 -204 -291 -381 -645 -476 -952 -32 -106 -84 -335 -78 -342 5 -4 57 67 167 232 46 68 118 154 186 225 l112 115 110 240 c60 133 129 286 152 340 43 101 213 596 206 602 -2 2 -30 -25 -63 -61z'/%3E%3Cpath d='M9075 11190 c3 -14 38 -124 77 -245 77 -243 154 -442 281 -733 l85 -192 98 -103 c65 -68 138 -160 213 -270 63 -92 120 -172 127 -178 50 -41 -42 305 -163 616 -83 216 -186 405 -369 680 -91 139 -276 377 -329 425 l-27 25 7 -25z'/%3E%3Cpath d='M3036 10278 c-21 -145 -51 -335 -68 -423 -35 -184 -39 -290 -14 -385 20 -74 82 -198 126 -250 38 -45 50 -38 113 65 61 101 78 157 84 276 l6 97 -42 89 c-37 80 -41 98 -41 166 0 51 -6 92 -19 124 -13 34 -20 85 -23 178 -5 111 -10 144 -38 228 -18 53 -36 97 -39 97 -4 0 -24 -118 -45 -262z'/%3E%3Cpath d='M8436 10399 c-32 -90 -36 -111 -36 -201 0 -79 -5 -115 -24 -171 -14 -42 -26 -107 -29 -154 -4 -71 -10 -89 -42 -144 -20 -34 -41 -85 -46 -113 -12 -63 -3 -171 22 -252 17 -56 103 -203 127 -218 22 -14 131 151 167 253 36 102 38 163 11 330 -24 147 -77 554 -92 704 -4 37 -10 67 -14 67 -4 0 -24 -45 -44 -101z'/%3E%3Cpath d='M2191 10203 c-37 -80 -134 -334 -170 -447 -148 -457 -262 -1108 -290 -1656 -15 -279 11 -733 60 -1090 45 -324 132 -719 224 -1015 48 -153 131 -384 145 -398 4 -4 10 126 14 290 3 164 11 467 17 673 11 376 7 673 -11 785 -12 77 -45 453 -62 705 -17 262 -17 1209 0 1425 13 165 66 609 83 698 11 59 7 68 -10 30z'/%3E%3Cpath d='M5230 10163 c-29 -139 -123 -340 -227 -486 -72 -100 -230 -266 -316 -332 -36 -27 -66 -53 -66 -56 -1 -10 169 -86 220 -99 39 -10 52 -9 77 4 38 19 129 135 252 321 51 77 113 166 138 198 l45 57 -1 129 c-1 102 -5 141 -21 187 -22 62 -65 134 -80 134 -5 0 -15 -26 -21 -57z'/%3E%3Cpath d='M6235 10155 c-45 -69 -63 -141 -71 -276 l-7 -107 41 -48 c22 -27 77 -107 122 -179 182 -288 253 -375 303 -375 52 0 267 81 267 100 0 4 -10 14 -22 23 -94 62 -282 262 -368 389 -92 137 -176 331 -195 449 -15 98 -22 100 -70 24z'/%3E%3Cpath d='M9370 10155 c0 -5 9 -84 20 -175 40 -347 45 -444 45 -970 -1 -644 -24 -1006 -102 -1605 l-35 -270 -8 -605 c-5 -333 -9 -702 -9 -820 0 -246 -4 -244 75 -47 122 302 241 713 318 1099 75 372 104 641 113 1018 13 602 -59 1239 -196 1740 -64 233 -219 679 -221 635z'/%3E%3Cpath d='M4821 10018 c-38 -186 -105 -351 -230 -558 -28 -47 -51 -90 -51 -97 0 -13 38 -43 55 -43 20 0 166 142 245 236 113 138 125 165 125 299 0 61 -6 128 -13 151 -13 43 -75 124 -96 124 -9 0 -21 -39 -35 -112z'/%3E%3Cpath d='M6646 10099 c-14 -11 -38 -42 -54 -67 -25 -44 -27 -55 -30 -190 l-4 -143 70 -92 c39 -51 119 -143 179 -205 l108 -113 32 26 33 26 -31 52 c-147 252 -248 528 -249 680 0 53 -12 59 -54 26z'/%3E%3Cpath d='M5365 9728 c-20 -24 -68 -95 -107 -158 -111 -180 -192 -301 -237 -352 l-42 -47 23 -12 c34 -18 256 -23 288 -7 32 17 92 137 121 243 36 132 38 360 2 372 -6 2 -27 -15 -48 -39z'/%3E%3Cpath d='M6097 9763 c-11 -17 -27 -129 -27 -185 0 -32 7 -94 16 -136 18 -88 88 -274 109 -292 22 -18 91 -23 209 -15 73 5 106 11 106 19 0 7 -21 39 -46 72 -61 78 -98 136 -174 274 -97 176 -178 287 -193 263z'/%3E%3Cpath d='M1836 9569 c-41 -85 -91 -197 -111 -249 -249 -634 -384 -1483 -410 -2575 -3 -141 -2 -222 4 -210 5 11 50 203 100 425 107 469 175 745 237 953 l44 148 10 282 c6 155 17 343 25 417 31 268 96 617 161 858 14 52 23 96 20 99 -3 4 -39 -63 -80 -148z'/%3E%3Cpath d='M1799 9667 c-9 -12 -47 -65 -84 -117 -86 -121 -173 -220 -191 -220 -18 0 -18 44 1 130 7 36 12 66 10 68 -7 7 -73 -133 -104 -222 -39 -111 -74 -248 -100 -395 -23 -126 -26 -165 -12 -156 6 3 46 52 90 109 43 56 97 117 118 134 35 27 42 41 62 114 30 109 98 282 173 441 59 125 70 157 37 114z'/%3E%3Cpath d='M9650 9649 c0 -4 15 -71 34 -150 96 -399 146 -846 146 -1307 l0 -212 41 -148 c65 -236 113 -441 199 -861 94 -459 99 -481 113 -481 12 0 3 659 -13 940 -49 869 -185 1510 -438 2065 -43 95 -82 167 -82 154z'/%3E%3Cpath d='M3340 9586 c0 -20 -34 -182 -47 -221 -22 -68 -57 -136 -82 -159 -29 -26 -35 -71 -21 -162 16 -105 50 -180 111 -240 59 -58 65 -57 127 37 46 69 87 169 126 302 43 149 43 148 -3 182 -53 39 -89 93 -103 156 -10 42 -18 55 -55 80 -43 28 -53 33 -53 25z'/%3E%3Cpath d='M9770 9577 c0 -2 23 -54 51 -117 62 -140 132 -327 149 -400 20 -89 28 -103 80 -148 27 -23 71 -73 97 -110 67 -95 91 -123 97 -114 16 27 -65 427 -116 572 -31 86 -76 185 -83 178 -2 -1 2 -38 8 -81 9 -61 8 -80 -2 -90 -17 -16 -93 65 -191 202 -61 87 -90 122 -90 108z'/%3E%3Cpath d='M8138 9526 c-31 -17 -41 -31 -53 -71 -21 -72 -67 -140 -114 -167 -47 -26 -47 -13 -5 -182 29 -116 70 -220 123 -307 50 -83 59 -88 106 -59 78 48 135 184 135 320 0 68 -3 82 -24 107 -52 63 -91 179 -102 311 -4 43 -11 72 -18 71 -6 -1 -28 -11 -48 -23z'/%3E%3Cpath d='M2624 9088 c-16 -191 -19 -329 -19 -763 0 -524 7 -695 41 -1010 41 -392 132 -748 242 -959 l47 -89 6 599 c5 473 10 618 22 689 l15 90 -48 166 c-69 234 -97 343 -109 433 -13 95 -14 281 -1 358 8 52 6 64 -16 115 -30 67 -80 260 -120 461 -16 78 -31 142 -35 142 -3 0 -14 -105 -25 -232z'/%3E%3Cpath d='M2911 9161 c-84 -617 -24 -1144 179 -1553 74 -148 70 -162 70 290 0 498 9 593 76 765 l18 47 -52 105 -52 105 0 105 c0 58 -3 105 -7 105 -3 0 -15 -8 -26 -17 -18 -17 -20 -17 -51 18 -17 20 -49 70 -72 110 -22 40 -45 74 -51 76 -6 2 -19 -60 -32 -156z'/%3E%3Cpath d='M8525 9180 c-62 -98 -96 -130 -118 -111 -21 17 -27 3 -27 -64 0 -80 -22 -151 -77 -252 l-44 -83 24 -72 c48 -139 52 -178 52 -458 0 -146 -4 -361 -8 -479 -10 -260 -10 -260 104 -26 118 242 172 454 200 790 19 228 -8 806 -39 837 -6 6 -31 -25 -67 -82z'/%3E%3Cpath d='M3606 9135 c-34 -136 -55 -191 -106 -276 -36 -58 -41 -74 -36 -104 9 -49 83 -154 132 -188 39 -27 44 -28 79 -17 104 34 169 174 191 407 l7 70 -49 49 c-27 27 -57 64 -66 82 -9 17 -25 32 -34 32 -9 0 -32 11 -50 25 -18 14 -35 25 -37 25 -3 0 -16 -47 -31 -105z'/%3E%3Cpath d='M8877 9224 c-4 -10 -24 -93 -46 -184 -44 -183 -85 -320 -110 -365 -13 -25 -16 -64 -16 -225 0 -230 -12 -290 -120 -630 l-66 -205 12 -235 c8 -176 8 -310 -1 -535 -6 -165 -13 -376 -16 -470 l-5 -170 20 25 c69 84 185 385 236 613 115 521 171 1285 147 2015 -11 327 -20 418 -35 366z'/%3E%3Cpath d='M7848 9180 c-15 -11 -38 -20 -52 -20 -20 0 -30 -9 -49 -47 -13 -28 -41 -61 -65 -78 -33 -25 -41 -36 -41 -64 -1 -60 30 -242 51 -299 22 -59 75 -125 119 -148 53 -27 80 -19 141 44 88 89 118 173 79 223 -50 64 -119 249 -130 347 -3 30 -11 57 -17 59 -6 2 -22 -6 -36 -17z'/%3E%3Cpath d='M3926 9001 c-3 -4 -17 -62 -31 -128 -36 -171 -51 -216 -89 -266 -60 -79 -68 -110 -45 -191 12 -45 77 -119 119 -136 27 -11 34 -10 69 13 45 30 100 95 129 153 24 47 46 153 63 304 12 103 12 104 -11 119 -13 9 -50 37 -84 64 -71 57 -113 81 -120 68z'/%3E%3Cpath d='M7495 8929 c-33 -23 -78 -55 -99 -72 l-39 -31 7 -110 c3 -61 11 -140 16 -176 20 -119 91 -238 176 -291 l34 -21 34 21 c42 26 104 93 116 127 13 33 13 110 0 134 -6 11 -22 31 -36 45 -37 38 -54 84 -88 255 -23 113 -36 156 -47 158 -8 1 -42 -16 -74 -39z'/%3E%3Cpath d='M4186 8773 c-3 -27 -8 -75 -12 -108 -3 -33 -17 -100 -31 -149 -47 -164 -16 -305 81 -377 50 -36 63 -36 108 2 43 35 89 124 112 219 20 83 39 269 34 340 l-3 55 -81 0 c-74 0 -85 3 -133 33 -29 17 -56 32 -61 32 -4 0 -11 -21 -14 -47z'/%3E%3Cpath d='M7250 8767 c-43 -30 -50 -32 -139 -32 l-94 0 6 -160 c9 -251 44 -372 134 -462 50 -51 57 -50 133 26 77 77 102 215 60 337 -12 33 -26 113 -32 184 -6 69 -14 128 -17 132 -3 3 -26 -8 -51 -25z'/%3E%3Cpath d='M1456 8737 c-192 -252 -307 -683 -306 -1151 0 -152 5 -153 66 -16 29 67 60 130 69 141 13 13 21 55 31 156 33 334 81 590 155 832 10 35 17 66 15 68 -2 2 -16 -11 -30 -30z'/%3E%3Cpath d='M4536 8678 c-3 -24 -8 -83 -11 -133 -3 -54 -16 -121 -31 -170 -32 -99 -37 -214 -11 -262 22 -41 83 -91 128 -104 45 -14 89 4 144 59 64 64 97 152 110 297 7 79 -10 234 -28 251 -17 15 -215 91 -259 98 l-37 7 -5 -43z'/%3E%3Cpath d='M3271 8656 c-43 -115 -56 -210 -55 -411 0 -138 5 -217 18 -290 22 -123 76 -294 127 -400 38 -82 133 -225 148 -225 4 0 8 195 7 433 -1 441 2 484 41 655 17 72 17 73 -5 88 -41 29 -92 89 -123 147 -29 54 -32 57 -48 43 -22 -20 -45 -20 -61 -1 -20 24 -27 18 -49 -39z'/%3E%3Cpath d='M6830 8669 c-30 -11 -82 -30 -115 -41 -33 -12 -63 -25 -66 -31 -15 -23 -31 -192 -25 -264 15 -182 77 -298 184 -342 49 -20 125 10 169 67 33 43 33 44 33 158 0 90 -4 120 -16 140 -12 18 -19 63 -25 167 -5 78 -11 148 -14 155 -7 18 -62 14 -125 -9z'/%3E%3Cpath d='M10107 8552 c59 -242 96 -481 113 -744 9 -145 9 -147 53 -235 24 -48 54 -115 68 -148 l24 -60 7 40 c10 60 9 255 -2 401 -26 323 -93 555 -224 778 -31 52 -60 97 -65 100 -4 3 7 -56 26 -132z'/%3E%3Cpath d='M8191 8649 c-28 -23 -35 -23 -55 -4 -21 21 -23 20 -47 -26 -21 -41 -123 -153 -146 -160 -10 -3 -8 -28 8 -104 13 -61 23 -162 27 -262 7 -150 5 -222 -12 -653 l-7 -165 39 43 c164 183 292 576 292 897 0 156 -31 369 -64 432 -11 21 -11 21 -35 2z'/%3E%3Cpath d='M4890 8578 c1 -64 29 -244 48 -305 11 -33 29 -75 41 -92 27 -38 103 -91 130 -91 49 0 120 115 128 210 7 78 -12 138 -56 180 -21 19 -47 49 -59 66 -31 46 -78 64 -161 64 l-71 0 0 -32z'/%3E%3Cpath d='M6437 8586 c-52 -19 -174 -149 -183 -194 -4 -18 -4 -71 -2 -117 4 -70 9 -90 32 -125 15 -22 41 -49 58 -60 27 -16 35 -17 57 -5 33 17 114 102 134 142 9 16 23 65 31 109 19 95 44 248 42 251 -1 1 -31 5 -66 8 -44 3 -77 1 -103 -9z'/%3E%3Cpath d='M3601 8391 c-76 -321 -26 -703 146 -1125 48 -119 162 -350 169 -343 3 3 -4 84 -15 180 -46 401 -52 802 -16 1007 8 47 15 90 15 96 0 6 -27 17 -59 23 -97 19 -176 105 -196 214 -4 20 -11 37 -15 37 -5 0 -18 -40 -29 -89z'/%3E%3Cpath d='M7849 8375 c-39 -111 -123 -185 -210 -185 -20 0 -38 -2 -40 -5 -3 -2 -2 -37 3 -77 34 -306 28 -507 -27 -942 -18 -149 -32 -272 -30 -274 11 -12 171 306 235 468 56 141 104 311 126 445 24 150 24 418 0 530 -25 115 -29 117 -57 40z'/%3E%3Cpath d='M4047 8301 c-10 -17 -31 -38 -47 -48 -41 -24 -51 -59 -57 -199 -13 -267 49 -458 274 -850 41 -72 86 -144 99 -160 l23 -29 1 193 c0 277 -12 368 -60 456 -54 99 -70 163 -77 298 -6 110 -7 117 -30 129 -35 19 -74 91 -92 171 l-16 69 -18 -30z'/%3E%3Cpath d='M7410 8232 c-19 -67 -47 -122 -85 -162 -29 -32 -33 -43 -39 -115 -11 -136 -48 -258 -102 -336 -30 -44 -48 -135 -64 -334 -12 -147 -6 -289 12 -283 23 8 259 415 308 531 80 189 91 238 97 422 6 197 0 225 -66 282 l-49 42 -12 -47z'/%3E%3Cpath d='M4883 8088 c7 -143 32 -250 82 -352 36 -72 148 -226 165 -226 18 0 21 46 8 155 -6 61 -12 161 -13 224 l-1 114 -49 18 c-68 25 -120 71 -157 135 -16 30 -32 54 -35 54 -3 0 -3 -55 0 -122z'/%3E%3Cpath d='M6571 8153 c-29 -57 -91 -111 -157 -138 l-59 -24 -6 -118 c-4 -65 -12 -143 -18 -173 -13 -62 -17 -188 -6 -198 12 -12 120 115 163 191 70 123 100 237 115 435 3 34 1 62 -4 62 -5 0 -17 -17 -28 -37z'/%3E%3Cpath d='M4397 8131 c-23 -40 -84 -91 -107 -91 -29 0 -35 -41 -22 -148 22 -171 71 -270 197 -398 51 -51 110 -98 160 -127 87 -51 101 -56 90 -29 -14 35 -44 201 -65 357 -30 226 -34 242 -80 265 -43 22 -64 48 -109 138 -17 34 -35 62 -39 62 -4 0 -15 -13 -25 -29z'/%3E%3Cpath d='M7015 8059 c-40 -72 -94 -129 -121 -129 -26 0 -41 -58 -74 -275 -17 -114 -42 -241 -55 -282 -14 -44 -19 -73 -12 -73 38 0 205 118 279 198 114 121 168 246 176 399 l5 103 -29 10 c-35 14 -81 56 -100 93 -8 15 -18 27 -22 27 -4 0 -25 -32 -47 -71z'/%3E%3Cpath d='M4792 8059 c-24 -26 -64 -62 -91 -79 l-48 -31 9 -52 c26 -144 105 -309 190 -398 72 -75 78 -70 78 64 0 119 -2 130 -44 272 -15 50 -30 126 -33 170 -3 44 -8 85 -12 91 -4 7 -23 -8 -49 -37z'/%3E%3Cpath d='M6636 8058 c-3 -18 -9 -65 -15 -104 -6 -39 -26 -114 -45 -167 -31 -84 -36 -112 -42 -226 -8 -150 -5 -155 63 -96 48 41 130 165 167 253 27 64 56 164 56 192 0 9 -22 31 -49 49 -28 17 -68 54 -90 82 l-40 50 -5 -33z'/%3E%3Cpath d='M3220 7760 c0 -3 -5 -68 -10 -145 -8 -134 -23 -205 -40 -205 -15 0 -58 60 -102 141 l-43 81 -3 -98 c-7 -206 34 -802 69 -1014 56 -340 175 -685 314 -915 49 -81 125 -188 131 -183 1 2 -2 26 -6 53 -196 1136 -213 1277 -215 1745 -1 308 -2 338 -20 370 -10 19 -31 67 -46 105 -15 39 -28 68 -29 65z'/%3E%3Cpath d='M8256 7680 c-5 -14 -26 -63 -47 -110 l-38 -85 -10 -315 c-16 -474 -29 -568 -176 -1313 -53 -264 -93 -482 -91 -484 2 -2 24 24 49 59 315 446 444 899 502 1767 8 124 15 256 15 295 l0 71 -45 -80 c-55 -96 -93 -139 -110 -125 -19 16 -27 64 -34 210 -4 96 -9 128 -15 110z'/%3E%3Cpath d='M1646 7590 c-99 -299 -182 -734 -222 -1165 -20 -207 -33 -1505 -16 -1505 6 0 14 21 17 48 59 459 175 978 321 1436 l45 139 -25 151 c-26 153 -61 547 -73 819 -3 81 -9 150 -13 152 -4 3 -19 -31 -34 -75z'/%3E%3Cpath d='M3924 7510 c7 -227 41 -367 136 -565 71 -146 186 -312 205 -294 6 7 -24 117 -80 291 -44 137 -75 274 -75 331 0 19 -15 54 -40 91 -21 34 -57 102 -80 151 -77 169 -71 169 -66 -5z'/%3E%3Cpath d='M7501 7513 c-24 -49 -65 -124 -91 -168 -40 -67 -51 -96 -64 -173 -9 -52 -47 -187 -85 -300 -99 -300 -100 -308 -14 -194 165 218 243 392 282 623 23 137 36 299 24 299 -5 0 -28 -39 -52 -87z'/%3E%3Cpath d='M3569 7398 c-2 -108 -8 -200 -12 -205 -13 -12 -70 61 -119 150 -24 43 -51 88 -61 100 -18 21 -18 19 -12 -103 13 -273 69 -532 176 -817 87 -231 278 -630 278 -583 1 14 -12 125 -28 245 -47 349 -54 427 -53 655 l1 215 -50 145 c-28 80 -65 201 -84 270 l-33 125 -3 -197z'/%3E%3Cpath d='M9836 7529 c-3 -24 -15 -141 -26 -259 -37 -392 -62 -572 -108 -780 -6 -27 4 -75 50 -235 114 -396 232 -988 264 -1325 11 -122 21 -123 28 -5 70 1158 28 1864 -151 2495 -44 156 -49 165 -57 109z'/%3E%3Cpath d='M4365 7527 c-18 -44 35 -209 101 -320 63 -105 208 -294 212 -275 2 9 -10 57 -27 105 -39 115 -61 207 -61 264 0 41 -3 47 -32 61 -43 20 -124 92 -159 141 -21 30 -30 36 -34 24z'/%3E%3Cpath d='M7881 7433 c-12 -43 -51 -152 -85 -243 l-63 -165 -7 -195 c-8 -229 -25 -387 -72 -680 -36 -231 -39 -259 -25 -245 17 17 120 216 190 365 168 357 274 725 290 1010 4 69 6 126 5 128 -1 2 -28 -40 -59 -93 -62 -106 -119 -175 -143 -175 -13 0 -14 22 -8 185 3 102 5 185 3 185 -2 0 -13 -35 -26 -77z'/%3E%3Cpath d='M7039 7438 c-34 -38 -77 -74 -105 -89 -27 -13 -51 -25 -54 -27 -2 -1 -7 -36 -11 -76 -5 -46 -24 -124 -53 -207 -25 -73 -46 -135 -46 -138 0 -32 201 232 260 342 40 74 74 190 68 234 -3 23 -8 20 -59 -39z'/%3E%3Cpath d='M2297 6505 c-3 -11 -8 -153 -12 -315 -3 -162 -10 -365 -16 -450 l-11 -155 37 -150 c102 -406 271 -838 459 -1170 240 -424 560 -795 939 -1088 110 -86 274 -193 282 -185 3 2 -33 56 -78 119 -449 616 -814 1245 -1005 1729 -95 242 -177 503 -232 743 -32 136 -38 151 -108 267 -87 145 -166 341 -217 544 -20 81 -34 123 -38 111z'/%3E%3Cpath d='M3007 6370 c-4 -41 -11 -128 -16 -193 -5 -65 -12 -122 -16 -125 -4 -4 -15 3 -25 16 -26 32 -29 28 -18 -25 12 -54 17 -617 6 -628 -18 -18 -122 73 -188 165 l-32 45 7 -50 c20 -146 134 -509 209 -668 168 -361 442 -676 781 -900 112 -73 230 -134 222 -114 -3 8 -41 70 -85 138 -502 783 -765 1517 -830 2319 l-8 95 -7 -75z'/%3E%3Cpath d='M9155 6373 c-56 -213 -161 -456 -263 -614 -75 -116 -74 -114 -118 -279 -193 -727 -631 -1543 -1279 -2384 -58 -76 -105 -140 -105 -142 0 -10 113 57 225 134 175 120 298 223 475 401 456 456 764 973 994 1663 85 254 99 317 95 428 -2 52 -3 267 -2 478 1 210 1 382 -1 382 -2 0 -11 -30 -21 -67z'/%3E%3Cpath d='M8417 6167 c-56 -445 -190 -900 -401 -1354 -123 -267 -253 -494 -447 -786 -66 -98 -119 -180 -119 -182 0 -16 168 77 327 182 186 122 430 370 561 570 75 115 178 317 238 466 39 97 144 432 144 460 0 5 -39 -31 -87 -80 -82 -84 -125 -114 -141 -98 -4 4 -7 118 -6 253 1 179 5 269 17 327 8 44 13 82 11 84 -2 2 -12 -7 -23 -20 -11 -13 -23 -20 -27 -16 -4 4 -10 76 -12 160 -2 84 -7 158 -11 164 -4 7 -15 -51 -24 -130z'/%3E%3Cpath d='M1823 6195 c-6 -22 -23 -94 -38 -160 -34 -149 -73 -252 -125 -330 l-39 -60 0 -145 c0 -80 4 -239 9 -353 21 -474 74 -767 182 -999 30 -67 48 -85 48 -50 0 9 11 104 25 210 58 458 92 842 105 1199 l9 258 -30 40 c-68 92 -109 209 -127 360 l-8 70 -11 -40z'/%3E%3Cpath d='M9630 6077 c0 -95 -63 -265 -131 -353 l-42 -55 6 -382 c4 -210 13 -456 21 -547 36 -417 68 -727 75 -745 8 -17 16 -6 50 67 135 284 205 682 227 1288 l7 185 -41 64 c-63 97 -104 226 -143 449 -14 80 -29 95 -29 29z'/%3E%3Cpath d='M2046 5558 c-3 -13 -6 -113 -6 -223 0 -360 63 -630 224 -960 147 -299 351 -564 570 -739 32 -26 60 -45 63 -42 2 2 -82 208 -188 458 -105 249 -212 505 -236 568 -54 139 -193 547 -223 656 -12 43 -31 95 -41 115 -22 44 -136 189 -148 189 -5 0 -11 -10 -15 -22z'/%3E%3Cpath d='M9313 5403 c-86 -108 -82 -100 -144 -280 -114 -333 -237 -626 -498 -1192 -100 -216 -181 -397 -179 -402 5 -14 153 107 253 207 342 341 568 787 641 1269 19 127 25 458 8 475 -7 7 -32 -17 -81 -77z'/%3E%3Cpath d='M2094 4550 c18 -93 48 -274 72 -446 26 -179 28 -213 32 -647 3 -377 1 -487 -13 -620 -43 -422 -135 -825 -290 -1276 -31 -89 -54 -165 -52 -167 10 -10 233 236 320 351 372 496 567 1091 567 1732 l0 116 -133 136 c-200 205 -327 414 -469 771 -34 86 -44 100 -34 50z'/%3E%3Cpath d='M1991 4374 c-13 -201 -24 -265 -63 -357 -37 -87 -50 -102 -76 -88 -12 6 -56 63 -98 127 -42 63 -79 112 -82 109 -4 -4 -10 -124 -14 -268 -13 -534 -81 -835 -251 -1107 -26 -41 -47 -80 -47 -86 0 -19 49 -5 150 43 80 39 108 59 181 132 175 175 288 409 354 733 51 256 51 604 0 833 -14 60 -25 113 -25 117 0 5 -4 8 -8 8 -5 0 -14 -88 -21 -196z'/%3E%3Cpath d='M9316 4464 c-4 -9 -4 -19 -1 -22 2 -3 7 3 11 12 4 9 4 19 1 22 -2 3 -7 -3 -11 -12z'/%3E%3Cpath d='M9403 4440 c-6 -14 -23 -77 -39 -140 -29 -115 -29 -116 -29 -435 l0 -320 33 -130 c98 -379 234 -606 449 -748 68 -45 188 -95 200 -84 3 4 -13 37 -35 74 -172 285 -231 566 -232 1098 0 110 -3 224 -7 253 l-6 53 -55 -83 c-64 -98 -119 -158 -143 -158 -25 0 -46 34 -69 109 -30 94 -42 186 -49 371 -6 130 -9 160 -18 140z'/%3E%3Cpath d='M9242 4287 c-75 -157 -181 -337 -257 -437 -69 -91 -212 -238 -279 -288 l-49 -36 6 -260 c3 -152 12 -304 21 -364 69 -463 254 -910 529 -1282 130 -176 287 -350 287 -319 0 8 -16 62 -35 120 -168 497 -267 1019 -284 1504 -18 473 11 852 100 1313 16 86 28 161 26 166 -3 6 -32 -47 -65 -117z'/%3E%3Cpath d='M2840 3930 c0 -6 22 -68 49 -138 54 -140 66 -181 76 -261 l6 -54 -29 6 c-16 3 -53 9 -82 13 l-52 7 6 -29 c10 -49 34 -205 45 -287 34 -251 60 -880 61 -1460 0 -194 3 -248 13 -245 20 7 104 135 161 248 213 416 294 1034 205 1560 -31 181 -42 212 -90 246 -47 32 -167 163 -283 307 -43 53 -80 97 -82 97 -2 0 -4 -5 -4 -10z'/%3E%3Cpath d='M8459 3763 c-154 -181 -234 -259 -328 -320 -10 -6 -53 -204 -71 -323 -49 -339 -32 -698 50 -1045 51 -215 147 -448 247 -598 l48 -72 6 45 c4 25 10 153 13 285 25 899 46 1182 112 1520 14 72 28 139 31 149 5 18 1 19 -64 13 -38 -3 -75 -2 -83 3 -30 19 -11 94 77 304 30 70 52 130 50 133 -3 2 -42 -40 -88 -94z'/%3E%3C/g%3E%3C/svg%3E");
}
EOT;
}
@advanced dropdown aboveContainDice "AboveVTT prevent dice from entering side bar; resize your window after changing this option to reset aspect ratio" {
off "OFF" <<<EOT
EOT;
on "ON" <<<EOT
canvas.dice-rolling-panel__container,
div#character-tools-target>canvas{
max-width: calc(100% - var(--sidebar-width, 340px)) !important;
}
EOT;
}
@advanced dropdown jsPopupBackground "Javascript Popup Dice Tray Background Type"{
color "Color"<<<EOT
EOT;
custom "Custom Image"<<<EOT
background-image: var(--custom-capture-background);
EOT;
}
@advanced dropdown hideDiceOnSheet "JS Invisible Dice on Character Sheet"{
off "Default"<<<EOT
EOT;
custom "Hide"<<<EOT
.dice-rolling-panel__container {
visibility: hidden;
}
EOT;
}
@var color captureBackground "JS Dice Tray Background Color - Default #009933 for websafe green screen" #009933
@var text customCaptureBackground "Custom Background url for JS Dice Tray; Include url() eg. url(http://imgur.com/img.jpg)" "url()"
==/UserStyle== */
@-moz-document regexp("https://www.dndbeyond.com/profile/.*/characters/\\d*"),
regexp("https://www.dndbeyond.com/characters/\\d.*"),
regexp("https://www.dndbeyond.com/profile.*abovevtt=true.*"),
regexp("https://www.dndbeyond.com/characters/\\d.*abovevtt=true.*") {
/*Character Sheet*/
/*Scrollbar style */
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-corner {
background: /*[[background]]*/;
}
::-webkit-scrollbar-track {
background: none;
}
::-webkit-scrollbar-thumb {
background-color: /*[[scrollbarColor]]*/;
border-radius: 4px;
background-clip: padding-box;
border: 4px solid rgba(0, 0, 0, 0);
}
:root{
--theme-color: /*[[highlightColor]]*/;
--theme-contrast: /*[[fontColor]]*/;
--theme-background-solid: /*[[sidebarColor]]*/;
--link-color: /*[[highlightColor]]*/;
--text-color:/*[[fontColor]]*/;
}
.dice-toolbar{
--dice-color-hover:/*[[rollCalcColor]]*/;
--dice-color: /*[[rollCalcColor]]*/;
}
*{
scrollbar-width: thin !important;
scrollbar-color: /*[[scrollbarColor]]*/ /*[[sheetColor]]*/ !important;
--common-1000: /*[[fontColor]]*/ !important;
}
*::after,
*::before{
scrollbar-width: initial !important;
scrollbar-color: initial !important;
}
*:focus{
outline: none !important;
}
.ddb-footer__privacy-policy-notice,
.ddb-footer__bottom{
--common-1000: #000;
}
/*Background colors, images and styles */
body#site{
overflow: overlay !important;
}
[class*='styles_tabList'] [class*='styles_tabFilter']{
height: 100%;
}
[class*='styles_tabList'] [class*='styles_tabFilter'] [class*='styles_content']{
overflow:auto;
}
*{
--active-color: /*[[fontColor]]*/;
--inactive-color: /*[[fontColor]]*/aa;
--border-color: /*[[borderColor]]*/;
}
.ct-character-sheet:before{
/*[[titleToggle]]*/
}
:root *{
--color-common: /*[[fontColor]]*/;
--color-uncommon: #1FC219;
--color-rare: #4990E2;
--color-veryrare: #9810E0;
--color-legendary: #FEA227;
--color-artifact: #be8972;
--theme-background: /*[[sheetColor]]*/;
}
html body#site.body-rpgcharacter-sheet{
/*[[backgroundImg]]*/
background-color: /*[[background]]*/
!important;
background-repeat: no-repeat !important;
background-position: top center !important;
background-attachment: fixed !important;
background-origin: content-box !important;
-webkit-background-size: cover !important;
-moz-background-size: cover !important;
-o-background-size: cover !important;
background-size: cover !important;
}
img.ddbc-character-avatar__portrait {
object-fit: cover;
}
.ct-decorate-pane__backdrop{
/*[[backgroundImg]]*/
background-color: /*[[background]]*/
!important;
}
.ct-character-sheet-mobile--dark-mode,
.site-search input.react-autosuggest__input{
background: none !important;
}
[class*='styles_chip']{
background: transparent !important;
backdrop-filter: brightness(3);
color: /*[[fontColor]]*/;
}
.ct-component-carousel__active {
background: transparent !important;
}
[class*='styles_numberDisplay'][class*='styles_modified']:after {
content: '*';
}
.ct-health-summary__adjuster-field-input,
.ddbc-campaign-summary,
body:not(.body-forum):not(.section-posts):not(.section-changelog):not(.body-privatemessage-details) blockquote,
.ct-editor-box,
input:not(.es-form-field-query, .hp, .max_hp),
.ddbc-checkbox__input,
.ct-item-detail__tag,
.ct-spell-detail__tag,
.ddbc-collapsible__header,
.ct-select,
.ct-creature-pane__tag,
.ddbc-number-bar__option,
.ct-condition-manage-pane__condition-content,
.ct-sidebar td,
textarea,
.ct-spells-filter__adv-filter-button,
.ct-equipment-shop__item > .ddbc-collapsible__content,
.ct-spell-manager__spell > .ddbc-collapsible__content,
.site .ct-button.ct-theme-button--outline:disabled,
.ct-feats-manage-pane__feat-content,
.ddbc-ability-score-manager__component-value,
.ct-mobile-divider__label,
.ct-main-mobile__saving-throws,
.ct-main-mobile .ct-senses,
.ct-sidebar__mask,
.ct-description-mobile .ct-description,
.ct-proficiency-groups-mobile,
.ct-notes-mobile .ct-notes,
.ct-features-mobile,
.ct-spells-mobile,
.ct-equipment-mobile,
.ct-actions-mobile .ddbc-tab-options,
.ct-combat-tablet__cta-button,