AdventurersGuildUI.uss 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. /* Adventurer's Guild UI Styles */
  2. /* Main Quest Board Styles */
  3. .quest-list-item {
  4. background-color: rgba(45, 45, 45, 0.9);
  5. border-width: 2px;
  6. border-color: rgba(100, 100, 100, 0.5);
  7. border-radius: 8px;
  8. margin-bottom: 8px;
  9. padding: 12px;
  10. transition-duration: 0.2s;
  11. }
  12. .clickable-quest {
  13. cursor: link;
  14. background-color: rgba(60, 60, 60, 0.95);
  15. border-color: rgba(120, 120, 120, 0.7);
  16. }
  17. .clickable-quest:hover,
  18. .quest-hover {
  19. background-color: rgba(80, 80, 80, 0.95);
  20. border-color: rgba(255, 215, 0, 0.8);
  21. scale: 1.02;
  22. transition-duration: 0.1s;
  23. }
  24. .quest-list-item.selected {
  25. background-color: rgba(255, 215, 0, 0.2);
  26. border-color: rgb(255, 215, 0);
  27. border-width: 3px;
  28. }
  29. /* Quest Item Header */
  30. .quest-item-header {
  31. flex-direction: row;
  32. justify-content: space-between;
  33. align-items: flex-start;
  34. margin-bottom: 8px;
  35. }
  36. .quest-title-container {
  37. flex-direction: column;
  38. flex-grow: 1;
  39. }
  40. .quest-item-title {
  41. font-size: 18px;
  42. color: rgb(255, 255, 255);
  43. -unity-font-style: bold;
  44. margin-bottom: 2px;
  45. }
  46. .quest-click-hint {
  47. font-size: 12px;
  48. color: rgba(255, 215, 0, 0.8);
  49. -unity-font-style: italic;
  50. }
  51. .quest-item-difficulty {
  52. background-color: rgba(100, 100, 100, 0.8);
  53. color: rgb(255, 255, 255);
  54. padding: 4px 8px;
  55. border-radius: 4px;
  56. font-size: 12px;
  57. -unity-font-style: bold;
  58. -unity-text-align: middle-center;
  59. min-width: 60px;
  60. }
  61. .difficulty-easy {
  62. background-color: rgba(46, 125, 50, 0.9);
  63. }
  64. .difficulty-normal {
  65. background-color: rgba(255, 193, 7, 0.9);
  66. color: rgb(0, 0, 0);
  67. }
  68. .difficulty-hard {
  69. background-color: rgba(244, 67, 54, 0.9);
  70. }
  71. .difficulty-legendary {
  72. background-color: rgba(156, 39, 176, 0.9);
  73. }
  74. /* Quest Description */
  75. .quest-item-description {
  76. color: rgba(255, 255, 255, 0.85);
  77. font-size: 14px;
  78. margin-bottom: 8px;
  79. white-space: normal;
  80. }
  81. /* Quest Info Row */
  82. .quest-info-row {
  83. flex-direction: row;
  84. justify-content: space-between;
  85. margin-bottom: 8px;
  86. }
  87. .quest-info-item {
  88. color: rgba(255, 255, 255, 0.7);
  89. font-size: 12px;
  90. background-color: rgba(0, 0, 0, 0.3);
  91. padding: 4px 8px;
  92. border-radius: 4px;
  93. }
  94. /* Rewards Section */
  95. .quest-item-rewards {
  96. background-color: rgba(0, 0, 0, 0.3);
  97. border-radius: 6px;
  98. padding: 8px;
  99. margin-top: 4px;
  100. }
  101. .rewards-label {
  102. color: rgb(255, 215, 0);
  103. font-size: 14px;
  104. -unity-font-style: bold;
  105. margin-bottom: 4px;
  106. }
  107. .rewards-content {
  108. flex-direction: row;
  109. flex-wrap: wrap;
  110. }
  111. .quest-item-reward {
  112. background-color: rgba(255, 255, 255, 0.1);
  113. color: rgb(255, 255, 255);
  114. padding: 4px 8px;
  115. margin: 2px;
  116. border-radius: 4px;
  117. font-size: 12px;
  118. -unity-font-style: bold;
  119. }
  120. .reward-gold {
  121. background-color: rgba(255, 215, 0, 0.2);
  122. border: 1px solid rgba(255, 215, 0, 0.5);
  123. color: rgb(255, 215, 0);
  124. }
  125. .reward-renown {
  126. background-color: rgba(63, 81, 181, 0.2);
  127. border: 1px solid rgba(63, 81, 181, 0.5);
  128. color: rgb(144, 164, 236);
  129. }
  130. .quest-requirements {
  131. color: rgba(255, 152, 0, 0.9);
  132. font-size: 11px;
  133. margin-top: 4px;
  134. -unity-font-style: italic;
  135. }
  136. /* Placeholder text */
  137. .placeholder-text {
  138. color: rgba(255, 255, 255, 0.5);
  139. font-size: 14px;
  140. -unity-text-align: middle-center;
  141. padding: 20px;
  142. -unity-font-style: italic;
  143. }
  144. /* Instructions text */
  145. .instructions-text {
  146. color: rgb(255, 215, 0);
  147. font-size: 14px;
  148. -unity-text-align: middle-center;
  149. padding: 12px;
  150. margin-bottom: 8px;
  151. background-color: rgba(255, 215, 0, 0.1);
  152. border-radius: 6px;
  153. border: 1px solid rgba(255, 215, 0, 0.3);
  154. -unity-font-style: bold;
  155. }
  156. /* Debug button */
  157. .debug-button {
  158. background-color: rgba(255, 152, 0, 0.8);
  159. color: rgb(0, 0, 0);
  160. border-radius: 4px;
  161. padding: 8px;
  162. margin: 8px;
  163. -unity-font-style: bold;
  164. }
  165. .debug-button:hover {
  166. background-color: rgba(255, 152, 0, 1.0);
  167. }
  168. /* Tab system */
  169. .tab-button {
  170. background-color: rgba(60, 60, 60, 0.8);
  171. color: rgba(255, 255, 255, 0.7);
  172. border-width: 1px;
  173. border-color: rgba(100, 100, 100, 0.5);
  174. padding: 8px 16px;
  175. -unity-font-style: bold;
  176. }
  177. .tab-button:hover {
  178. background-color: rgba(80, 80, 80, 0.9);
  179. color: rgb(255, 255, 255);
  180. }
  181. .active-tab {
  182. background-color: rgba(255, 215, 0, 0.2);
  183. color: rgb(255, 215, 0);
  184. border-color: rgb(255, 215, 0);
  185. }
  186. /* Action buttons */
  187. .action-button {
  188. padding: 12px 24px;
  189. font-size: 16px;
  190. -unity-font-style: bold;
  191. border-radius: 6px;
  192. margin: 4px;
  193. }
  194. .accept-button {
  195. background-color: rgba(76, 175, 80, 0.9);
  196. color: rgb(255, 255, 255);
  197. border: 2px solid rgba(76, 175, 80, 1.0);
  198. }
  199. .accept-button:hover {
  200. background-color: rgba(76, 175, 80, 1.0);
  201. scale: 1.05;
  202. }
  203. .abandon-button {
  204. background-color: rgba(244, 67, 54, 0.9);
  205. color: rgb(255, 255, 255);
  206. border: 2px solid rgba(244, 67, 54, 1.0);
  207. }
  208. .abandon-button:hover {
  209. background-color: rgba(244, 67, 54, 1.0);
  210. scale: 1.05;
  211. }
  212. /* Refresh button */
  213. .refresh-button {
  214. background-color: rgba(33, 150, 243, 0.8);
  215. color: rgb(255, 255, 255);
  216. border-radius: 4px;
  217. padding: 6px 12px;
  218. -unity-font-style: bold;
  219. }
  220. .refresh-button:hover {
  221. background-color: rgba(33, 150, 243, 1.0);
  222. }
  223. /* Quest details panel */
  224. .quest-details-panel {
  225. background-color: rgba(30, 30, 30, 0.95);
  226. border-radius: 8px;
  227. padding: 16px;
  228. }
  229. /* General panel styling */
  230. .content-panel {
  231. background-color: rgba(40, 40, 40, 0.9);
  232. border-radius: 8px;
  233. padding: 16px;
  234. margin: 8px;
  235. }
  236. .panel-header {
  237. flex-direction: row;
  238. justify-content: space-between;
  239. align-items: center;
  240. margin-bottom: 12px;
  241. padding-bottom: 8px;
  242. border-bottom-width: 1px;
  243. border-bottom-color: rgba(255, 255, 255, 0.2);
  244. }
  245. .panel-title {
  246. font-size: 20px;
  247. color: rgb(255, 215, 0);
  248. -unity-font-style: bold;
  249. }
  250. /* Urgency indicators for active quests */
  251. .urgency-low {
  252. border-left-width: 4px;
  253. border-left-color: rgba(76, 175, 80, 0.8);
  254. }
  255. .urgency-medium {
  256. border-left-width: 4px;
  257. border-left-color: rgba(255, 193, 7, 0.8);
  258. }
  259. .urgency-high {
  260. border-left-width: 4px;
  261. border-left-color: rgba(255, 152, 0, 0.8);
  262. }
  263. .urgency-critical {
  264. border-left-width: 4px;
  265. border-left-color: rgba(244, 67, 54, 0.8);
  266. }
  267. /* Hidden class */
  268. .hidden {
  269. display: none;
  270. }