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.
 
 
 
 
 

117 lines
1.6 KiB

  1. /* MOBILE... */
  2. @import url(//fonts.googleapis.com/css?family=Open+Sans:400,400italic,700);
  3. body {
  4. display: flex;
  5. min-height: 100vh;
  6. flex-direction: column;
  7. margin: 0;
  8. font-family: "Open Sans", sans-serif;
  9. line-height: 1.3;
  10. color: #EAEAEA;
  11. background-color: black;
  12. background-size: cover;
  13. background-position: center;
  14. background-attachment: fixed;
  15. }
  16. a {
  17. color: #78CEFF;
  18. text-decoration: none;
  19. }
  20. a:hover {
  21. color: #68BEDD;
  22. text-decoration: underline;
  23. }
  24. #container {
  25. display: flex;
  26. flex: 1;
  27. }
  28. #container > div {
  29. width: 100%;
  30. }
  31. main, header, footer {
  32. background-color: rgba(0, 0, 0, 0.8);
  33. border-color: #4A4A4A;
  34. }
  35. main {
  36. margin: 2em auto;
  37. padding: 0 1em;
  38. border-width: 1px;
  39. border-style: solid;
  40. }
  41. header {
  42. font-size: 120%;
  43. border-bottom-width: 1px;
  44. border-bottom-style: solid;
  45. }
  46. footer {
  47. font-size: 85%;
  48. text-align: center;
  49. color: #BABABA;
  50. border-top-width: 1px;
  51. border-top-style: solid;
  52. }
  53. main, header > div, footer > div {
  54. max-width: 1000px;
  55. width: 80%;
  56. }
  57. header > div {
  58. margin: 0 auto;
  59. padding: 0.5em;
  60. }
  61. footer > div {
  62. margin: 0 auto;
  63. padding: 1em;
  64. }
  65. header > div > div {
  66. display: inline-block;
  67. }
  68. header > div > .left {
  69. text-align: left;
  70. width: 70%;
  71. }
  72. header > div > .right {
  73. text-align: right;
  74. width: 30%;
  75. }
  76. header a {
  77. color: #EAEAEA;
  78. }
  79. header a:hover {
  80. color: #CACACA;
  81. }
  82. header .aligned {
  83. vertical-align: middle;
  84. }
  85. #corp-masthead {
  86. height: 30px;
  87. margin-right: 0.5em;
  88. }
  89. #login-button {
  90. height: 30px;
  91. }
  92. #error pre {
  93. white-space: pre-wrap;
  94. }