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
977 B

  1. /* FONT... */
  2. /* MOBILE... */
  3. body {
  4. display: flex;
  5. min-height: 100vh;
  6. flex-direction: column;
  7. margin: 0;
  8. font-family: sans-serif;
  9. background-color: #173350;
  10. color: #E6EAEF;
  11. }
  12. #container {
  13. display: flex;
  14. flex: 1;
  15. }
  16. #container > div {
  17. width: 100%;
  18. }
  19. main, header, footer {
  20. background-color: rgba(0, 0, 0, 0.85);
  21. }
  22. main, header > div, footer > div {
  23. max-width: 1000px;
  24. width: 80%;
  25. }
  26. main {
  27. margin: 2em auto;
  28. padding: 1em;
  29. }
  30. header > div {
  31. margin: 0 auto;
  32. padding: 1.5em;
  33. }
  34. header > div > div {
  35. display: inline-block;
  36. }
  37. header > div > .left {
  38. text-align: left;
  39. width: 70%;
  40. }
  41. header > div > .right {
  42. text-align: right;
  43. width: 30%;
  44. }
  45. footer {
  46. font-size: 85%;
  47. }
  48. footer > div {
  49. margin: 0 auto;
  50. padding: 1em;
  51. }
  52. a {
  53. color: #78CEFF;
  54. text-decoration: none;
  55. }
  56. a:hover {
  57. color: #68BEDD;
  58. text-decoration: underline;
  59. }
  60. #error pre {
  61. white-space: pre-wrap;
  62. }