information.css 735 B

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