information.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. *{margin:0;padding:0;}
  2. .header{
  3. display: flex;
  4. justify-content: space-between;
  5. background: #001b2d;
  6. width: 100%;
  7. height: 75px;
  8. }
  9. .headerStart{
  10. display: flex;
  11. align-items:center;
  12. text-decoration: none;
  13. margin-left: 25px;
  14. width: 275px;
  15. }
  16. .headerStart img{
  17. max-height: 75%;
  18. }
  19. .headerLogo{
  20. color: white;
  21. font-size: 25px;
  22. margin-left: 10px;
  23. }
  24. .mobileHomeButton{
  25. display: none;
  26. }
  27. .headerEnd{
  28. display: flex;
  29. align-items: center;
  30. justify-content: flex-end;
  31. margin-right: 25px;
  32. }
  33. .headerEnd > *{
  34. margin-left: 20px;
  35. }
  36. .headerEnd a{
  37. color: rgb(255, 99, 107);
  38. }
  39. body{
  40. display: flex;
  41. flex-direction: column;
  42. align-items: center;
  43. }
  44. ol{
  45. list-style: decimal inside none;
  46. }
  47. ol > *{
  48. margin: 10px;
  49. }
  50. .content{
  51. padding: 50px;
  52. width: 75%;
  53. }
  54. .content > *{
  55. margin: 15px;
  56. }
  57. /*
  58. HELP PAGE
  59. */
  60. .helpMenu{
  61. position: fixed;
  62. top: 75px;
  63. left: 0;
  64. padding: 100px 50px;
  65. }
  66. .helpMenu ul{
  67. list-style-type: none;
  68. }
  69. .indent{
  70. margin-left: 20px;
  71. }
  72. .helpContent{
  73. text-align: center;
  74. width: 50%;
  75. padding: 50px;
  76. }
  77. .helpContent h2, .helpContent h3, .helpContent h4{
  78. margin: 20px 0;
  79. }
  80. .helpContent h2{
  81. font-size: 25px;
  82. }
  83. .helpContent p{
  84. margin: 15px 0;
  85. text-align: left;
  86. font-size: 20px;
  87. }
  88. @media screen and (max-width: 1400px){
  89. @media (orientation: portrait){
  90. .helpMenu{
  91. position: static;
  92. padding: 0;
  93. }
  94. .helpContent{
  95. padding: 0;
  96. width: 90%;
  97. }
  98. .helpContent h2, .helpContent h3, .helpContent h4{
  99. text-align: center;
  100. }
  101. .helpContent p{
  102. text-align: justify;
  103. }
  104. .content{
  105. width: 90%;
  106. }
  107. }
  108. @media (orientation: landscape){
  109. body{
  110. align-items: flex-end;
  111. }
  112. .helpMenu{
  113. position: absolute;
  114. margin: 0;
  115. padding: 10px 25px;
  116. width: 25%;
  117. }
  118. .helpContent{
  119. margin: 0;
  120. padding: 10px;
  121. width: 65%;
  122. }
  123. }
  124. }