information.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. body{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. }
  6. ol{
  7. list-style: decimal inside none;
  8. }
  9. ol > *{
  10. margin: 10px;
  11. }
  12. .content{
  13. padding: 50px;
  14. width: 75%;
  15. }
  16. .content > *{
  17. margin: 15px;
  18. }
  19. /*
  20. HELP PAGE
  21. */
  22. .helpMenu{
  23. position: fixed;
  24. top: 75px;
  25. left: 0;
  26. padding: 100px 50px;
  27. }
  28. .helpMenu ul{
  29. list-style-type: none;
  30. }
  31. .indent{
  32. margin-left: 20px;
  33. }
  34. .helpContent{
  35. text-align: center;
  36. width: 50%;
  37. padding: 50px;
  38. }
  39. .helpContent h2, .helpContent h3, .helpContent h4{
  40. margin: 20px 0;
  41. }
  42. .helpContent h2{
  43. font-size: 25px;
  44. }
  45. .helpContent p{
  46. margin: 15px 0;
  47. text-align: left;
  48. font-size: 20px;
  49. }
  50. @media screen and (max-width: 600px){
  51. .helpMenu{
  52. position: static;
  53. padding: 0;
  54. }
  55. .helpContent{
  56. padding: 0;
  57. width: 90%;
  58. }
  59. .helpContent h2, .helpContent h3, .helpContent h4{
  60. text-align: center;
  61. }
  62. .helpContent p{
  63. text-align: justify;
  64. }
  65. }