A corporation manager and dashboard for EVE Online
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.
 
 
 
 
 

272 lines
4.2 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. .last-updated {
  169. margin-bottom: 1em;
  170. font-size: 90%;
  171. font-style: italic;
  172. }
  173. @media (min-width: 800px) {
  174. #operations {
  175. margin: 1em 0;
  176. }
  177. #operations section {
  178. margin-bottom: 2em;
  179. }
  180. .operation:not(.detail) {
  181. margin: 0 0.75em;
  182. text-align: center;
  183. }
  184. .operation:not(.detail) .secondary {
  185. margin-top: 0.5em;
  186. }
  187. .operation .secondary .unit {
  188. margin-left: 0.15em;
  189. }
  190. .operation .summary .contents {
  191. display: inline-block;
  192. margin-bottom: -4px;
  193. }
  194. }
  195. @media (max-width: 799px) {
  196. #operations section {
  197. flex-direction: column;
  198. }
  199. .operation {
  200. margin: 0.5em 0;
  201. }
  202. .operation .overview {
  203. margin-left: 1em;
  204. }
  205. .operation .primary, .operation .primary .unit {
  206. display: inline-block;
  207. }
  208. .operation .unit {
  209. margin-left: 0.15em;
  210. }
  211. .operation .board:not(.expanded) {
  212. width: 100%;
  213. }
  214. }