All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

109 lines
2.5 KiB

1 year ago
  1. #token-hud .status-effects,
  2. .status-effects .status-effect-summary {
  3. border: none;
  4. border-radius: 0px;
  5. box-shadow: none;
  6. backdrop-filter: none;
  7. background: none;
  8. background-image: none;
  9. }
  10. #token-hud .status-effects,
  11. .status-effects .status-effect-summary {
  12. border: none;
  13. border-radius: var(--dorako-radius);
  14. background-color: var(--dorako-bg-current);
  15. /* backdrop-filter: var(--dorako-vibrancy); */
  16. /*will-change: backdrop-filter;*/
  17. transform: translate3d(0px, 0px, 0px);
  18. box-shadow: var(--glassy);
  19. }
  20. .effect-panel {
  21. right: 0px;
  22. top: 0px;
  23. display: flex;
  24. flex-direction: column;
  25. gap: 10px;
  26. margin-top: 10px;
  27. margin-right: 10px;
  28. text-shadow: var(--dorako-text-shadow);
  29. }
  30. .effect-panel hr {
  31. width: 42px;
  32. box-shadow: 0px 0px 5px var(--color-border-light-highlight);
  33. }
  34. .effect-panel .effect-item .icon {
  35. border-radius: 42px;
  36. box-shadow: var(--gold-and-glow), var(--glassy);
  37. }
  38. .effect-panel .effect-item .effect-info {
  39. background-color: var(--dorako-bg-current);
  40. margin-right: 10px;
  41. padding: 3px;
  42. box-shadow: var(--glassy);
  43. border-radius: 3px;
  44. align-items: center;
  45. justify-content: right;
  46. flex-direction: column;
  47. }
  48. .effect-panel .effect-item .icon i.fas.fa-comment-alt {
  49. display: none;
  50. }
  51. .effect-panel .effect-item .icon .expired {
  52. bottom: unset;
  53. }
  54. .effect-panel .effect-item .icon .linked,
  55. .effect-panel .effect-item .icon .value {
  56. display: contents;
  57. background: inherit;
  58. text-shadow:
  59. 0px 0px 15px black,
  60. 0px 0px 14px black,
  61. 0px 0px 13px black,
  62. 0px 0px 12px black,
  63. 0px 0px 11px black,
  64. 0px 0px 10px black,
  65. -1px -1px 3px black,
  66. -1px 0px 3px black,
  67. -1px 1px 3px black,
  68. 0px -1px 3px black,
  69. 0px 0px 3px black,
  70. 0px 1px 3px black,
  71. 1px -1px 3px black,
  72. 1px 0px 3px black,
  73. 1px 1px 3px black;
  74. font-size: var(--font-size-18);
  75. /* mix-blend-mode: overlay; */
  76. color: white;
  77. }
  78. .effect-panel .effect-item .icon .linked {
  79. font-size: var(--font-size-14);
  80. }
  81. .status-effects {
  82. /* gap: 10px; */
  83. padding: 10px;
  84. }
  85. .status-effects .status-effect-summary,
  86. #token-hud .status-effects {
  87. width: auto;
  88. text-align: center;
  89. align-items: center;
  90. justify-content: center;
  91. }
  92. #token-hud .status-effects .pf2e-effect-control,
  93. #token-hud .status-effects .effect-control {
  94. border-radius: 5px;
  95. box-shadow: 0px 0px 5px black inset;
  96. }