terms.css 953 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .termsPanel {
  2. position: absolute;
  3. top: 0px;
  4. right: 0px;
  5. width: 100%;
  6. height: 100%;
  7. background: #ffffff;
  8. }
  9. .termsPanel .content {
  10. width: calc(100% - 80px);
  11. height: calc(100% - 80px);
  12. padding: 40px;
  13. font-size: 20px;
  14. color: #000;
  15. line-height: 1.7;
  16. overflow: hidden;
  17. overflow-y: auto;
  18. }
  19. .termsPanel .close {
  20. position: absolute;
  21. top: -15px;
  22. right: 25px;
  23. font-size: 50px;
  24. font-weight: 100;
  25. color: #aaaaaa;
  26. cursor: pointer;
  27. }
  28. .header {
  29. text-align: center;
  30. margin-bottom: 16px;
  31. font-weight: bold;
  32. color: #000;
  33. font-size: 25px;
  34. }
  35. .termsPanel .content-box {
  36. width: 100%;
  37. height: 100%;
  38. }
  39. .termsPanel .underline {
  40. text-decoration: underline;
  41. }
  42. .termsPanel .level-one-title,
  43. .termsPanel .level-two-title {
  44. font-weight: bold;
  45. margin-top: 5px;
  46. }
  47. .termsPanel ol li {
  48. text-indent: 1em;
  49. }
  50. .termsPanel ol li p {
  51. text-indent: 2em;
  52. }