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.

120 lines
2.4 KiB

1 year ago
1 year ago
  1. .pathmuncher #textBoxBuildID {
  2. border: 0px;
  3. padding-left: 15px;
  4. letter-spacing: 42px;
  5. background-image: linear-gradient(to left, black 70%, rgba(255, 255, 255, 0) 0%);
  6. background-position: bottom;
  7. background-size: 50px 1px;
  8. background-repeat: repeat-x;
  9. background-position-x: 35px;
  10. width: 330px;
  11. min-width: 330px;
  12. }
  13. .pathmuncher #divInner{
  14. left: 0;
  15. position: sticky;
  16. }
  17. .pathmuncher #divOuter{
  18. width: 285px;
  19. overflow: hidden;
  20. }
  21. .pathmuncher #divCode, .pathmuncher #divJson {
  22. border: 1px solid black;
  23. width: 300px;
  24. margin: 0 auto;
  25. padding: 5px;
  26. }
  27. .pathmuncher #checkBoxMoney, .pathmuncher #checkBoxTreasure, .pathmuncher #checkBoxArmor, .pathmuncher #checkBoxWeapons, .pathmuncher #checkBoxBlendedSlots {
  28. margin-left: 35px;
  29. }
  30. .pathmuncher .import-invalid {
  31. display: none;
  32. }
  33. .pathmuncher .import-hidden {
  34. visibility: hidden;
  35. }
  36. .pathmuncher .import-progress {
  37. background-color: #f1f1f1;
  38. margin: 5px 0;
  39. width: 100%;
  40. }
  41. .pathmuncher .import-progress .import-progress-bar {
  42. max-width: 100%;
  43. height: 24px;
  44. background-color: green;
  45. text-align: center;
  46. }
  47. .pathmuncher .import-progress .import-progress-bar span {
  48. white-space: nowrap;
  49. line-height: 24px;
  50. }
  51. .pathmuncher .pathmuncher-overlay {
  52. width: 100%;
  53. height: 100%;
  54. background-color: rgba(0, 0, 0, 0.5);
  55. position: absolute;
  56. top: 0;
  57. left: 0;
  58. }
  59. .pathmuncher .pathmuncher-working {
  60. color: white;
  61. position: absolute;
  62. top: 50%;
  63. left: 50%;
  64. font-size: 135px;
  65. transform: translateX(-50%) translateY(-50%);
  66. }
  67. .pathmuncher .pathmuncher-working i {
  68. transform: rotate(360deg);
  69. -webkit-animation: roll 3s infinite;
  70. animation: roll 3s infinite;
  71. }
  72. .pathmuncher-compendium-selector .drop-container {
  73. display: flex;
  74. justify-content: center;
  75. align-items: center;
  76. /* height: 10vh; */
  77. flex: initial;
  78. padding: 10px;
  79. }
  80. .pathmuncher-compendium-selector .container {
  81. display: flex;
  82. justify-content: center;
  83. /* align-items: center; */
  84. height: 100vh;
  85. flex: initial;
  86. padding: 10px;
  87. }
  88. .pathmuncher-compendium-selector .list-container {
  89. display: flex;
  90. /* flex-direction: column;
  91. align-items: center; */
  92. }
  93. .pathmuncher-compendium-selector .list {
  94. width: 200px;
  95. margin: 0 20px;
  96. }
  97. .pathmuncher-compendium-selector .button-container {
  98. display: flex;
  99. flex-direction: column;
  100. justify-content: center;
  101. align-items: center;
  102. margin: 0 20px;
  103. }
  104. .pathmuncher-compendium-selector .button {
  105. margin-bottom: 10px;
  106. }