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.
 
 
 
 
 

199 lines
2.9 KiB

  1. @import url(//fonts.googleapis.com/css?family=Open+Sans:400,400italic,700);
  2. body {
  3. display: flex;
  4. min-height: 100vh;
  5. flex-direction: column;
  6. margin: 0;
  7. font-family: "Open Sans", sans-serif;
  8. line-height: 1.3;
  9. color: #EAEAEA;
  10. background-color: black;
  11. background-size: cover;
  12. background-position: center;
  13. background-attachment: fixed;
  14. }
  15. a {
  16. color: #78CEFF;
  17. text-decoration: none;
  18. }
  19. a:hover {
  20. color: #68BEDD;
  21. text-decoration: underline;
  22. }
  23. h1 {
  24. margin-top: 0.5em;
  25. }
  26. #container {
  27. display: flex;
  28. flex: 1;
  29. }
  30. #container > div {
  31. width: 100%;
  32. }
  33. main, header, footer {
  34. background-color: rgba(0, 0, 0, 0.8);
  35. border-color: #4A4A4A;
  36. }
  37. main {
  38. border-width: 1px;
  39. border-style: solid;
  40. }
  41. header {
  42. border-bottom-width: 1px;
  43. border-bottom-style: solid;
  44. }
  45. footer {
  46. padding: 0.5em 0;
  47. font-size: 85%;
  48. text-align: center;
  49. color: #BABABA;
  50. border-top-width: 1px;
  51. border-top-style: solid;
  52. }
  53. header > div, footer > div {
  54. margin: 0 auto;
  55. }
  56. header > div > div {
  57. display: inline-block;
  58. }
  59. @media (min-width: 800px) {
  60. main, header > div, footer > div {
  61. max-width: 1000px;
  62. width: 80%;
  63. }
  64. main {
  65. margin: 2em auto;
  66. padding: 0.5em 1.5em;
  67. }
  68. footer > div {
  69. padding: 0.5em 1.5em;
  70. }
  71. header > div > .left {
  72. margin: 0.5em 1.5em 0.5em 0;
  73. }
  74. header > div > .right {
  75. margin: 0.5em 0;
  76. float: right;
  77. }
  78. }
  79. @media (max-width: 799px) {
  80. main {
  81. margin: 1.5em auto;
  82. padding: 0 1em;
  83. }
  84. footer > div {
  85. padding: 0.5em 1em;
  86. }
  87. header > div > div {
  88. margin: 0.5em 1em;
  89. }
  90. header > div > .left {
  91. margin-bottom: 0em;
  92. }
  93. }
  94. header .aligned {
  95. vertical-align: middle;
  96. }
  97. header .spacer {
  98. height: 32px;
  99. visibility: hidden;
  100. }
  101. header nav {
  102. display: inline-block;
  103. margin-left: 1.5em;
  104. }
  105. footer ul {
  106. margin: 0;
  107. padding: 0;
  108. }
  109. footer ul li {
  110. display: inline-block;
  111. list-style: none;
  112. }
  113. footer ul li:not(:last-child):after {
  114. content: " \00b7";
  115. }
  116. #corp-masthead {
  117. height: 32px;
  118. margin-right: 0.25em;
  119. }
  120. #corp-title {
  121. font-size: 120%;
  122. color: #EAEAEA;
  123. }
  124. #corp-title:hover {
  125. color: #BABABA;
  126. text-decoration: none;
  127. }
  128. #character-portrait {
  129. height: 32px;
  130. margin-right: 0.25em;
  131. box-sizing: border-box;
  132. border-width: 1px;
  133. border-style: solid;
  134. }
  135. #flashes {
  136. margin-top: 0.5em;
  137. }
  138. #flashes > div {
  139. padding: 0.5em 0.75em;
  140. border-left-width: 4px;
  141. border-left-style: solid;
  142. }
  143. #flashes > .success {
  144. border-color: #33AA22;
  145. background-color: rgba(60, 255, 30, 0.2);
  146. }
  147. #flashes > .error {
  148. border-color: #AA3322;
  149. background-color: rgba(255, 60, 30, 0.2);
  150. }
  151. #error pre {
  152. white-space: pre-wrap;
  153. }
  154. #login-button {
  155. height: 30px;
  156. padding-bottom: 2px;
  157. }
  158. #logout-form {
  159. margin-bottom: 1em;
  160. }