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.
 
 
 
 
 

80 lignes
1.1 KiB

  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. padding: 1em;
  26. }
  27. main {
  28. margin: 2em auto;
  29. border: 1px solid #364A5F;
  30. }
  31. header > div, footer > div {
  32. margin: 0 auto;
  33. }
  34. header > div > div {
  35. display: inline-block;
  36. vertical-align: middle;
  37. }
  38. header > div > .left {
  39. text-align: left;
  40. width: 70%;
  41. }
  42. header > div > .right {
  43. text-align: right;
  44. width: 30%;
  45. }
  46. header {
  47. font-size: 120%;
  48. border-bottom: 1px solid #364A5F;
  49. }
  50. footer {
  51. font-size: 85%;
  52. border-top: 1px solid #364A5F;
  53. }
  54. a {
  55. color: #78CEFF;
  56. text-decoration: none;
  57. }
  58. a:hover {
  59. color: #68BEDD;
  60. text-decoration: underline;
  61. }
  62. #error pre {
  63. white-space: pre-wrap;
  64. }