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.
 
 
 
 
 

78 lines
956 B

  1. .map-1 {
  2. display: flex;
  3. }
  4. .map-2 {
  5. flex: 1;
  6. padding: 0;
  7. }
  8. .map-3 {
  9. height: 100%;
  10. }
  11. @media (min-width: 800px) {
  12. .map-2 {
  13. max-width: none;
  14. margin: 2em;
  15. }
  16. }
  17. #map {
  18. position: relative;
  19. }
  20. #map svg {
  21. display: block;
  22. }
  23. #map .system {
  24. fill: currentColor;
  25. }
  26. #map .jump {
  27. stroke: #585448;
  28. }
  29. #map .controls {
  30. display: none;
  31. position: absolute;
  32. top: 0;
  33. right: 0;
  34. padding: 0.5em;
  35. background-color: rgba(0, 0, 0, 0.75);
  36. text-align: right;
  37. }
  38. #map .controls .label {
  39. font-size: 85%;
  40. }
  41. #map .system.neutral {
  42. color: #777;
  43. }
  44. #map .system.faction {
  45. color: #AAA;
  46. }
  47. #map .system.faction-amarr-empire {
  48. color: #FFDE78;
  49. }
  50. #map .system.faction-caldari-state {
  51. color: #99CCEE;
  52. }
  53. #map .system.faction-gallente-federation {
  54. color: #66BB99;
  55. }
  56. #map .system.faction-minmatar-republic {
  57. color: #D89988;
  58. }
  59. #map .system.faction-jove-empire {
  60. color: #444;
  61. }