A corporation manager and dashboard for EVE Online
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

266 lines
4.1 KiB

  1. #campaigns-select {
  2. display: inline-block;
  3. padding-right: 1em;
  4. background: transparent 100% 50%/contain no-repeat;
  5. border-width: 1px;
  6. }
  7. #campaigns-select select {
  8. max-width: 120px;
  9. padding: 0 0.25em;
  10. font-size: 100%;
  11. color: inherit;
  12. background: transparent;
  13. border: none;
  14. appearance: none;
  15. -webkit-appearance: none;
  16. -moz-appearance: none;
  17. }
  18. h2 .disabled {
  19. color: #989898;
  20. text-decoration: line-through;
  21. }
  22. h2 .disabled-info {
  23. margin-left: 0.5em;
  24. color: #989898;
  25. font-size: 85%;
  26. font-variant: none;
  27. }
  28. .breadcrumb {
  29. margin-top: 1em;
  30. font-size: 90%;
  31. }
  32. .breadcrumb::after {
  33. content: "»";
  34. }
  35. #operations {
  36. margin-bottom: 1em;
  37. }
  38. #operations section {
  39. display: flex;
  40. }
  41. .operation {
  42. flex: 1;
  43. }
  44. .operation .primary .num {
  45. height: 60px;
  46. line-height: 60px;
  47. }
  48. .operation .big {
  49. font-size: 300%;
  50. }
  51. .operation .medium {
  52. font-size: 200%;
  53. }
  54. .operation .small {
  55. font-size: 150%;
  56. }
  57. .operation .secondary {
  58. font-size: 105%;
  59. }
  60. .operation .unit {
  61. font-style: italic;
  62. }
  63. .operation .summary {
  64. font-size: 14px;
  65. }
  66. .operation .summary .head {
  67. margin-top: 1em;
  68. font-weight: normal;
  69. }
  70. .operation .summary .contents {
  71. position: relative;
  72. margin-top: 0.5em;
  73. border: 1px solid #282828;
  74. }
  75. .operation .board {
  76. border-spacing: 0;
  77. border-collapse: collapse;
  78. text-align: left;
  79. }
  80. .operation .board:not(.expanded) tr:nth-child(2n) {
  81. background-color: #181818;
  82. }
  83. .operation .board:not(.expanded) tr:nth-child(2n+1) {
  84. background-color: #0A0A0A;
  85. }
  86. .operation .board td {
  87. padding: 0.25em 0;
  88. }
  89. .operation .board td:first-child {
  90. padding-left: 1em;
  91. }
  92. .operation .board td:last-child {
  93. padding-right: 1em;
  94. }
  95. .operation .board .fluid {
  96. padding-right: 0.5em;
  97. }
  98. .operation:not(.detail) .board .icon {
  99. width: 46px;
  100. }
  101. .operation.detail .board .icon {
  102. width: 52px;
  103. }
  104. .operation .board.expanded {
  105. position: absolute;
  106. z-index: 1;
  107. transition: clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  108. clip-path: inset(0 100% 0 0);
  109. }
  110. .operation:not(.detail) .board:not(.expanded) .extra {
  111. display: none;
  112. }
  113. .operation .board.expanded .spacer {
  114. display: none;
  115. }
  116. .operation .board img {
  117. vertical-align: middle;
  118. }
  119. .operation:not(.detail) .board img {
  120. width: 42px;
  121. height: 42px;
  122. }
  123. .operation.detail .board img {
  124. width: 48px;
  125. height: 48px;
  126. }
  127. .operation .board abbr {
  128. border-bottom: none;
  129. }
  130. .operation .board a:hover {
  131. text-decoration: none;
  132. }
  133. .operation .itemboard td:last-child {
  134. padding-left: 0.5em;
  135. text-align: right;
  136. }
  137. .operation .itemboard .count {
  138. font-weight: bold;
  139. }
  140. .operation .itemboard .count::before {
  141. content: "×";
  142. font-weight: normal;
  143. color: #AAA;
  144. }
  145. .operation.detail {
  146. margin-bottom: 1em;
  147. }
  148. .operation.detail .overview {
  149. margin-left: 1em;
  150. }
  151. .operation.detail .primary, .operation.detail .primary .unit {
  152. display: inline-block;
  153. }
  154. .operation.detail .unit {
  155. margin-left: 0.15em;
  156. }
  157. .operation.detail .contents, .operation.detail .board:not(.expanded) {
  158. width: 100%;
  159. }
  160. .operation.detail .detail-item {
  161. padding-left: 0.5em;
  162. }
  163. .operation.detail .detail-list > :not(:last-child)::after {
  164. margin-left: 0.25em;
  165. content: "/";
  166. color: #AAA;
  167. }
  168. @media (min-width: 800px) {
  169. #operations {
  170. margin: 1em 0;
  171. }
  172. #operations section {
  173. margin-bottom: 2em;
  174. }
  175. .operation:not(.detail) {
  176. margin: 0 0.75em;
  177. text-align: center;
  178. }
  179. .operation:not(.detail) .secondary {
  180. margin-top: 0.5em;
  181. }
  182. .operation .secondary .unit {
  183. margin-left: 0.15em;
  184. }
  185. .operation .summary .contents {
  186. display: inline-block;
  187. margin-bottom: -4px;
  188. }
  189. }
  190. @media (max-width: 799px) {
  191. #operations section {
  192. flex-direction: column;
  193. }
  194. .operation {
  195. margin: 0.5em 0;
  196. }
  197. .operation .overview {
  198. margin-left: 1em;
  199. }
  200. .operation .primary, .operation .primary .unit {
  201. display: inline-block;
  202. }
  203. .operation .unit {
  204. margin-left: 0.15em;
  205. }
  206. .operation .board:not(.expanded) {
  207. width: 100%;
  208. }
  209. }