spell-modal.component.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. @import "../../../responsive";
  2. .checkbox-column {
  3. width: 33.3%;
  4. display: flex;
  5. flex-direction: column;
  6. gap: 0.5rem;
  7. padding-left: 0.5rem;
  8. }
  9. .checkbox-row {
  10. display: flex;
  11. flex-direction: row;
  12. gap: 1rem;
  13. align-items: center;
  14. }
  15. .input-row {
  16. display: flex;
  17. flex-direction: row;
  18. justify-content: space-between;
  19. align-items: center;
  20. }
  21. .damage-box {
  22. width: 50%;
  23. }
  24. .damage-box {
  25. icon-button {
  26. padding-left: 4rem;
  27. margin-bottom: 1rem;
  28. margin-top: 0.5rem;
  29. }
  30. }
  31. .row,
  32. .range-container {
  33. ::ng-deep .mat-mdc-text-field-wrapper {
  34. width: 11rem !important;
  35. }
  36. .time {
  37. ::ng-deep .mat-mdc-text-field-wrapper {
  38. width: 2.5rem !important;
  39. padding-left: 0 !important;
  40. padding-right: 0 !important;
  41. }
  42. input {
  43. text-align: center;
  44. }
  45. }
  46. .unit {
  47. ::ng-deep .mat-mdc-text-field-wrapper {
  48. width: 8rem !important;
  49. }
  50. }
  51. ::ng-deep .mat-mdc-form-field-infix {
  52. height: 32px !important;
  53. min-height: 32px !important;
  54. padding-top: 4px !important;
  55. }
  56. input::-webkit-outer-spin-button,
  57. input::-webkit-inner-spin-button {
  58. display: none;
  59. }
  60. input {
  61. -webkit-appearance: none;
  62. appearance: none;
  63. }
  64. }
  65. .tab-content {
  66. ::ng-deep .mat-mdc-text-field-wrapper {
  67. width: 10rem !important;
  68. }
  69. ::ng-deep .mat-mdc-form-field-infix {
  70. height: 40px !important;
  71. min-height: 40px !important;
  72. padding-top: 8px !important;
  73. }
  74. }
  75. div.nav-pills.column.nav {
  76. border-right: 1px solid darkgray;
  77. padding-right: 4px;
  78. }
  79. ::ng-deep .ProseMirror {
  80. height: 17.5rem !important;
  81. overflow-y: auto;
  82. }
  83. .navigation-bar {
  84. padding-top: 0.5rem;
  85. gap: 1rem;
  86. height: 20rem;
  87. align-items: center;
  88. border-right: var(--gold-1);
  89. padding-right: 4px;
  90. width: 11rem;
  91. .nav-link {
  92. width: 100%;
  93. border-radius: 10px;
  94. transition: all 0.25s ease-in-out;
  95. font-weight: 600;
  96. color: black;
  97. &.active,
  98. &:hover {
  99. background-color: var(--gold);
  100. background-color: var(--gold);
  101. box-shadow: var(--shadow);
  102. }
  103. }
  104. .disabled-button {
  105. padding: 8px 0;
  106. border: none;
  107. font-weight: 600;
  108. color: black;
  109. cursor: not-allowed;
  110. opacity: 0.5;
  111. }
  112. }
  113. // Responsive
  114. hr {
  115. margin-top: 0.5rem;
  116. margin-bottom: 0.5rem;
  117. @include height-medium {
  118. margin-top: 1.5rem;
  119. margin-bottom: 1.5rem;
  120. }
  121. }
  122. .horizontal-buttons {
  123. padding: 1.5rem 0;
  124. @include height-small {
  125. padding: 2rem 0;
  126. }
  127. }
  128. .title {
  129. margin-top: 1.5rem;
  130. @include height-small {
  131. margin-top: 2rem;
  132. }
  133. }
  134. .content {
  135. margin-top: 1rem;
  136. @include height-small {
  137. margin-top: 1.5rem;
  138. }
  139. }