| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- body{
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- ol{
- list-style: decimal inside none;
- }
- ol > *{
- margin: 10px;
- }
- .content{
- padding: 50px;
- width: 75%;
- }
- .content > *{
- margin: 15px;
- }
- /*
- HELP PAGE
- */
- .helpMenu{
- position: fixed;
- top: 75px;
- left: 0;
- padding: 100px 50px;
- }
- .helpMenu ul{
- list-style-type: none;
- }
- .indent{
- margin-left: 20px;
- }
- .helpContent{
- text-align: center;
- width: 50%;
- padding: 50px;
- }
- .helpContent h2, .helpContent h3, .helpContent h4{
- margin: 20px 0;
- }
- .helpContent h2{
- font-size: 25px;
- }
- .helpContent p{
- margin: 15px 0;
- text-align: left;
- font-size: 20px;
- }
- @media screen and (max-width: 600px){
- .helpMenu{
- position: static;
- padding: 0;
- }
- .helpContent{
- padding: 0;
- width: 90%;
- }
- .helpContent h2, .helpContent h3, .helpContent h4{
- text-align: center;
- }
- .helpContent p{
- text-align: justify;
- }
- }
|