privacy.css 842 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*========================================
  2. PRIVACY PAGE STYLE
  3. =========================================*/
  4. .scrollspy {
  5. position: relative;
  6. }
  7. .scrollspy-content {
  8. margin-bottom: 50px;
  9. }
  10. .scrollspy-content:last-child {
  11. margin-bottom: 0px;
  12. }
  13. .scrollspy-content h3 {
  14. margin-bottom: 20px;
  15. padding-left: 50px;
  16. position: relative;
  17. font-size:18px;
  18. }
  19. .scrollspy-content h3::before {
  20. position: absolute;
  21. content: "\f249";
  22. top: 50%;
  23. left: 0px;
  24. width: 35px;
  25. height: 35px;
  26. font-size: 16px;
  27. font-family: icofont;
  28. -webkit-transform: translateY(-50%);
  29. transform: translateY(-50%);
  30. line-height: 35px;
  31. border-radius: 50%;
  32. text-align: center;
  33. color: var(--white);
  34. background: var(--primary);
  35. font-family : "Font Awesome 5 Free";
  36. }
  37. .scrollspy-content p {max-height:500px; overflow-y:scroll;}