_links.scss 1021 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. // This file is part of the DITA Open Toolkit project.
  2. //
  3. // Copyright 2016 Roger Sheen
  4. //
  5. // See the accompanying LICENSE file for applicable license.
  6. // Sass partial for link group styles
  7. /* Most link groups are created with <div>. Ensure they have space before and after. */
  8. .ullinks {
  9. list-style-type: none;
  10. }
  11. .ulchildlink {
  12. margin-bottom: 1em;
  13. margin-top: 1em;
  14. }
  15. .olchildlink {
  16. margin-bottom: 1em;
  17. margin-top: 1em;
  18. }
  19. .linklist {
  20. margin-bottom: 1em;
  21. }
  22. ul.linklist {
  23. margin-top: 0;
  24. list-style-type: none;
  25. padding-left: 0;
  26. }
  27. li.linklist {
  28. margin-top: 0;
  29. margin-bottom: 0;
  30. }
  31. .linklistwithchild {
  32. margin-bottom: 1em;
  33. margin-left: 1.5em;
  34. }
  35. .sublinklist {
  36. margin-bottom: 1em;
  37. margin-left: 1.5em;
  38. }
  39. .relconcepts {
  40. margin-bottom: 1em;
  41. margin-top: 1em;
  42. }
  43. .reltasks {
  44. margin-bottom: 1em;
  45. margin-top: 1em;
  46. }
  47. .relref {
  48. margin-bottom: 1em;
  49. margin-top: 1em;
  50. }
  51. .relinfo {
  52. margin-bottom: 1em;
  53. margin-top: 1em;
  54. }
  55. .breadcrumb {
  56. font-size: smaller;
  57. margin-bottom: 1em;
  58. }