A corporation manager and dashboard for EVE Online
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

main.css 1.7 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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.75);
  33. border-color: #4A4A4A;
  34. }
  35. main {
  36. margin: 2em auto;
  37. padding: 0.5em 1.5em;
  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: #BABABA;
  81. text-decoration: none;
  82. }
  83. header .aligned {
  84. vertical-align: middle;
  85. }
  86. #corp-masthead {
  87. height: 30px;
  88. margin-right: 0.25em;
  89. }
  90. #login-button {
  91. height: 30px;
  92. }
  93. #error pre {
  94. white-space: pre-wrap;
  95. }