legal.css 575 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .strand{
  2. justify-content: center;
  3. }
  4. .strand{
  5. margin: 50px;
  6. }
  7. .content{
  8. display: flex;
  9. flex-direction: column;
  10. align-items: center;
  11. border: 2px solid black;
  12. box-shadow: -5px -5px 5px rgb(0, 27, 45) inset;
  13. padding: 30px;
  14. text-align: justify;
  15. max-width: 800px;
  16. max-height: 65vh;
  17. overflow-y: auto;
  18. }
  19. .content > *{
  20. margin: 15px;
  21. }
  22. ol{
  23. list-style: decimal inside none;
  24. }
  25. ol > *{
  26. margin: 10px;
  27. }
  28. #legalStrand .contactInfo{
  29. margin: 0 15px;
  30. }
  31. #legalStrand .last{
  32. margin-bottom: 35px;
  33. }