Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

187 Zeilen
3.0 KiB

  1. @import "../../../css/colors.less";
  2. .uiSmithing {
  3. display: none;
  4. background-color: @blackB;
  5. border: 5px solid @blackB;
  6. text-align: center;
  7. > .heading {
  8. color: @blueA;
  9. width: 100%;
  10. height: 36px;
  11. background-color: @blackB;
  12. .heading-text {
  13. padding-top: 8px;
  14. margin: auto;
  15. }
  16. }
  17. .bottom {
  18. height: 170px;
  19. background-color: @blackC;
  20. padding: 10px;
  21. }
  22. .col {
  23. float: left;
  24. margin-right: 10px;
  25. &:last-child {
  26. margin-right: 0px;
  27. }
  28. .heading {
  29. width: 80px;
  30. height: 16px;
  31. color: @white;
  32. text-align: center;
  33. margin-bottom: 10px;
  34. }
  35. .content {
  36. width: 80px;
  37. height: 80px;
  38. background-color: @blackD;
  39. &.chance {
  40. padding-top: 32px;
  41. color: @white;
  42. text-align: center;
  43. }
  44. &.item-picker,
  45. &.actionButton {
  46. cursor: pointer;
  47. &:hover {
  48. background-color: @blackC;
  49. }
  50. }
  51. &.item-picker {
  52. > .icon {
  53. margin: 8px;
  54. display: inline-block;
  55. width: 64px;
  56. height: 64px;
  57. background: url('../../../images/uiIcons.png') -256px -64px;
  58. }
  59. }
  60. &.actionButton {
  61. padding: 8px;
  62. .icon {
  63. width: 64px;
  64. height: 64px;
  65. background: url('../../../images/uiIcons.png') -192px -64px;
  66. }
  67. }
  68. .item {
  69. width: 100%;
  70. height: 100%;
  71. float: left;
  72. position: relative;
  73. cursor: pointer;
  74. box-sizing: border-box;
  75. .quantity {
  76. left: 6px;
  77. bottom: 3px;
  78. position: absolute;
  79. color: @white;
  80. filter: drop-shadow(0px -2px 0px @blackD)
  81. drop-shadow(0px 2px 0px @blackD)
  82. drop-shadow(2px 0px 0px @blackD)
  83. drop-shadow(-2px 0px 0px @blackD);
  84. -moz-filter: drop-shadow(0px -2px 0px @blackD)
  85. drop-shadow(0px 2px 0px @blackD)
  86. drop-shadow(2px 0px 0px @blackD)
  87. drop-shadow(-2px 0px 0px @blackD);
  88. &.red {
  89. color: @red;
  90. }
  91. }
  92. .icon {
  93. width: 64px;
  94. height: 64px;
  95. position: absolute;
  96. left: 8px;
  97. top: 8px;
  98. filter: brightness(100%)
  99. drop-shadow(0px -4px 0px @blackD)
  100. drop-shadow(0px 4px 0px @blackD)
  101. drop-shadow(4px 0px 0px @blackD)
  102. drop-shadow(-4px 0px 0px @blackD);
  103. -moz-filter: brightness(100%)
  104. drop-shadow(0px -4px 0px @blackD)
  105. drop-shadow(0px 4px 0px @blackD)
  106. drop-shadow(4px 0px 0px @blackD)
  107. drop-shadow(-4px 0px 0px @blackD);
  108. }
  109. }
  110. }
  111. &:first-child {
  112. .heading {
  113. width: 190px;
  114. }
  115. .content {
  116. width: 190px;
  117. background-color: transparent;
  118. .col-btn {
  119. height: calc((100% - 10px) / 2);
  120. width: 100%;
  121. color: #f2f5f5;
  122. text-align: center;
  123. padding-top: 10px;
  124. background-color: @blackB;
  125. margin-bottom: 10px;
  126. cursor: pointer;
  127. &.selected {
  128. color: @orangeA;
  129. }
  130. &:hover {
  131. background-color: @blackA;
  132. }
  133. &.col-half {
  134. width: calc((100% - 10px) / 2);
  135. float: left;
  136. &:nth-child(2n + 1) {
  137. margin-right: 10px;
  138. }
  139. }
  140. &:not(.col-half) {
  141. clear: both;
  142. }
  143. }
  144. }
  145. }
  146. }
  147. }