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.
 
 
 
 
 

312 lines
4.8 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 {
  164. display: inline-block;
  165. margin: 0;
  166. padding: 0;
  167. list-style: none;
  168. }
  169. .operation.detail .detail-list li {
  170. display: inline-block;
  171. }
  172. .operation.detail .detail-list li:not(:last-child)::after {
  173. margin-left: 0.25em;
  174. content: "/";
  175. color: #777;
  176. }
  177. .change-sort {
  178. display: inline-block;
  179. margin: 0;
  180. padding: 0;
  181. }
  182. .change-sort li {
  183. display: inline-block;
  184. }
  185. .change-sort .cur {
  186. font-weight: bold;
  187. }
  188. .change-sort::before {
  189. content: "[";
  190. color: #777;
  191. }
  192. .change-sort::after {
  193. content: "]";
  194. color: #777;
  195. }
  196. .change-sort li:not(:last-child)::after {
  197. content: " |";
  198. color: #777;
  199. }
  200. .last-updated {
  201. margin-bottom: 1em;
  202. font-size: 90%;
  203. font-style: italic;
  204. }
  205. @media (min-width: 800px) {
  206. #operations {
  207. margin: 1em 0;
  208. }
  209. #operations section {
  210. margin-bottom: 2em;
  211. }
  212. .operation:not(.detail) {
  213. margin: 0 0.75em;
  214. text-align: center;
  215. }
  216. .operation:not(.detail) .secondary {
  217. margin-top: 0.5em;
  218. }
  219. .operation .secondary .unit {
  220. margin-left: 0.15em;
  221. }
  222. .operation .summary .contents {
  223. display: inline-block;
  224. margin-bottom: -4px;
  225. }
  226. }
  227. @media (max-width: 799px) {
  228. #operations section {
  229. flex-direction: column;
  230. }
  231. .operation {
  232. margin: 0.5em 0;
  233. }
  234. .operation .overview {
  235. margin-left: 1em;
  236. }
  237. .operation .primary, .operation .primary .unit {
  238. display: inline-block;
  239. }
  240. .operation .unit {
  241. margin-left: 0.15em;
  242. }
  243. .operation .board:not(.expanded) {
  244. width: 100%;
  245. }
  246. }