information.css 782 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. }