information.css 259 B

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