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.

2401 lines
60 KiB

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. /* Deprecated vars */
  2. /* ----------------------------------------- */
  3. /* Fonts */
  4. /* ----------------------------------------- */
  5. @font-face {
  6. font-family: 'Modesto Condensed';
  7. font-style: normal;
  8. font-weight: 400;
  9. src: url('../../fonts/modesto-condensed/modesto-condensed.woff2') format('woff2');
  10. }
  11. @font-face {
  12. font-family: 'Modesto Condensed';
  13. font-style: normal;
  14. font-weight: 700;
  15. src: url('../../fonts/modesto-condensed/modesto-condensed-bold.woff2') format('woff2');
  16. }
  17. .modesto {
  18. font-family: "Modesto Condensed", "Palatino Linotype", serif;
  19. font-size: 20px;
  20. font-weight: 700;
  21. }
  22. /* ----------------------------------------- */
  23. /* Sheet Styles */
  24. /* ----------------------------------------- */
  25. /* ----------------------------------------- */
  26. /* Flexbox */
  27. /* ----------------------------------------- */
  28. .flexrow {
  29. display: flex;
  30. flex-direction: row;
  31. flex-wrap: wrap;
  32. justify-content: flex-start;
  33. }
  34. .flexrow > * {
  35. flex: 1;
  36. }
  37. .flexrow .flex1 {
  38. flex: 1;
  39. }
  40. .flexrow .flex2 {
  41. flex: 2;
  42. }
  43. .flexrow .flex3 {
  44. flex: 3;
  45. }
  46. .flexrow .flex4 {
  47. flex: 4;
  48. }
  49. .flexcol {
  50. display: flex;
  51. flex-direction: column;
  52. flex-wrap: nowrap;
  53. }
  54. .flexcol > * {
  55. flex: 1;
  56. }
  57. .flexcol .flex1 {
  58. flex: 1;
  59. }
  60. .flexcol .flex2 {
  61. flex: 2;
  62. }
  63. .flexcol .flex3 {
  64. flex: 3;
  65. }
  66. .flexcol .flex4 {
  67. flex: 4;
  68. }
  69. /* ----------------------------------------- */
  70. /* All DnD5e Apps */
  71. /* ----------------------------------------- */
  72. h5 {
  73. margin-block-start: 1em;
  74. margin-block-end: 0;
  75. font-size: var(--font-size-13);
  76. }
  77. .dnd5e {
  78. /* ----------------------------------------- */
  79. /* Element Styles */
  80. /* ----------------------------------------- */
  81. /* Form Groups */
  82. /* Tags */
  83. }
  84. .dnd5e .window-content {
  85. font-size: 13px;
  86. }
  87. .dnd5e h3 {
  88. border-bottom: none;
  89. }
  90. .dnd5e input[type="text"],
  91. .dnd5e input[type="number"],
  92. .dnd5e select {
  93. height: calc(100% - 2px);
  94. border: 1px solid #7a7971;
  95. background: rgba(0, 0, 0, 0.05);
  96. color: #191813;
  97. }
  98. .dnd5e input[type="text"]:hover,
  99. .dnd5e input[type="number"]:hover,
  100. .dnd5e input[type="checkbox"]:hover,
  101. .dnd5e input[type="text"]:focus,
  102. .dnd5e input[type="number"]:focus,
  103. .dnd5e input[type="checkbox"]:focus {
  104. border: 1px solid #111;
  105. box-shadow: 0 0 8px red;
  106. }
  107. .dnd5e input:disabled,
  108. .dnd5e select:disabled,
  109. .dnd5e textarea:disabled {
  110. color: #4b4a44;
  111. border: 1px solid transparent !important;
  112. outline: none !important;
  113. }
  114. .dnd5e input:disabled:hover,
  115. .dnd5e select:disabled:hover,
  116. .dnd5e textarea:disabled:hover,
  117. .dnd5e input:disabled:focus,
  118. .dnd5e select:disabled:focus,
  119. .dnd5e textarea:disabled:focus {
  120. box-shadow: none !important;
  121. border: 1px solid transparent !important;
  122. outline: none !important;
  123. }
  124. .dnd5e button {
  125. background: rgba(0, 0, 0, 0.1);
  126. border: 2px groove #eeede0;
  127. }
  128. .dnd5e .secret .reveal {
  129. border: 1px dashed var(--color-border-light-primary);
  130. background: rgba(255, 255, 240, 0.8);
  131. }
  132. .dnd5e .locked .secret .reveal {
  133. display: none;
  134. }
  135. .dnd5e .form-group label {
  136. flex: 2;
  137. color: #4b4a44;
  138. font-weight: bold;
  139. }
  140. .dnd5e .form-group .form-fields {
  141. display: flex;
  142. flex-direction: row;
  143. flex-wrap: wrap;
  144. justify-content: flex-start;
  145. }
  146. .dnd5e .form-group .form-fields > * {
  147. flex: 1;
  148. }
  149. .dnd5e .form-group .form-fields .flex1 {
  150. flex: 1;
  151. }
  152. .dnd5e .form-group .form-fields .flex2 {
  153. flex: 2;
  154. }
  155. .dnd5e .form-group .form-fields .flex3 {
  156. flex: 3;
  157. }
  158. .dnd5e .form-group .form-fields .flex4 {
  159. flex: 4;
  160. }
  161. .dnd5e .form-group .form-fields > * {
  162. margin: 0 3px 0 0;
  163. }
  164. .dnd5e .form-group .form-fields > *:last-child {
  165. margin-right: 0;
  166. }
  167. .dnd5e .form-group.stacked > label {
  168. flex: 0 0 100%;
  169. margin: 0;
  170. }
  171. .dnd5e .form-group.stacked label.checkbox,
  172. .dnd5e .form-group.stacked label.radio {
  173. flex: auto;
  174. text-align: left;
  175. }
  176. .dnd5e .form-header {
  177. margin: 0 0 0.25em 0;
  178. padding: 2px 0;
  179. border-top: 2px groove #eeede0;
  180. border-bottom: 2px groove #eeede0;
  181. font-family: "Modesto Condensed", "Palatino Linotype", serif;
  182. font-size: 20px;
  183. font-weight: 700;
  184. }
  185. .dnd5e .tag {
  186. display: inline-block;
  187. margin: 0 2px 0 0;
  188. padding: 0 3px;
  189. font-size: 10px;
  190. line-height: 16px;
  191. border: 1px solid #999;
  192. border-radius: 3px;
  193. background: rgba(0, 0, 0, 0.05);
  194. }
  195. /* ----------------------------------------- */
  196. /* Hit Dice Config Sheet Specifically */
  197. /* ----------------------------------------- */
  198. .dnd5e.hd-config .form-group button.increment,
  199. .dnd5e.hd-config .form-group button.decrement {
  200. flex: 0 0 1rem;
  201. line-height: 1rem;
  202. }
  203. .dnd5e.hd-config .form-group button.decrement {
  204. margin-right: 0;
  205. }
  206. .dnd5e.hd-config .form-group span.sep {
  207. margin: 0;
  208. }
  209. .dnd5e.hd-config .form-group input {
  210. flex: 0 0 2rem;
  211. text-align: center;
  212. margin-left: 2px;
  213. margin-right: 2px;
  214. }
  215. /* ----------------------------------------- */
  216. /* Entity Sheets Specifically */
  217. /* ----------------------------------------- */
  218. .dnd5e.sheet {
  219. /* ----------------------------------------- */
  220. /* Element Styles */
  221. /* ----------------------------------------- */
  222. /* ----------------------------------------- */
  223. /* TinyMCE */
  224. /* ----------------------------------------- */
  225. /* ----------------------------------------- */
  226. /* Notifications */
  227. /* ----------------------------------------- */
  228. /* ----------------------------------------- */
  229. /* Sheet Header */
  230. /* ----------------------------------------- */
  231. /* ----------------------------------------- */
  232. /* Sheet Navigation */
  233. /* ----------------------------------------- */
  234. /* ----------------------------------------- */
  235. /* Sheet Body */
  236. /* ----------------------------------------- */
  237. /* ----------------------------------------- */
  238. /* List Filters */
  239. /* ----------------------------------------- */
  240. /* ----------------------------------------- */
  241. /* Trait Lists */
  242. /* ----------------------------------------- */
  243. }
  244. .dnd5e.sheet .window-content {
  245. overflow-y: hidden;
  246. padding: 5px;
  247. background: url("ui/parchment.jpg") repeat;
  248. font-size: 13px;
  249. color: #191813;
  250. }
  251. .dnd5e.sheet .window-content form {
  252. height: 100%;
  253. overflow: hidden;
  254. }
  255. .dnd5e.sheet .window-content .tab {
  256. height: 100%;
  257. overflow-y: auto;
  258. align-content: flex-start;
  259. }
  260. .dnd5e.sheet input[type="text"],
  261. .dnd5e.sheet input[type="number"] {
  262. background: none;
  263. border: 1px solid transparent;
  264. }
  265. .dnd5e.sheet input[type="text"]:hover,
  266. .dnd5e.sheet input[type="number"]:hover,
  267. .dnd5e.sheet input[type="text"]:focus,
  268. .dnd5e.sheet input[type="number"]:focus {
  269. border: 1px solid #111;
  270. }
  271. .dnd5e.sheet select {
  272. flex: 1;
  273. font-size: 12px;
  274. height: 22px;
  275. background: transparent;
  276. }
  277. .dnd5e.sheet .editable .rollable:hover {
  278. cursor: pointer;
  279. }
  280. .dnd5e.sheet .editable h4.rollable:hover,
  281. .dnd5e.sheet .editable .rollable:hover > h4 {
  282. color: #000;
  283. text-shadow: 0 0 10px red;
  284. }
  285. .dnd5e.sheet span.sep {
  286. flex: none;
  287. margin: 0 1px;
  288. display: inline;
  289. position: relative;
  290. color: #7a7971;
  291. font-weight: normal;
  292. }
  293. .dnd5e.sheet .editor {
  294. height: 100%;
  295. }
  296. .dnd5e.sheet .editor .tox-toolbar-overlord,
  297. .dnd5e.sheet .editor .tox-toolbar__primary {
  298. background: none;
  299. }
  300. .dnd5e.sheet .warnings,
  301. .dnd5e.sheet .info {
  302. flex: 0 0 100%;
  303. margin: 0;
  304. padding: 0;
  305. list-style: none;
  306. }
  307. .dnd5e.sheet .warnings .notification,
  308. .dnd5e.sheet .info .notification {
  309. font-family: 'Signika', sans-serif;
  310. font-weight: normal;
  311. font-size: 13px;
  312. box-shadow: none;
  313. padding: 2px 8px;
  314. margin-bottom: 2px;
  315. }
  316. .dnd5e.sheet .warnings .warning,
  317. .dnd5e.sheet .info .warning,
  318. .dnd5e.sheet .warnings .error,
  319. .dnd5e.sheet .info .error {
  320. text-shadow: black 0 0 1px, rgba(0, 0, 0, 0.75) 0 0 2px, rgba(0, 0, 0, 0.5) 0 0 4px;
  321. }
  322. .dnd5e.sheet .sheet-header {
  323. flex: 0 0 100px;
  324. border-bottom: 2px groove #eeede0;
  325. /* Character Name */
  326. /* Profile Image */
  327. /* Header Summary Details */
  328. }
  329. .dnd5e.sheet .sheet-header .header-details {
  330. font-family: "Modesto Condensed", "Palatino Linotype", serif;
  331. font-size: 20px;
  332. font-weight: 700;
  333. }
  334. .dnd5e.sheet .sheet-header .header-details .summary select {
  335. width: 100%;
  336. height: 100%;
  337. border: 0;
  338. font-family: "Modesto Condensed", "Palatino Linotype", serif;
  339. font-size: 20px;
  340. font-weight: 700;
  341. text-transform: capitalize;
  342. font-weight: 100;
  343. }
  344. .dnd5e.sheet .sheet-header h1 {
  345. flex: 1;
  346. border-bottom: none;
  347. height: 60px;
  348. margin: 0;
  349. padding: 5px;
  350. }
  351. .dnd5e.sheet .sheet-header h1 input {
  352. display: block;
  353. height: 50px;
  354. font-size: 32px;
  355. margin: 0;
  356. }
  357. .dnd5e.sheet .sheet-header img.profile {
  358. flex: 0 0 100px;
  359. max-width: 100px;
  360. height: 100px;
  361. object-fit: contain;
  362. border: none;
  363. border-right: 2px groove #eeede0;
  364. }
  365. .dnd5e.sheet .sheet-header .summary {
  366. flex: 0 0 100%;
  367. height: 40px;
  368. margin: 0;
  369. padding: 0;
  370. list-style: none;
  371. border-top: 2px groove #eeede0;
  372. border-bottom: none;
  373. }
  374. .dnd5e.sheet .sheet-header .summary li {
  375. height: calc(100% - 6px);
  376. float: left;
  377. margin: 2px 0;
  378. padding: 0;
  379. border-right: 2px groove #eeede0;
  380. line-height: 34px;
  381. color: #4b4a44;
  382. }
  383. .dnd5e.sheet .sheet-header .summary li:last-child {
  384. border-right: none;
  385. }
  386. .dnd5e.sheet .sheet-navigation {
  387. flex: 0 0 30px;
  388. margin-bottom: 5px;
  389. font-family: "Modesto Condensed", "Palatino Linotype", serif;
  390. font-size: 20px;
  391. font-weight: 700;
  392. }
  393. .dnd5e.sheet .sheet-navigation .item {
  394. height: 30px;
  395. line-height: 32px;
  396. margin: 0 24px;
  397. border-bottom: 3px solid #b5b3a4;
  398. }
  399. .dnd5e.sheet .sheet-navigation .item.active {
  400. border-bottom: 3px solid #44191A;
  401. }
  402. .dnd5e.sheet .sheet-body {
  403. flex: 1;
  404. overflow: hidden;
  405. }
  406. .dnd5e.sheet .filter-list {
  407. align-items: center;
  408. list-style: none;
  409. margin: 0;
  410. padding: 0;
  411. line-height: 16px;
  412. max-width: 70%;
  413. }
  414. .dnd5e.sheet .filter-list .filter-icon {
  415. flex: none;
  416. font-size: 14px;
  417. color: #7a7971;
  418. }
  419. .dnd5e.sheet .filter-list .filter-item {
  420. text-align: center;
  421. font-size: 12px;
  422. margin: 0 6px 0 0;
  423. border-bottom: 3px solid #b5b3a4;
  424. white-space: nowrap;
  425. }
  426. .dnd5e.sheet .filter-list .filter-item:last-child {
  427. margin: 0;
  428. }
  429. .dnd5e.sheet .filter-list .filter-item:hover {
  430. text-shadow: 0 0 4px red;
  431. border-bottom: 3px solid #7a7971;
  432. }
  433. .dnd5e.sheet .filter-list .filter-item.active {
  434. border-bottom: 3px solid #44191A;
  435. }
  436. .dnd5e.sheet .traits {
  437. margin: 5px 0 0;
  438. }
  439. .dnd5e.sheet .traits .traits-list {
  440. flex: 0 0 100%;
  441. line-height: 20px;
  442. list-style: none;
  443. margin: 0;
  444. padding: 0;
  445. }
  446. .dnd5e.sheet .trait-selector,
  447. .dnd5e.sheet .proficiency-selector {
  448. flex: 0 0 16px;
  449. padding: 2px 0;
  450. color: #999;
  451. font-size: 10px;
  452. }
  453. /* ----------------------------------------- */
  454. /* Items Lists */
  455. /* ----------------------------------------- */
  456. .dnd5e {
  457. /* ----------------------------------------- */
  458. /* Active Effects */
  459. /* ----------------------------------------- */
  460. }
  461. .dnd5e .items-list {
  462. list-style: none;
  463. margin: 0;
  464. padding: 0;
  465. overflow-y: auto;
  466. scrollbar-width: thin;
  467. color: #7a7971;
  468. }
  469. .dnd5e .items-list .item-list {
  470. list-style: none;
  471. margin: 0;
  472. padding: 0;
  473. }
  474. .dnd5e .items-list .item-name {
  475. flex: 2;
  476. margin: 0;
  477. overflow: hidden;
  478. font-size: 13px;
  479. text-align: left;
  480. align-items: center;
  481. }
  482. .dnd5e .items-list .item-name h3,
  483. .dnd5e .items-list .item-name h4 {
  484. margin: 0;
  485. white-space: nowrap;
  486. overflow-x: hidden;
  487. }
  488. .dnd5e .items-list .item-controls {
  489. flex: 0 0 60px;
  490. justify-content: space-between;
  491. }
  492. .dnd5e .items-list .item-controls a {
  493. font-size: 12px;
  494. text-align: center;
  495. }
  496. .dnd5e .items-list .item {
  497. align-items: center;
  498. padding: 0 2px;
  499. border-bottom: 1px solid #c9c7b8;
  500. }
  501. .dnd5e .items-list .item:last-child {
  502. border-bottom: none;
  503. }
  504. .dnd5e .items-list .item .item-name {
  505. color: #191813;
  506. }
  507. .dnd5e .items-list .item .item-name .item-image {
  508. flex: 0 0 30px;
  509. height: 30px;
  510. background-size: cover;
  511. background-position: 50% 0;
  512. border: none;
  513. margin-right: 5px;
  514. }
  515. .dnd5e .items-list .items-header {
  516. height: 28px;
  517. margin: 2px 0;
  518. padding: 0;
  519. align-items: center;
  520. background: rgba(0, 0, 0, 0.05);
  521. border: 2px groove #eeede0;
  522. font-weight: bold;
  523. }
  524. .dnd5e .items-list .items-header > * {
  525. font-size: 12px;
  526. text-align: center;
  527. }
  528. .dnd5e .items-list .items-header h3 {
  529. padding-left: 5px;
  530. font-family: "Modesto Condensed", "Palatino Linotype", serif;
  531. font-size: 20px;
  532. font-weight: 700;
  533. text-align: left;
  534. font-size: 16px;
  535. }
  536. .dnd5e .effects .item .effect-source,
  537. .dnd5e .effects .item .effect-duration,
  538. .dnd5e .effects .item .effect-controls {
  539. text-align: center;
  540. border-left: 1px solid #c9c7b8;
  541. border-right: 1px solid #c9c7b8;
  542. font-size: 12px;
  543. }
  544. .dnd5e .effects .item .effect-controls {
  545. border: none;
  546. }
  547. /* ----------------------------------------- */
  548. /* Trait Selector
  549. /* ----------------------------------------- */
  550. .trait-selector .trait-list {
  551. list-style: none;
  552. margin: 0;
  553. padding: 0;
  554. }
  555. .trait-selector .trait-list li ol.trait-list {
  556. margin-left: 1.5em;
  557. }
  558. .trait-selector input[type="text"] {
  559. height: 24px;
  560. margin: 2px;
  561. }
  562. /* ----------------------------------------- */
  563. /* Property Attribution */
  564. /* ----------------------------------------- */
  565. #tooltip.property-attribution {
  566. min-width: 150px;
  567. padding: 3px;
  568. background-color: rgba(0, 0, 0, 0.8);
  569. backdrop-filter: blur(4px);
  570. text-align: left !important;
  571. }
  572. #tooltip.property-attribution table {
  573. margin: 0;
  574. border: 0;
  575. font-size: var(--font-size-14);
  576. }
  577. #tooltip.property-attribution table caption {
  578. padding-block: 0.25em 0.5em;
  579. font-size: var(--font-size-16);
  580. }
  581. #tooltip.property-attribution table tr {
  582. background-color: inherit;
  583. }
  584. #tooltip.property-attribution table td {
  585. padding: 3px;
  586. }
  587. #tooltip.property-attribution table tr.total > td {
  588. font-weight: 600;
  589. padding-top: 5px;
  590. border-top: 1px solid #7a7971;
  591. }
  592. #tooltip.property-attribution table td.attribution-value {
  593. width: 20%;
  594. padding-right: 5px;
  595. text-align: right;
  596. font-weight: 600;
  597. }
  598. #tooltip.property-attribution table td::before {
  599. opacity: 0.6;
  600. }
  601. #tooltip.property-attribution table td.mode-1::before {
  602. content: "×";
  603. }
  604. #tooltip.property-attribution table td.mode-2::before {
  605. content: "+";
  606. }
  607. #tooltip.property-attribution table td.mode-2.negative::before {
  608. content: "−";
  609. margin-right: -1px;
  610. }
  611. #tooltip.property-attribution table td.mode-3::before {
  612. content: "↓";
  613. }
  614. #tooltip.property-attribution table td.mode-4::before {
  615. content: "↑";
  616. }
  617. /* ----------------------------------------- */
  618. /* Actor Type Config Sheet Specifically */
  619. /* ----------------------------------------- */
  620. .actor-type .trait-list {
  621. display: flex;
  622. flex-wrap: wrap;
  623. }
  624. .actor-type .trait-list li {
  625. flex-basis: 50%;
  626. flex-grow: 1;
  627. }
  628. .actor-type .trait-list li.form-group {
  629. flex-basis: 100%;
  630. }
  631. .actor-type label.radio {
  632. display: flex;
  633. flex: auto;
  634. font-size: 12px;
  635. line-height: 20px;
  636. font-weight: normal;
  637. }
  638. .actor-type label.radio > input[type="radio"] {
  639. margin: 0 5px 0 0;
  640. }
  641. .actor-type li.custom-type input[type="radio"] {
  642. display: none;
  643. }
  644. /* ----------------------------------------- */
  645. /* Armor Config Sheet Specifically */
  646. /* ----------------------------------------- */
  647. .dnd5e.actor-armor-config .ac-field input,
  648. .dnd5e.actor-hit-points-config .ac-field input,
  649. .dnd5e.actor-armor-config .hp-field input,
  650. .dnd5e.actor-hit-points-config .hp-field input {
  651. font-size: 3em;
  652. text-align: center;
  653. }
  654. /* ----------------------------------------- */
  655. /* Add Feature Prompt Specifically */
  656. /* ----------------------------------------- */
  657. .dnd5e.select-items-prompt .dialog-content {
  658. margin-bottom: 1em;
  659. }
  660. .dnd5e.select-items-prompt .items-list {
  661. margin-top: 0.5em;
  662. }
  663. .dnd5e.select-items-prompt .item-name > label,
  664. .dnd5e.select-items-prompt .item-image,
  665. .dnd5e.select-items-prompt input {
  666. cursor: pointer;
  667. }
  668. .dnd5e.select-items-prompt .item-name > label {
  669. align-items: center;
  670. }
  671. .dnd5e.select-items-prompt .window-content {
  672. max-height: 90vh;
  673. overflow-y: auto;
  674. }
  675. /* ----------------------------------------- */
  676. /* Polymorph Features */
  677. /* ----------------------------------------- */
  678. .polymorph {
  679. /* ----------------------------------------- */
  680. /* Two Column Configurations */
  681. /* ----------------------------------------- */
  682. }
  683. .polymorph.two-column {
  684. display: grid;
  685. grid-template-columns: 45% 55%;
  686. grid-gap: 0.4em;
  687. }
  688. /* ----------------------------------------- */
  689. /* Module Art Configuration */
  690. /* ----------------------------------------- */
  691. #module-art-config .form-group-stacked {
  692. flex-wrap: nowrap;
  693. justify-content: space-between;
  694. }
  695. #module-art-config .form-group-stacked > label {
  696. flex: 1 0 auto;
  697. }
  698. #module-art-config .form-group-stacked > .form-fields {
  699. flex: 0 0 auto;
  700. display: flex;
  701. gap: 0.5rem;
  702. }
  703. #module-art-config .form-group-stacked > .form-fields label {
  704. display: flex;
  705. align-items: center;
  706. }
  707. #module-art-config .form-group-stacked > .form-fields input {
  708. width: 16px;
  709. height: 16px;
  710. }
  711. .dnd5e.sheet.actor {
  712. /* ----------------------------------------- */
  713. /* Shared Styles */
  714. /* ----------------------------------------- */
  715. /* ----------------------------------------- */
  716. /* Sheet Header */
  717. /* ----------------------------------------- */
  718. /* ----------------------------------------- */
  719. /* General Styles */
  720. /* ----------------------------------------- */
  721. /* ----------------------------------------- */
  722. /* Attributes */
  723. /* ----------------------------------------- */
  724. /* ----------------------------------------- */
  725. /* Ability Scores */
  726. /* ----------------------------------------- */
  727. /* ----------------------------------------- */
  728. /* Skills */
  729. /* ----------------------------------------- */
  730. /* ----------------------------------------- */
  731. /* Tools */
  732. /* ----------------------------------------- */
  733. /* ----------------------------------------- */
  734. /* Statuses */
  735. /* ----------------------------------------- */
  736. /* ----------------------------------------- */
  737. /* Traits */
  738. /* ----------------------------------------- */
  739. /* ----------------------------------------- */
  740. /* Inventory Lists */
  741. /* ----------------------------------------- */
  742. /* Inventory List Filters */
  743. /* Encumbrance Bar */
  744. /* ----------------------------------------- */
  745. /* Spellbook */
  746. /* ----------------------------------------- */
  747. /* ----------------------------------------- */
  748. /* Features Tab */
  749. /* ----------------------------------------- */
  750. /* ----------------------------------------- */
  751. /* TinyMCE */
  752. /* ----------------------------------------- */
  753. }
  754. .dnd5e.sheet.actor .config-button {
  755. color: #4b4a44;
  756. font-size: 10px;
  757. font-weight: normal;
  758. }
  759. .dnd5e.sheet.actor .sheet-header img.profile {
  760. flex: 0 0 160px;
  761. max-width: 160px;
  762. height: 160px;
  763. }
  764. .dnd5e.sheet.actor .sheet-header h1.charname {
  765. flex: 1;
  766. height: 60px;
  767. padding: 0;
  768. }
  769. .dnd5e.sheet.actor .sheet-header h1.charname input {
  770. height: 40px;
  771. margin: 10px 0;
  772. }
  773. .dnd5e.sheet.actor .sheet-header .header-exp {
  774. flex: 0 0 150px;
  775. max-width: 18em;
  776. margin-right: 3px;
  777. height: 60px;
  778. justify-content: flex-end;
  779. text-align: right;
  780. }
  781. .dnd5e.sheet.actor .sheet-header .summary {
  782. height: 30px;
  783. border-bottom: 2px groove #eeede0;
  784. font-size: 18px;
  785. }
  786. .dnd5e.sheet.actor .sheet-header .summary input,
  787. .dnd5e.sheet.actor .sheet-header .summary span {
  788. display: block;
  789. height: 24px;
  790. line-height: 24px;
  791. }
  792. .dnd5e.sheet.actor .sheet-header .summary span {
  793. margin-inline: 4px;
  794. border-block-start: 1px solid transparent;
  795. white-space: nowrap;
  796. }
  797. .dnd5e.sheet.actor .sheet-header .summary select {
  798. position: relative;
  799. top: -4px;
  800. }
  801. .dnd5e.sheet.actor .sheet-header .attributes {
  802. flex: 0 0 100%;
  803. margin: 0;
  804. }
  805. .dnd5e.sheet.actor .sheet-header .attributes .attribute {
  806. position: relative;
  807. height: 70px;
  808. margin: 0;
  809. border: none;
  810. border-right: 2px groove #eeede0;
  811. border-radius: 0;
  812. }
  813. .dnd5e.sheet.actor .sheet-header .attributes .attribute:last-child {
  814. border-right: none;
  815. }
  816. .dnd5e.sheet.actor .sheet-header .attributes .attribute .attribute-name {
  817. position: relative;
  818. }
  819. .dnd5e.sheet.actor .sheet-header .attributes .attribute .attribute-value {
  820. height: 30px;
  821. line-height: 30px;
  822. }
  823. .dnd5e.sheet.actor .sheet-header .attributes .attribute .config-button {
  824. position: absolute;
  825. padding: 4px;
  826. right: 0;
  827. top: 0;
  828. display: none;
  829. }
  830. .dnd5e.sheet.actor .sheet-header .attributes .attribute:hover .config-button {
  831. display: block;
  832. }
  833. .dnd5e.sheet.actor .sheet-header .attributes .attribute input.temphp {
  834. width: 48%;
  835. }
  836. .dnd5e.sheet.actor h4.box-title {
  837. height: 18px;
  838. line-height: 16px;
  839. margin: 4px 8px 2px;
  840. font-family: "Modesto Condensed", "Palatino Linotype", serif;
  841. font-size: 20px;
  842. font-weight: 700;
  843. font-size: 18px;
  844. color: #4b4a44;
  845. border-bottom: 1px solid #c9c7b8;
  846. white-space: nowrap;
  847. }
  848. .dnd5e.sheet.actor .tab.attributes {
  849. overflow: hidden;
  850. align-items: flex-start;
  851. }
  852. .dnd5e.sheet.actor ul.attributes {
  853. flex: 0 0 60px;
  854. list-style: none;
  855. margin: 0;
  856. padding: 0;
  857. }
  858. .dnd5e.sheet.actor ul.attributes li.attribute {
  859. height: 60px;
  860. margin: 0 5px 0 0;
  861. border: 2px groove #eeede0;
  862. border-radius: 4px;
  863. text-align: center;
  864. }
  865. .dnd5e.sheet.actor ul.attributes li.attribute:last-child {
  866. margin: 0;
  867. }
  868. .dnd5e.sheet.actor ul.attributes li.attribute .attribute-value {
  869. display: flex;
  870. justify-content: center;
  871. align-items: center;
  872. height: 28px;
  873. line-height: 28px;
  874. font-family: "Modesto Condensed", "Palatino Linotype", serif;
  875. font-size: 20px;
  876. font-weight: 700;
  877. }
  878. .dnd5e.sheet.actor ul.attributes li.attribute .attribute-value > * {
  879. font-weight: 400;
  880. font-size: 24px;
  881. }
  882. .dnd5e.sheet.actor ul.attributes li.attribute .attribute-value.multiple input,
  883. .dnd5e.sheet.actor ul.attributes li.attribute .attribute-value.multiple span:not(.sep) {
  884. flex: 0 0 33%;
  885. }
  886. .dnd5e.sheet.actor ul.attributes li.attribute .attribute-footer {
  887. flex: 0 0 18px;
  888. margin-top: -1px;
  889. line-height: 18px;
  890. font-family: "Signika", sans-serif;
  891. font-size: 12px;
  892. font-weight: 400;
  893. white-space: nowrap;
  894. }
  895. .dnd5e.sheet.actor .ability-scores {
  896. flex: 0 0 100px;
  897. align-content: flex-start;
  898. list-style: none;
  899. margin: 0;
  900. padding: 0;
  901. font-family: "Modesto Condensed", "Palatino Linotype", serif;
  902. font-size: 20px;
  903. font-weight: 700;
  904. border: 2px groove #eeede0;
  905. border-radius: 3px;
  906. }
  907. .dnd5e.sheet.actor .ability-scores .ability {
  908. height: 70px;
  909. text-align: center;
  910. border-bottom: 2px groove #eeede0;
  911. position: relative;
  912. }
  913. .dnd5e.sheet.actor .ability-scores .ability:last-child {
  914. border-bottom: none;
  915. margin-bottom: -3px;
  916. }
  917. .dnd5e.sheet.actor .ability-scores .ability input.ability-score {
  918. height: 30px;
  919. width: 36px;
  920. margin: 0 auto;
  921. line-height: 32px;
  922. font-size: 24px;
  923. }
  924. .dnd5e.sheet.actor .ability-scores .ability .config-button {
  925. right: 2px;
  926. top: 3px;
  927. position: absolute;
  928. display: none;
  929. }
  930. .dnd5e.sheet.actor .ability-scores .ability:hover .config-button {
  931. display: block;
  932. }
  933. .dnd5e.sheet.actor .ability-scores .ability .ability-modifiers {
  934. height: 24px;
  935. margin: -8px 0 0;
  936. }
  937. .dnd5e.sheet.actor .ability-scores .ability .ability-modifiers span.ability-mod,
  938. .dnd5e.sheet.actor .ability-scores .ability .ability-modifiers span.ability-save {
  939. flex: 0 0 24px;
  940. height: 22px;
  941. line-height: 22px;
  942. font-size: 16px;
  943. border-top: 2px groove #eeede0;
  944. }
  945. .dnd5e.sheet.actor .ability-scores .ability .ability-modifiers span.ability-mod {
  946. border-right: 2px groove #eeede0;
  947. }
  948. .dnd5e.sheet.actor .ability-scores .ability .ability-modifiers .ability-proficiency {
  949. line-height: 30px;
  950. }
  951. .dnd5e.sheet.actor .ability-scores .ability .ability-modifiers span.ability-save {
  952. border-left: 2px groove #eeede0;
  953. }
  954. .dnd5e.sheet.actor .proficiency-toggle {
  955. color: #b5b3a4;
  956. font-size: 12px;
  957. }
  958. .dnd5e.sheet.actor .proficiency-toggle.disabled {
  959. cursor: default;
  960. text-shadow: none;
  961. }
  962. .dnd5e.sheet.actor .proficient .proficiency-toggle {
  963. color: #4b4a44;
  964. }
  965. .dnd5e.sheet.actor .locked .proficiency-toggle {
  966. color: #b5b3a4;
  967. text-shadow: none;
  968. cursor: default;
  969. }
  970. .dnd5e.sheet.actor ul.skills-list {
  971. flex: 0 0 180px;
  972. list-style: none;
  973. margin: 0 5px 0;
  974. padding: 0;
  975. border: 2px groove #eeede0;
  976. border-radius: 3px;
  977. }
  978. .dnd5e.sheet.actor ul.skills-list li.skill {
  979. height: 24px;
  980. padding: 3px 2px;
  981. }
  982. .dnd5e.sheet.actor ul.skills-list li.skill:nth-child(even) {
  983. background: rgba(0, 0, 0, 0.05);
  984. }
  985. .dnd5e.sheet.actor ul.skills-list li.skill h4 {
  986. flex: 1px;
  987. margin: 0;
  988. font-size: 11px;
  989. line-height: 18px;
  990. }
  991. .dnd5e.sheet.actor ul.skills-list li.skill .skill-proficiency {
  992. flex: 0 0 16px;
  993. line-height: 18px;
  994. }
  995. .dnd5e.sheet.actor ul.skills-list li.skill .skill-name-controls {
  996. position: relative;
  997. }
  998. .dnd5e.sheet.actor ul.skills-list li.skill .skill-name-controls .config-button {
  999. right: 3px;
  1000. top: 4px;
  1001. position: absolute;
  1002. display: none;
  1003. }
  1004. .dnd5e.sheet.actor ul.skills-list li.skill .skill-name-controls:hover .config-button {
  1005. display: block;
  1006. }
  1007. .dnd5e.sheet.actor ul.skills-list li.skill .skill-ability {
  1008. flex: 0 0 26px;
  1009. text-transform: capitalize;
  1010. }
  1011. .dnd5e.sheet.actor ul.skills-list li.skill .skill-mod {
  1012. flex: 0 0 20px;
  1013. }
  1014. .dnd5e.sheet.actor ul.skills-list li.skill .skill-passive {
  1015. flex: 0 0 26px;
  1016. text-align: center;
  1017. color: #7a7971;
  1018. }
  1019. .dnd5e.sheet.actor .tag.tool {
  1020. display: inline-flex;
  1021. align-items: center;
  1022. gap: 4px;
  1023. padding: 1px 4px;
  1024. }
  1025. .dnd5e.sheet.actor .tag.tool a:is(.proficiency-toggle, .config-button) {
  1026. display: flex;
  1027. align-items: center;
  1028. justify-content: center;
  1029. width: 13px;
  1030. height: 13px;
  1031. }
  1032. .dnd5e.sheet.actor .tag.tool a:is(.proficiency-toggle, .config-button) > i {
  1033. margin: 0;
  1034. }
  1035. .dnd5e.sheet.actor .tag.tool h4 {
  1036. margin: 0;
  1037. }
  1038. .dnd5e.sheet.actor .counters {
  1039. flex: none;
  1040. padding: 5px 0;
  1041. margin: 0;
  1042. border-bottom: 2px groove #eeede0;
  1043. }
  1044. .dnd5e.sheet.actor .counters .counter {
  1045. height: 20px;
  1046. line-height: 20px;
  1047. }
  1048. .dnd5e.sheet.actor .counters .counter h4 {
  1049. flex: auto;
  1050. margin: 0;
  1051. font-size: 13px;
  1052. font-weight: bold;
  1053. color: #4b4a44;
  1054. }
  1055. .dnd5e.sheet.actor .counters .counter .counter-value {
  1056. flex: none;
  1057. text-align: right;
  1058. }
  1059. .dnd5e.sheet.actor .counters .counter .counter-value > * {
  1060. display: inline;
  1061. }
  1062. .dnd5e.sheet.actor .counters .counter input[type="text"],
  1063. .dnd5e.sheet.actor .counters .counter input[type="number"] {
  1064. height: 20px;
  1065. max-width: 20px;
  1066. margin: 0;
  1067. padding: 0;
  1068. text-align: center;
  1069. }
  1070. .dnd5e.sheet.actor .counters .counter input[type="checkbox"] {
  1071. position: relative;
  1072. width: 16px;
  1073. height: 16px;
  1074. margin: 0;
  1075. top: 4px;
  1076. }
  1077. .dnd5e.sheet.actor .counters .counter span.sep {
  1078. font-size: 12px;
  1079. }
  1080. .dnd5e.sheet.actor .center-pane {
  1081. height: 100%;
  1082. padding: 0 5px 0 3px;
  1083. overflow-y: auto;
  1084. scrollbar-width: thin;
  1085. }
  1086. .dnd5e.sheet.actor .traits .form-group,
  1087. .dnd5e.sheet.actor .traits .form-group-stacked {
  1088. margin: 0 0 3px 0;
  1089. justify-content: space-between;
  1090. }
  1091. .dnd5e.sheet.actor .traits .config-button {
  1092. flex: 1;
  1093. }
  1094. .dnd5e.sheet.actor .traits label {
  1095. flex: none;
  1096. line-height: 20px;
  1097. font-weight: bold;
  1098. margin: 0 10px 0 0;
  1099. }
  1100. .dnd5e.sheet.actor .traits select {
  1101. max-width: 200px;
  1102. }
  1103. .dnd5e.sheet.actor .traits input {
  1104. text-align: right;
  1105. }
  1106. .dnd5e.sheet.actor .traits i.fas {
  1107. float: right;
  1108. margin-right: 3px;
  1109. text-align: right;
  1110. color: #999;
  1111. }
  1112. .dnd5e.sheet.actor .traits i.fas:hover {
  1113. color: #111;
  1114. text-shadow: 0 0 10px red;
  1115. }
  1116. .dnd5e.sheet.actor .traits .inactive {
  1117. color: #7a7971;
  1118. }
  1119. .dnd5e.sheet.actor .tab.features,
  1120. .dnd5e.sheet.actor .tab.inventory,
  1121. .dnd5e.sheet.actor .tab.spellbook {
  1122. overflow-y: hidden;
  1123. }
  1124. .dnd5e.sheet.actor .inventory-filters {
  1125. margin: 0 8px;
  1126. flex: 0 0 20px;
  1127. justify-content: flex-end;
  1128. }
  1129. .dnd5e.sheet.actor .inventory-filters .attunement {
  1130. color: #7a7971;
  1131. font-size: 12px;
  1132. }
  1133. .dnd5e.sheet.actor .inventory-filters .attunement [name="system.attributes.attunement.max"] {
  1134. display: inline;
  1135. max-width: 23px;
  1136. text-align: center;
  1137. }
  1138. .dnd5e.sheet.actor .inventory-filters .currency {
  1139. flex: 0 0 100%;
  1140. list-style: none;
  1141. margin: 4px 0 8px;
  1142. padding: 0;
  1143. font-size: 12px;
  1144. }
  1145. .dnd5e.sheet.actor .inventory-filters .currency label {
  1146. flex: 0;
  1147. margin-left: 8px;
  1148. text-align: right;
  1149. line-height: 20px;
  1150. color: #7a7971;
  1151. }
  1152. .dnd5e.sheet.actor .inventory-filters .currency input[type="text"],
  1153. .dnd5e.sheet.actor .inventory-filters .currency input[type="number"] {
  1154. flex: 0 0 48px;
  1155. text-align: center;
  1156. margin-left: 8px;
  1157. border-bottom: 2px groove #eeede0;
  1158. }
  1159. .dnd5e.sheet.actor .inventory-list {
  1160. padding: 0 5px;
  1161. }
  1162. .dnd5e.sheet.actor .inventory-list .item .item-name {
  1163. cursor: pointer;
  1164. }
  1165. .dnd5e.sheet.actor .inventory-list .item .item-name.rollable:hover .item-image {
  1166. background-image: url("../../icons/svg/d20-grey.svg") !important;
  1167. }
  1168. .dnd5e.sheet.actor .inventory-list .item .item-name.rollable .item-image:hover {
  1169. background-image: url("../../icons/svg/d20-black.svg") !important;
  1170. }
  1171. .dnd5e.sheet.actor .inventory-list .item .item-name i.attuned {
  1172. color: #44191A;
  1173. }
  1174. .dnd5e.sheet.actor .inventory-list .item .item-name i.not-attuned {
  1175. color: #7a7971;
  1176. }
  1177. .dnd5e.sheet.actor .inventory-list .item .item-name h4 {
  1178. line-height: 30px;
  1179. }
  1180. .dnd5e.sheet.actor .inventory-list .item .item-uses input {
  1181. width: 24px;
  1182. text-align: center;
  1183. }
  1184. .dnd5e.sheet.actor .inventory-list .item .item-properties {
  1185. margin-top: 3px;
  1186. }
  1187. .dnd5e.sheet.actor .inventory-list .item .item-recharge {
  1188. flex: 0 0 80px;
  1189. text-align: right;
  1190. font-size: 11px;
  1191. white-space: nowrap;
  1192. }
  1193. .dnd5e.sheet.actor .inventory-list .inventory-header .item-controls a.item-create {
  1194. flex: 0 0 100%;
  1195. }
  1196. .dnd5e.sheet.actor .inventory-list .item-detail {
  1197. flex: 0 0 70px;
  1198. font-size: 12px;
  1199. text-align: center;
  1200. border-right: 1px solid #c9c7b8;
  1201. word-break: break-word;
  1202. white-space: nowrap;
  1203. overflow: hidden;
  1204. }
  1205. .dnd5e.sheet.actor .inventory-list .item-detail:last-child {
  1206. border-right: none;
  1207. }
  1208. .dnd5e.sheet.actor .inventory-list .item-detail.item-action {
  1209. flex: 0 0 100px;
  1210. }
  1211. .dnd5e.sheet.actor .inventory-list .item-detail.item-quantity {
  1212. flex: 0 0 40px;
  1213. }
  1214. .dnd5e.sheet.actor .inventory-list .item-detail.attunement {
  1215. flex: 0 0 24px;
  1216. }
  1217. .dnd5e.sheet.actor .inventory-list .item-weight {
  1218. flex: 0 0 60px;
  1219. border-left: 1px solid #c9c7b8;
  1220. border-right: 1px solid #c9c7b8;
  1221. }
  1222. .dnd5e.sheet.actor .inventory-list .item-controls {
  1223. flex: 0 0 44px;
  1224. }
  1225. .dnd5e.sheet.actor .inventory-list .item-summary {
  1226. flex: 0 0 100%;
  1227. font-size: 12px;
  1228. line-height: 16px;
  1229. padding: 0.25em 0.5em;
  1230. color: #191813;
  1231. border-top: 1px solid #c9c7b8;
  1232. }
  1233. .dnd5e.sheet.actor .encumbrance {
  1234. flex: 0 0 12px;
  1235. background: #7a7971;
  1236. margin: 1px 15px 0 1px;
  1237. border: 1px solid #191813;
  1238. border-radius: 3px;
  1239. position: relative;
  1240. }
  1241. .dnd5e.sheet.actor .encumbrance .encumbrance-bar {
  1242. position: absolute;
  1243. top: 1px;
  1244. left: 1px;
  1245. background: #6c8aa5;
  1246. height: 8px;
  1247. border: 1px solid #cde4ff;
  1248. border-radius: 2px;
  1249. }
  1250. .dnd5e.sheet.actor .encumbrance .encumbrance-label {
  1251. height: 10px;
  1252. padding: 0 5px;
  1253. position: absolute;
  1254. top: 0;
  1255. right: 0;
  1256. font-size: 13px;
  1257. line-height: 12px;
  1258. text-align: right;
  1259. color: #EEE;
  1260. text-shadow: 0 0 5px #000;
  1261. }
  1262. .dnd5e.sheet.actor .encumbrance .encumbrance-breakpoint {
  1263. display: block;
  1264. position: absolute;
  1265. }
  1266. .dnd5e.sheet.actor .encumbrance .encumbrance-breakpoint.encumbrance-33 {
  1267. left: 33%;
  1268. }
  1269. .dnd5e.sheet.actor .encumbrance .encumbrance-breakpoint.encumbrance-66 {
  1270. left: 66%;
  1271. }
  1272. .dnd5e.sheet.actor .encumbrance .arrow-up {
  1273. bottom: 0;
  1274. width: 0;
  1275. height: 0;
  1276. border-left: 4px solid transparent;
  1277. border-right: 4px solid transparent;
  1278. border-bottom: 4px solid #666;
  1279. }
  1280. .dnd5e.sheet.actor .encumbrance .arrow-down {
  1281. top: 0;
  1282. width: 0;
  1283. height: 0;
  1284. border-left: 4px solid transparent;
  1285. border-right: 4px solid transparent;
  1286. border-top: 4px solid #666;
  1287. }
  1288. .dnd5e.sheet.actor .encumbrance.encumbered .arrow-up {
  1289. border-bottom: 4px solid #000;
  1290. }
  1291. .dnd5e.sheet.actor .encumbrance.encumbered .arrow-down {
  1292. border-top: 4px solid #000;
  1293. }
  1294. .dnd5e.sheet.actor .spellcasting-ability {
  1295. flex: 0 0 240px;
  1296. margin: 0;
  1297. }
  1298. .dnd5e.sheet.actor .spellcasting-ability label,
  1299. .dnd5e.sheet.actor .spellcasting-ability span {
  1300. flex: none;
  1301. }
  1302. .dnd5e.sheet.actor .spellcasting-ability input {
  1303. flex: 0 0 28px;
  1304. text-align: center;
  1305. }
  1306. .dnd5e.sheet.actor .spellcasting-ability select {
  1307. margin: 0 5px;
  1308. flex: 0 0 120px;
  1309. }
  1310. .dnd5e.sheet.actor .spell-slots,
  1311. .dnd5e.sheet.actor .spell-comps {
  1312. flex: none;
  1313. padding: 0 5px;
  1314. font-size: 12px;
  1315. color: #7a7971;
  1316. border-right: 1px solid #c9c7b8;
  1317. }
  1318. .dnd5e.sheet.actor .spell-slots input {
  1319. display: inline;
  1320. max-width: 20px;
  1321. }
  1322. .dnd5e.sheet.actor .spell-slots .sep {
  1323. font-size: 13px;
  1324. font-weight: normal;
  1325. }
  1326. .dnd5e.sheet.actor .spellbook .spell-uses {
  1327. padding-right: 5px;
  1328. text-align: right;
  1329. color: #7a7971;
  1330. }
  1331. .dnd5e.sheet.actor .spell-school,
  1332. .dnd5e.sheet.actor .spell-action,
  1333. .dnd5e.sheet.actor .spell-target {
  1334. flex: 0 0 100px;
  1335. font-size: 12px;
  1336. color: #7a7971;
  1337. text-align: center;
  1338. border-right: 1px solid #c9c7b8;
  1339. }
  1340. .dnd5e.sheet.actor .spell-component {
  1341. line-height: 14px;
  1342. }
  1343. .dnd5e.sheet.actor .spell-component.tag {
  1344. display: inline-block;
  1345. text-align: center;
  1346. padding-top: 1px;
  1347. width: 16px;
  1348. color: #c9c7b8;
  1349. background: rgba(0, 0, 0, 0.4);
  1350. border: 1px solid transparent;
  1351. border-radius: 8px;
  1352. }
  1353. .dnd5e.sheet.actor .spellbook-empty .item-controls {
  1354. flex: 1;
  1355. }
  1356. .dnd5e.sheet.actor .features i.original-class {
  1357. color: #4b4a44;
  1358. }
  1359. .dnd5e.sheet.actor .features .item-detail select {
  1360. max-width: 90%;
  1361. }
  1362. .dnd5e.sheet.actor .editor {
  1363. padding: 0 8px;
  1364. }
  1365. #actor-flags .window-content {
  1366. overflow-y: hidden;
  1367. }
  1368. #actor-flags form {
  1369. height: 100%;
  1370. }
  1371. #actor-flags .form-body {
  1372. height: calc(100% - 40px);
  1373. padding-right: 8px;
  1374. margin-bottom: 4px;
  1375. overflow-y: auto;
  1376. scrollbar-width: thin;
  1377. }
  1378. .dnd5e.advancement {
  1379. /* ----------------------------------------- */
  1380. /* Advancement Selection */
  1381. /* ----------------------------------------- */
  1382. /* ----------------------------------------- */
  1383. /* Two Column Configurations */
  1384. /* ----------------------------------------- */
  1385. /* ----------------------------------------- */
  1386. /* Item Choice */
  1387. /* ----------------------------------------- */
  1388. /* ----------------------------------------- */
  1389. /* Scale Value */
  1390. /* ----------------------------------------- */
  1391. }
  1392. .dnd5e.advancement input[type="text"],
  1393. .dnd5e.advancement input[type="number"],
  1394. .dnd5e.advancement select {
  1395. height: var(--form-field-height);
  1396. }
  1397. .dnd5e.advancement input[type="text"][readonly],
  1398. .dnd5e.advancement input[type="number"][readonly],
  1399. .dnd5e.advancement select[readonly] {
  1400. color: var(--color-text-dark-6);
  1401. box-shadow: none;
  1402. }
  1403. .dnd5e.advancement .form-group .form-fields button {
  1404. flex: 0;
  1405. }
  1406. .dnd5e.advancement .form-group .form-field-readonly {
  1407. color: #999;
  1408. }
  1409. .dnd5e.advancement .items-list {
  1410. margin-bottom: 1em;
  1411. /* Solves the borders being cut off */
  1412. }
  1413. .dnd5e.advancement .items-list li.item {
  1414. padding-top: 0.25em;
  1415. }
  1416. .dnd5e.advancement .items-list .item-hint {
  1417. flex: 0 1 100%;
  1418. margin-left: 35px;
  1419. margin-bottom: 0.5em;
  1420. }
  1421. .dnd5e.advancement .items-list .content-link {
  1422. display: inline-block;
  1423. }
  1424. .dnd5e.advancement .centered {
  1425. text-align: center;
  1426. }
  1427. .dnd5e.advancement.two-column {
  1428. --grid-two-column-left-size: 1fr;
  1429. --grid-two-column-right-size: 1fr;
  1430. }
  1431. .dnd5e.advancement.two-column form {
  1432. display: grid;
  1433. grid-template-columns: var(--grid-two-column-left-size) var(--grid-two-column-right-size);
  1434. grid-template-areas: "left right";
  1435. grid-gap: 0.4em;
  1436. }
  1437. .dnd5e.advancement.two-column form .left-column {
  1438. grid-area: left;
  1439. display: flex;
  1440. flex-direction: column;
  1441. }
  1442. .dnd5e.advancement.two-column form .left-column > .form-group {
  1443. flex: none;
  1444. }
  1445. .dnd5e.advancement.two-column form .left-column > .drop-target {
  1446. flex: 1;
  1447. }
  1448. .dnd5e.advancement.two-column form .right-column {
  1449. grid-area: right;
  1450. }
  1451. .dnd5e.advancement.two-column form .right-column.level-list label {
  1452. flex: 0.5;
  1453. padding-right: 0.5rem;
  1454. text-align: end;
  1455. }
  1456. .dnd5e.advancement.two-column form .right-column.level-list :is(input[type="text"], input[type="number"])::placeholder {
  1457. opacity: 0.5;
  1458. }
  1459. .dnd5e.advancement.two-column form button[type="submit"] {
  1460. grid-column-end: span 2;
  1461. }
  1462. .dnd5e.advancement form[data-type="AbilityScoreImprovement"] .ability-scores {
  1463. contain: layout;
  1464. display: grid;
  1465. grid-template-columns: repeat(3, 1fr);
  1466. gap: 20px;
  1467. margin-block-end: 0;
  1468. padding: 0;
  1469. list-style: none;
  1470. text-align: center;
  1471. }
  1472. .dnd5e.advancement form[data-type="AbilityScoreImprovement"] .ability-scores > label {
  1473. grid-area: auto / span 3;
  1474. margin-block: 0.5em 0;
  1475. padding: 0;
  1476. font-size: var(--font-size-18);
  1477. }
  1478. .dnd5e.advancement form[data-type="AbilityScoreImprovement"] .ability-scores li {
  1479. display: grid;
  1480. grid-template: "label label label label" "minus value value plus" "minus delta delta plus";
  1481. align-items: center;
  1482. }
  1483. .dnd5e.advancement form[data-type="AbilityScoreImprovement"] .ability-scores li.hint {
  1484. display: block;
  1485. grid-column: 2 / 4;
  1486. text-align: start;
  1487. align-self: end;
  1488. }
  1489. .dnd5e.advancement form[data-type="AbilityScoreImprovement"] .ability-scores li label {
  1490. grid-area: label;
  1491. font-size: var(--font-size-18);
  1492. }
  1493. .dnd5e.advancement form[data-type="AbilityScoreImprovement"] .ability-scores li a {
  1494. font-size: var(--font-size-16);
  1495. padding: 0.5em;
  1496. }
  1497. .dnd5e.advancement form[data-type="AbilityScoreImprovement"] .ability-scores li a:not([data-action]) {
  1498. opacity: 33%;
  1499. cursor: default;
  1500. }
  1501. .dnd5e.advancement form[data-type="AbilityScoreImprovement"] .ability-scores li a:not([data-action]):hover {
  1502. text-shadow: none;
  1503. }
  1504. .dnd5e.advancement form[data-type="AbilityScoreImprovement"] .ability-scores li .minus {
  1505. grid-area: minus;
  1506. }
  1507. .dnd5e.advancement form[data-type="AbilityScoreImprovement"] .ability-scores li .plus {
  1508. grid-area: plus;
  1509. }
  1510. .dnd5e.advancement form[data-type="AbilityScoreImprovement"] .ability-scores li input {
  1511. grid-area: value;
  1512. height: 1.5em;
  1513. border: none;
  1514. background: none;
  1515. font-size: var(--font-size-28);
  1516. }
  1517. .dnd5e.advancement form[data-type="AbilityScoreImprovement"] .ability-scores li .delta {
  1518. grid-area: delta;
  1519. font-size: var(--font-size-16);
  1520. font-weight: bold;
  1521. }
  1522. .dnd5e.advancement form[data-type="AbilityScoreImprovement"] .ability-scores li .delta i {
  1523. font-size: var(--font-size-12);
  1524. }
  1525. .dnd5e.advancement form[data-type="AbilityScoreImprovement"] .ability-scores.disabled li {
  1526. opacity: 60%;
  1527. }
  1528. .dnd5e.advancement form[data-type="AbilityScoreImprovement"] .drop-area {
  1529. padding-block: 0.5em;
  1530. }
  1531. .dnd5e.advancement form[data-type="AbilityScoreImprovement"] .drop-area h4 {
  1532. font-size: var(--font-size-16);
  1533. }
  1534. .dnd5e.advancement form[data-type="AbilityScoreImprovement"] .drop-area a.item-control {
  1535. flex: 0;
  1536. }
  1537. .dnd5e.advancement form[data-type="AbilityScoreImprovement"] .drop-area.empty {
  1538. padding-block: 1em;
  1539. border: 1px dashed var(--color-border-light-2);
  1540. border-radius: 5px;
  1541. justify-content: center;
  1542. }
  1543. .dnd5e.advancement.item-choice {
  1544. --grid-two-column-right-size: 0.5fr;
  1545. }
  1546. .dnd5e.advancement.item-choice .level-list .hint {
  1547. text-align: end;
  1548. }
  1549. .dnd5e.advancement.item-choice .form-group:has(textarea) {
  1550. align-items: flex-start;
  1551. }
  1552. .dnd5e.advancement.item-choice textarea {
  1553. margin-inline-start: 8px;
  1554. border: 1px solid var(--color-border-light-tertiary);
  1555. font-family: var(--font-primary);
  1556. font-size: var(--font-size-12);
  1557. height: 100px;
  1558. }
  1559. .dnd5e.advancement.scale-value {
  1560. --grid-two-column-right-size: 0.6fr;
  1561. }
  1562. .dnd5e.advancement.scale-value select.new-scale-value {
  1563. font-weight: bold;
  1564. }
  1565. .dnd5e.advancement.scale-value select option[value=""] {
  1566. color: var(--color-text-light-6);
  1567. }
  1568. .dnd5e.advancement-migration .items-list {
  1569. margin-block-end: 1em;
  1570. }
  1571. /* ----------------------------------------- */
  1572. /* Advancement Flow */
  1573. /* ----------------------------------------- */
  1574. .dnd5e.advancement.flow .step {
  1575. display: flex;
  1576. flex-wrap: wrap;
  1577. justify-content: space-between;
  1578. }
  1579. .dnd5e.advancement.flow .step h1 {
  1580. flex-grow: 1;
  1581. }
  1582. .dnd5e.advancement.flow .step h2 {
  1583. text-align: right;
  1584. line-height: 1.8em;
  1585. border-bottom: 2px solid var(--color-underline-header);
  1586. }
  1587. .dnd5e.advancement.flow .step form {
  1588. flex-basis: 100%;
  1589. }
  1590. .dnd5e.advancement.flow h3 {
  1591. font-size: var(--font-size-20);
  1592. }
  1593. .dnd5e.advancement.flow .item-name .item-image {
  1594. flex: 0 0 30px;
  1595. height: 30px;
  1596. background-size: cover;
  1597. background-position: 50% 0;
  1598. margin-inline-end: 5px;
  1599. }
  1600. .dnd5e.advancement.flow .item-name label {
  1601. align-items: center;
  1602. }
  1603. .dnd5e.advancement.flow .item-name label h4 {
  1604. margin: 0;
  1605. font-size: 0.9rem;
  1606. }
  1607. .dnd5e.advancement.flow form:not(:last-of-type) {
  1608. margin-block-end: 0.5em;
  1609. border-block-end: 2px groove var(--color-border-light-1);
  1610. padding-block-end: 1em;
  1611. }
  1612. .dnd5e.advancement.flow input.error {
  1613. outline: 2px solid red;
  1614. }
  1615. .dnd5e.advancement.flow form[data-type="HitPoints"] div {
  1616. font-size: var(--font-size-14);
  1617. }
  1618. .dnd5e.advancement.flow form[data-type="HitPoints"] .rolls {
  1619. display: grid;
  1620. grid-template-columns: 50% 1fr 1fr;
  1621. align-items: center;
  1622. gap: 2px;
  1623. }
  1624. .dnd5e.advancement.flow form[data-type="HitPoints"] .rolls .averageLabel span,
  1625. .dnd5e.advancement.flow form[data-type="HitPoints"] .rolls .averageLabel input {
  1626. vertical-align: middle;
  1627. }
  1628. .dnd5e.advancement.flow form[data-type="HitPoints"] .rolls .rollResult {
  1629. text-align: center;
  1630. }
  1631. .dnd5e.advancement.flow form[data-type="HitPoints"] .rolls .rollButton {
  1632. height: calc(var(--form-field-height) + 5px);
  1633. line-height: 1.5em;
  1634. }
  1635. .dnd5e.advancement.flow form[data-type="ItemChoice"] .item-name .item-delete {
  1636. flex: 0 0 20px;
  1637. margin-inline-end: 1px;
  1638. }
  1639. .dnd5e.advancement.flow form[data-type="ScaleValue"] p {
  1640. margin-block-end: 0;
  1641. font-size: var(--font-size-18);
  1642. }
  1643. .dnd5e.advancement.flow form[data-type="ScaleValue"] span.none {
  1644. font-style: italic;
  1645. }
  1646. .dnd5e.advancement.flow nav {
  1647. display: flex;
  1648. justify-content: flex-end;
  1649. margin-block-start: 1em;
  1650. }
  1651. .dnd5e.advancement.flow nav button {
  1652. max-width: 50%;
  1653. }
  1654. .dnd5e.sheet.item {
  1655. min-height: 400px;
  1656. max-height: 95%;
  1657. min-width: 480px;
  1658. /* ----------------------------------------- */
  1659. /* Sheet Header */
  1660. /* ----------------------------------------- */
  1661. /* ----------------------------------------- */
  1662. /* Item Details Form */
  1663. /* ----------------------------------------- */
  1664. /* ----------------------------------------- */
  1665. /* Item Actions */
  1666. /* ----------------------------------------- */
  1667. /* ----------------------------------------- */
  1668. /* Item Actions */
  1669. /* ----------------------------------------- */
  1670. /* ----------------------------------------- */
  1671. /* Loot Sheet (No Tabs) */
  1672. /* ----------------------------------------- */
  1673. }
  1674. .dnd5e.sheet.item .sheet-header img.profile {
  1675. border: 2px solid #000;
  1676. }
  1677. .dnd5e.sheet.item .sheet-header .item-subtitle {
  1678. flex: 0 0 100px;
  1679. height: 60px;
  1680. margin: 0;
  1681. padding: 5px;
  1682. text-align: right;
  1683. white-space: nowrap;
  1684. color: #7a7971;
  1685. }
  1686. .dnd5e.sheet.item .sheet-header .item-subtitle .item-type {
  1687. font-size: 24px;
  1688. line-height: 26px;
  1689. margin: 0;
  1690. }
  1691. .dnd5e.sheet.item .sheet-header .item-subtitle .item-status {
  1692. font-size: 16px;
  1693. line-height: 24px;
  1694. }
  1695. .dnd5e.sheet.item .sheet-header .summary .class-level {
  1696. flex: 0 0 4em;
  1697. padding: 0 0.25em;
  1698. text-align: right;
  1699. }
  1700. .dnd5e.sheet.item .sheet-navigation {
  1701. margin-bottom: 5px;
  1702. }
  1703. .dnd5e.sheet.item .sheet-navigation .item {
  1704. font-size: 18px;
  1705. }
  1706. .dnd5e.sheet.item .sheet-body {
  1707. overflow: hidden;
  1708. }
  1709. .dnd5e.sheet.item .sheet-body .tab {
  1710. padding: 0 5px;
  1711. overflow: hidden auto;
  1712. }
  1713. .dnd5e.sheet.item .sheet-body .item-properties {
  1714. flex: 0 0 120px;
  1715. margin: 5px 5px 5px 0;
  1716. padding-right: 5px;
  1717. border-right: 2px groove #eeede0;
  1718. }
  1719. .dnd5e.sheet.item .sheet-body .item-properties .form-group {
  1720. margin: 0;
  1721. }
  1722. .dnd5e.sheet.item .sheet-body .item-properties .form-group label {
  1723. line-height: 20px;
  1724. }
  1725. .dnd5e.sheet.item .sheet-body .item-properties .form-group input {
  1726. text-align: right;
  1727. }
  1728. .dnd5e.sheet.item .sheet-body .item-properties .properties-list {
  1729. list-style: none;
  1730. margin: 0;
  1731. padding: 0;
  1732. }
  1733. .dnd5e.sheet.item .sheet-body .item-properties .properties-list li {
  1734. margin: 3px 0;
  1735. padding: 0 2px;
  1736. background: rgba(0, 0, 0, 0.05);
  1737. border: 2px groove #eeede0;
  1738. text-align: center;
  1739. font-size: 12px;
  1740. line-height: 18px;
  1741. }
  1742. .dnd5e.sheet.item .sheet-body .item-properties .properties-header {
  1743. font-weight: bold;
  1744. color: #4b4a44;
  1745. margin: 0.5em 0 0 0;
  1746. font-size: 1em;
  1747. }
  1748. .dnd5e.sheet.item .sheet-body .item-properties [name="system.price.denomination"] {
  1749. border: none;
  1750. }
  1751. .dnd5e.sheet.item .details input[type="text"],
  1752. .dnd5e.sheet.item .details input[type="number"],
  1753. .dnd5e.sheet.item .details select {
  1754. height: 24px;
  1755. border: 1px solid #7a7971;
  1756. background: rgba(0, 0, 0, 0.05);
  1757. }
  1758. .dnd5e.sheet.item .details .form-group span {
  1759. text-align: center;
  1760. line-height: 24px;
  1761. }
  1762. .dnd5e.sheet.item .details .form-group.input-select select {
  1763. flex: 1.8;
  1764. }
  1765. .dnd5e.sheet.item .details .form-group.input-select-select select {
  1766. flex: 1.5;
  1767. }
  1768. .dnd5e.sheet.item .details .form-group.uses-per .form-fields,
  1769. .dnd5e.sheet.item .details .form-group.consumption .form-fields {
  1770. flex-wrap: nowrap;
  1771. }
  1772. .dnd5e.sheet.item .details .form-group.uses-per.consumption input,
  1773. .dnd5e.sheet.item .details .form-group.consumption.consumption input {
  1774. flex: 0 0 32px;
  1775. }
  1776. .dnd5e.sheet.item .details .form-group.uses-per span,
  1777. .dnd5e.sheet.item .details .form-group.consumption span {
  1778. flex: 0 0 16px;
  1779. margin: 0 4px 0 0;
  1780. }
  1781. .dnd5e.sheet.item .details span.sep {
  1782. flex: 0 0 8px;
  1783. }
  1784. .dnd5e.sheet.item .details .prepared {
  1785. flex: 1.3 !important;
  1786. text-align: right;
  1787. padding-right: 10px;
  1788. }
  1789. .dnd5e.sheet.item .details .spell-materials {
  1790. flex: 0 0 100%;
  1791. margin: 0.25em 0;
  1792. justify-content: flex-end;
  1793. }
  1794. .dnd5e.sheet.item .details .spell-materials label {
  1795. flex: 0 0 64px;
  1796. text-align: right;
  1797. margin-right: 5px;
  1798. font-size: 12px;
  1799. line-height: 24px;
  1800. }
  1801. .dnd5e.sheet.item .details .spell-materials input[type="number"] {
  1802. flex: 0 0 48px;
  1803. margin-right: 10px;
  1804. }
  1805. .dnd5e.sheet.item h4.damage-header {
  1806. margin: 0;
  1807. padding: 0;
  1808. font-weight: bold;
  1809. line-height: 24px;
  1810. color: #4b4a44;
  1811. }
  1812. .dnd5e.sheet.item .damage-parts {
  1813. list-style: none;
  1814. margin: 0;
  1815. padding: 0;
  1816. }
  1817. .dnd5e.sheet.item .damage-parts .damage-part {
  1818. flex: 0 0 100%;
  1819. padding: 0;
  1820. }
  1821. .dnd5e.sheet.item .damage-parts .damage-part input {
  1822. flex: 3;
  1823. }
  1824. .dnd5e.sheet.item .damage-parts .damage-part select {
  1825. margin-left: 5px;
  1826. flex: 1;
  1827. }
  1828. .dnd5e.sheet.item .damage-control {
  1829. width: 18px;
  1830. flex: 0 0 18px;
  1831. line-height: 24px;
  1832. float: right;
  1833. text-align: right;
  1834. color: #7a7971;
  1835. }
  1836. .dnd5e.sheet.item .recharge.form-group span {
  1837. text-align: right;
  1838. padding-right: 3px;
  1839. }
  1840. .dnd5e.sheet.item .recharge.form-group input[type="number"] {
  1841. flex: 0 0 32px;
  1842. text-align: center;
  1843. }
  1844. .dnd5e.sheet.item .recharge.form-group label.checkbox {
  1845. flex: none;
  1846. }
  1847. .dnd5e.sheet.item .recharge.form-group label.checkbox input {
  1848. width: 16px;
  1849. height: 16px;
  1850. top: 4px;
  1851. }
  1852. .dnd5e.sheet.item .weapon-properties label.checkbox {
  1853. flex: 0 0 98px;
  1854. }
  1855. .dnd5e.sheet.item .loot-header {
  1856. margin-bottom: 10px;
  1857. }
  1858. /* ----------------------------------------- */
  1859. /* Item Advancement */
  1860. /* ----------------------------------------- */
  1861. .dnd5e .advancement .items-list {
  1862. height: 100%;
  1863. }
  1864. .dnd5e .advancement .items-list .main-controls .configuration-mode-control {
  1865. flex: 1 0;
  1866. margin-inline-start: 0.5em;
  1867. }
  1868. .dnd5e .advancement .items-list .main-controls .configuration-mode-control a {
  1869. text-align: start;
  1870. }
  1871. .dnd5e .advancement .items-list .main-controls .item-add {
  1872. padding-block-start: 0.2em;
  1873. }
  1874. .dnd5e .advancement .items-list .items-header .item-checkmark {
  1875. flex: 0 0 44px;
  1876. color: #119111;
  1877. text-shadow: white 0 0 1px;
  1878. }
  1879. .dnd5e .advancement .items-list .items-header .item-warning {
  1880. flex: 0 0 44px;
  1881. color: #faff23;
  1882. text-shadow: black 0 0 1px;
  1883. }
  1884. .dnd5e .advancement .items-list .item-name {
  1885. flex: 1 0 10em;
  1886. }
  1887. .dnd5e .advancement .items-list .item-controls {
  1888. border-left: 1px solid #c9c7b8;
  1889. flex: 0 0 44px;
  1890. }
  1891. .dnd5e .advancement .items-list .item-summary {
  1892. flex: 0 0 100%;
  1893. font-size: 12px;
  1894. line-height: 16px;
  1895. padding: 0 0.5em 0.5em 34px;
  1896. margin-top: -4px;
  1897. color: #191813;
  1898. }
  1899. .dnd5e .advancement .items-list .item-summary .item-list .item-name {
  1900. display: flex;
  1901. }
  1902. .dnd5e .advancement .items-list .tag {
  1903. font-size: 0.7rem;
  1904. padding: 0.1em 0.5em;
  1905. }
  1906. /* ----------------------------------------- */
  1907. /* SRD Compendium */
  1908. /* ----------------------------------------- */
  1909. .srd-compendium.app {
  1910. min-height: 480px;
  1911. min-width: 640px;
  1912. }
  1913. .srd-compendium.app .window-content {
  1914. background: url(ui/parchment.jpg) repeat;
  1915. color: var(--color-text-dark-primary);
  1916. }
  1917. .srd-compendium article {
  1918. display: flex;
  1919. flex-direction: column;
  1920. padding: 1rem;
  1921. gap: 1rem;
  1922. }
  1923. .srd-compendium article aside,
  1924. .srd-compendium article .contents {
  1925. border: 4px solid #ba2828;
  1926. background: #efefef99;
  1927. }
  1928. .srd-compendium article aside header h2,
  1929. .srd-compendium article .contents header h2 {
  1930. border: none;
  1931. background: #ba2828;
  1932. color: var(--color-text-light-1);
  1933. padding: 0 0.25rem 0.25rem 0.25rem;
  1934. margin: 0;
  1935. }
  1936. .srd-compendium article aside section,
  1937. .srd-compendium article .contents section {
  1938. padding: 0.625rem 1rem;
  1939. }
  1940. .srd-compendium article aside blockquote {
  1941. border: none;
  1942. margin: 0;
  1943. padding: 0;
  1944. }
  1945. .srd-compendium article .contents {
  1946. flex-grow: 1;
  1947. }
  1948. .srd-compendium article .contents .chapter {
  1949. margin-bottom: 0.5rem;
  1950. break-inside: avoid-column;
  1951. }
  1952. .srd-compendium article .contents h3 {
  1953. border: none;
  1954. font-weight: bold;
  1955. font-size: var(--font-size-18);
  1956. color: var(--color-text-hyperlink);
  1957. }
  1958. .srd-compendium article .contents ul {
  1959. list-style-type: none;
  1960. margin: 0 0 0 0.375rem;
  1961. padding: 0;
  1962. }
  1963. .srd-compendium article .contents ul li {
  1964. font-size: var(--font-size-16);
  1965. }
  1966. .srd-compendium article .contents section {
  1967. column-count: 3;
  1968. }
  1969. /* ----------------------------------------- */
  1970. /* Journal Pages */
  1971. /* ----------------------------------------- */
  1972. .journal-editor {
  1973. min-width: 340px;
  1974. min-height: 260px;
  1975. }
  1976. .journal-editor .window-content {
  1977. padding: 0;
  1978. }
  1979. .journal-editor .prosemirror menu {
  1980. border-radius: 0;
  1981. }
  1982. .journal-editor .prosemirror .editor-container {
  1983. overflow-y: auto;
  1984. }
  1985. .journal-entry-page.class h4,
  1986. .class-journal h4 {
  1987. border-block-end: 1px solid var(--color-underline-header);
  1988. font-weight: bold;
  1989. }
  1990. .journal-entry-page.class table th[scope="col"],
  1991. .class-journal table th[scope="col"] {
  1992. padding-inline: 0.25em;
  1993. }
  1994. .journal-entry-page.class table td:is(.level, .prof, .scale, .spell-slots),
  1995. .class-journal table td:is(.level, .prof, .scale, .spell-slots) {
  1996. text-align: center;
  1997. }
  1998. .journal-entry-page.class form .form-group,
  1999. .class-journal form .form-group {
  2000. align-items: start;
  2001. }
  2002. .journal-entry-page.class form button.launch-text-editor,
  2003. .class-journal form button.launch-text-editor {
  2004. flex: 0.35;
  2005. }
  2006. .journal-entry-page.class form .items-list .item,
  2007. .class-journal form .items-list .item {
  2008. align-items: center;
  2009. padding-block: 0.35em 0;
  2010. padding-inline: 2px;
  2011. }
  2012. .journal-entry-page.class form .items-list .item .item-controls,
  2013. .class-journal form .items-list .item .item-controls {
  2014. flex: 0;
  2015. }
  2016. .journal-entry-page.class form .items-list .item:not(:last-of-type),
  2017. .class-journal form .items-list .item:not(:last-of-type) {
  2018. border-bottom: 1px solid var(--color-border-light-secondary);
  2019. }
  2020. /* ----------------------------------------- */
  2021. /* Chat Cards
  2022. /* ----------------------------------------- */
  2023. .dnd5e.chat-card {
  2024. font-style: normal;
  2025. font-size: 12px;
  2026. }
  2027. .dnd5e.chat-card .card-header {
  2028. padding: 3px 0;
  2029. border-top: 2px groove #FFF;
  2030. border-bottom: 2px groove #FFF;
  2031. }
  2032. .dnd5e.chat-card .card-header img {
  2033. flex: 0 0 36px;
  2034. margin-right: 5px;
  2035. }
  2036. .dnd5e.chat-card .card-header h3 {
  2037. flex: 1;
  2038. margin: 0;
  2039. line-height: 36px;
  2040. font-family: "Modesto Condensed", "Palatino Linotype", serif;
  2041. font-size: 20px;
  2042. font-weight: 700;
  2043. color: #4b4a44;
  2044. }
  2045. .dnd5e.chat-card .card-header h3:hover {
  2046. color: #111;
  2047. text-shadow: 0 0 10px red;
  2048. }
  2049. .dnd5e.chat-card .card-content {
  2050. margin: 5px 0;
  2051. }
  2052. .dnd5e.chat-card .card-content h3 {
  2053. font-size: 12px;
  2054. margin: 0;
  2055. font-weight: bold;
  2056. }
  2057. .dnd5e.chat-card .card-content > * {
  2058. -webkit-user-select: text;
  2059. -moz-user-select: text;
  2060. -ms-user-select: text;
  2061. user-select: text;
  2062. }
  2063. .dnd5e.chat-card .card-buttons {
  2064. margin: 5px 0;
  2065. }
  2066. .dnd5e.chat-card .card-buttons span {
  2067. display: block;
  2068. line-height: 28px;
  2069. text-align: center;
  2070. border: 1px solid #CCC;
  2071. }
  2072. .dnd5e.chat-card .card-buttons button {
  2073. font-size: 12px;
  2074. height: 24px;
  2075. line-height: 20px;
  2076. margin: 2px 0;
  2077. }
  2078. .dnd5e.chat-card .card-footer {
  2079. padding: 3px 0 0;
  2080. border-top: 2px groove #FFF;
  2081. }
  2082. .dnd5e.chat-card .card-footer span {
  2083. border-right: 2px groove #FFF;
  2084. padding: 0 3px 0 0;
  2085. font-size: 10px;
  2086. }
  2087. .dnd5e.chat-card .card-footer span:last-child {
  2088. border-right: none;
  2089. padding-right: 0;
  2090. }
  2091. .dice-roll .dice-total.success {
  2092. color: inherit;
  2093. background: #c7d0c0;
  2094. border: 1px solid #006c00;
  2095. }
  2096. .dice-roll .dice-total.failure {
  2097. color: inherit;
  2098. background: #ffdddd;
  2099. border: 1px solid #6e0000;
  2100. }
  2101. .dice-roll .dice-total.critical {
  2102. color: green;
  2103. }
  2104. .dice-roll .dice-total.fumble {
  2105. color: red;
  2106. }
  2107. /* ----------------------------------------- */
  2108. /* Basic Structure */
  2109. /* ----------------------------------------- */
  2110. .dnd5e.sheet.actor.character {
  2111. min-width: 720px;
  2112. min-height: 680px;
  2113. /* ----------------------------------------- */
  2114. /* Sheet Header */
  2115. /* ----------------------------------------- */
  2116. /* ----------------------------------------- */
  2117. /* Sheet Body */
  2118. /* ----------------------------------------- */
  2119. /* ----------------------------------------- */
  2120. /* Item Controls */
  2121. /* ----------------------------------------- */
  2122. /* ----------------------------------------- */
  2123. /* Biography */
  2124. /* ----------------------------------------- */
  2125. }
  2126. .dnd5e.sheet.actor.character .sheet-header img.profile {
  2127. flex: 0 0 160px;
  2128. max-width: 160px;
  2129. height: 160px;
  2130. }
  2131. .dnd5e.sheet.actor.character .sheet-header .charlevel {
  2132. flex: 0 0 20px;
  2133. height: 20px;
  2134. overflow: hidden;
  2135. text-overflow: ellipsis;
  2136. font-size: 18px;
  2137. color: #7a7971;
  2138. white-space: nowrap;
  2139. }
  2140. .dnd5e.sheet.actor.character .sheet-header .experience {
  2141. flex: 0 0 32px;
  2142. margin-bottom: -5px;
  2143. align-items: center;
  2144. font-size: 18px;
  2145. }
  2146. .dnd5e.sheet.actor.character .sheet-header .experience span.max {
  2147. color: #7a7971;
  2148. flex: none;
  2149. margin-left: 3px;
  2150. }
  2151. .dnd5e.sheet.actor.character .sheet-header .xpbar {
  2152. flex: 0 0 8px;
  2153. width: 100%;
  2154. margin-bottom: 5px;
  2155. background: #7a7971;
  2156. border: 1px solid #000;
  2157. border-radius: 3px;
  2158. }
  2159. .dnd5e.sheet.actor.character .sheet-header .xpbar .bar {
  2160. height: 4px;
  2161. margin: 1px;
  2162. display: block;
  2163. background: #afebff;
  2164. border: 1px solid #000;
  2165. border-radius: 2px;
  2166. }
  2167. .dnd5e.sheet.actor.character .sheet-header .attributes a.rest {
  2168. border: 1px solid #b5b3a4;
  2169. border-radius: 2px;
  2170. background: rgba(0, 0, 0, 0.05);
  2171. padding: 0 3px;
  2172. margin: 0 3px;
  2173. }
  2174. .dnd5e.sheet.actor.character .sheet-header .attributes .hit-dice {
  2175. font-size: 24px;
  2176. }
  2177. .dnd5e.sheet.actor.character .sheet-header .attributes .initiative .attribute-footer input {
  2178. width: 32px;
  2179. }
  2180. .dnd5e.sheet.actor.character .sheet-header .summary .proficiency {
  2181. text-align: right;
  2182. }
  2183. .dnd5e.sheet.actor.character .resource .attribute-value > input {
  2184. flex: 0 0 25%;
  2185. }
  2186. .dnd5e.sheet.actor.character .resource .attribute-value label.recharge {
  2187. height: 32px;
  2188. position: relative;
  2189. font-family: "Signika", sans-serif;
  2190. font-size: 11px;
  2191. text-align: center;
  2192. color: #4b4a44;
  2193. align-items: center;
  2194. }
  2195. .dnd5e.sheet.actor.character .resource .attribute-value label.recharge input[type="checkbox"] {
  2196. flex-basis: 14px;
  2197. height: 14px;
  2198. width: 14px;
  2199. margin: 0;
  2200. top: -6px;
  2201. }
  2202. .dnd5e.sheet.actor.character ul.skills-list {
  2203. flex: 0 0 212px;
  2204. }
  2205. .dnd5e.sheet.actor.character ul.skills-list li.skill {
  2206. padding: 3px;
  2207. }
  2208. .dnd5e.sheet.actor.character ul.skills-list li.skill h4 {
  2209. flex: 1px;
  2210. margin: 0;
  2211. font-size: 13px;
  2212. }
  2213. .dnd5e.sheet.actor.character .item-detail.player-class {
  2214. flex: 0 0 180px;
  2215. text-align: right;
  2216. padding-right: 10px;
  2217. }
  2218. .dnd5e.sheet.actor.character .inventory .item-controls,
  2219. .dnd5e.sheet.actor.character .spellbook .item-controls {
  2220. flex: 0 0 68px;
  2221. }
  2222. .dnd5e.sheet.actor.character .inventory .item-controls .item-toggle,
  2223. .dnd5e.sheet.actor.character .spellbook .item-controls .item-toggle {
  2224. color: #b5b3a4;
  2225. }
  2226. .dnd5e.sheet.actor.character .inventory .item-controls .item-toggle.active,
  2227. .dnd5e.sheet.actor.character .spellbook .item-controls .item-toggle.active {
  2228. color: #4b4a44;
  2229. }
  2230. .dnd5e.sheet.actor.character .inventory .item-controls .item-toggle.fixed,
  2231. .dnd5e.sheet.actor.character .spellbook .item-controls .item-toggle.fixed {
  2232. color: #44191A;
  2233. }
  2234. .dnd5e.sheet.actor.character .inventory .item-controls .item-toggle.fixed:hover,
  2235. .dnd5e.sheet.actor.character .spellbook .item-controls .item-toggle.fixed:hover {
  2236. text-shadow: none;
  2237. }
  2238. .dnd5e.sheet.actor.character .characteristics {
  2239. flex: 0 0 180px;
  2240. height: 100%;
  2241. padding: 0 3px 3px;
  2242. }
  2243. .dnd5e.sheet.actor.character .characteristics label {
  2244. flex: 0 0 20px;
  2245. font-family: "Modesto Condensed", "Palatino Linotype", serif;
  2246. font-size: 20px;
  2247. font-weight: 700;
  2248. font-size: 16px;
  2249. font-weight: normal;
  2250. line-height: 20px;
  2251. text-align: center;
  2252. }
  2253. .dnd5e.sheet.actor.character .characteristics textarea {
  2254. font-family: "Signika", serif;
  2255. font-size: 13px;
  2256. border: 1px solid #c9c7b8;
  2257. resize: none;
  2258. }
  2259. .dnd5e.sheet.actor.character .biography {
  2260. max-width: calc(100% - 180px);
  2261. }
  2262. /* ----------------------------------------- */
  2263. /* Basic Structure */
  2264. /* ----------------------------------------- */
  2265. .dnd5e.sheet.actor.npc {
  2266. min-width: 600px;
  2267. min-height: 680px;
  2268. }
  2269. .dnd5e.sheet.actor.npc .header-exp {
  2270. flex: 0 0 80px;
  2271. justify-content: center;
  2272. }
  2273. .dnd5e.sheet.actor.npc .header-exp .cr {
  2274. flex: 0 0 32px;
  2275. line-height: 28px;
  2276. margin-bottom: -5px;
  2277. font-size: 24px;
  2278. }
  2279. .dnd5e.sheet.actor.npc .header-exp .cr input {
  2280. width: 32px;
  2281. padding: 0;
  2282. text-align: center;
  2283. }
  2284. .dnd5e.sheet.actor.npc .header-exp .experience,
  2285. .dnd5e.sheet.actor.npc .header-exp .proficiency {
  2286. flex: 0 0 18px;
  2287. color: #7a7971;
  2288. font-size: 16px;
  2289. }
  2290. .dnd5e.sheet.actor.npc .header-exp .proficiency {
  2291. margin-top: -0.3em;
  2292. }
  2293. .dnd5e.sheet.actor.npc .summary {
  2294. font-size: 18px;
  2295. }
  2296. .dnd5e.sheet.actor.npc .summary .creature-type {
  2297. display: flex;
  2298. justify-content: space-between;
  2299. width: 1em;
  2300. padding: 0 3px;
  2301. }
  2302. .dnd5e.sheet.actor.npc .summary .creature-type span {
  2303. overflow: hidden;
  2304. text-overflow: ellipsis;
  2305. white-space: nowrap;
  2306. }
  2307. .dnd5e.sheet.actor.npc .summary .creature-type .config-button {
  2308. display: none;
  2309. font-size: 12px;
  2310. font-weight: normal;
  2311. line-height: 2em;
  2312. }
  2313. .dnd5e.sheet.actor.npc .summary .creature-type:hover .config-button {
  2314. display: block;
  2315. }
  2316. .dnd5e.sheet.actor.vehicle {
  2317. min-width: 720px;
  2318. min-height: 680px;
  2319. }
  2320. .dnd5e.sheet.actor.vehicle .features .item-controls {
  2321. flex: 0 0 68px;
  2322. }
  2323. .dnd5e.sheet.actor.vehicle .features .item-controls .item-toggle {
  2324. color: #b5b3a4;
  2325. }
  2326. .dnd5e.sheet.actor.vehicle .features .item-controls .item-toggle.active {
  2327. color: #4b4a44;
  2328. }
  2329. .dnd5e.sheet.actor.vehicle .counters .counter.creature-cap .counter-value {
  2330. flex: 1;
  2331. }
  2332. .dnd5e.sheet.actor.vehicle .counters .counter.creature-cap input {
  2333. max-width: none;
  2334. text-align: right;
  2335. }
  2336. .dnd5e.sheet.actor.vehicle .counters .counter.cargo-cap input {
  2337. max-width: 40px;
  2338. text-align: right;
  2339. }
  2340. .dnd5e.sheet.group {
  2341. min-width: 620px;
  2342. min-height: 620px;
  2343. /** Members Directory */
  2344. }
  2345. .dnd5e.sheet.group .attribute.health span.value {
  2346. line-height: 64px;
  2347. flex: 0 0 64px;
  2348. }
  2349. .dnd5e.sheet.group .members .directory-header {
  2350. height: 28px;
  2351. margin: 2px 0;
  2352. padding: 0 0.5rem;
  2353. align-items: center;
  2354. background: rgba(0, 0, 0, 0.05);
  2355. border: 2px groove #eeede0;
  2356. }
  2357. .dnd5e.sheet.group .members .directory-header > * {
  2358. margin: 0;
  2359. font-family: "Modesto Condensed", "Palatino Linotype", serif;
  2360. font-size: 20px;
  2361. font-weight: 700;
  2362. font-size: 16px;
  2363. font-weight: bold;
  2364. line-height: 20px;
  2365. text-align: left;
  2366. }
  2367. .dnd5e.sheet.group .members .group-member {
  2368. padding: 0 0.5rem;
  2369. }
  2370. .dnd5e.sheet.group .members .group-member .name {
  2371. cursor: pointer;
  2372. align-items: center;
  2373. }
  2374. .dnd5e.sheet.group .members .group-member .name h4 {
  2375. white-space: unset;
  2376. line-height: 1;
  2377. }
  2378. .dnd5e.sheet.group .members .hp {
  2379. flex: 2;
  2380. align-items: center;
  2381. }
  2382. .dnd5e.sheet.group .members .hp .current,
  2383. .dnd5e.sheet.group .members .hp .max {
  2384. flex: 0 0 40px;
  2385. text-align: center;
  2386. }
  2387. .dnd5e.sheet.group .members .hp .bar-container {
  2388. background: #111;
  2389. height: 20px;
  2390. padding: 1px;
  2391. border: 1px solid #000;
  2392. border-radius: 6px;
  2393. }
  2394. .dnd5e.sheet.group .members .hp .bar {
  2395. height: 16px;
  2396. border-radius: 4px;
  2397. }
  2398. .dnd5e.sheet.group .members .controls {
  2399. flex: 0 0 64px;
  2400. text-align: right;
  2401. }