You are here

formatter_suite.help.css in Formatter Suite 8

Style the module's help page.

File

css/formatter_suite.help.css
View source
  1. /**
  2. * @file
  3. * Style the module's help page.
  4. */
  5. /*
  6. * Highlight section titles.
  7. */
  8. .formatter_suite-admin-help h3 {
  9. margin-top: 2em;
  10. border-bottom: 1px solid #ccc;
  11. clear: both;
  12. }
  13. .formatter_suite-admin-help h4 {
  14. margin-top: 2em;
  15. border-bottom: 1px solid #ccc;
  16. clear: both;
  17. }
  18. .formatter_suite-admin-help h4:first-child {
  19. clear: none;
  20. }
  21. /*
  22. * Indent bullet lists.
  23. */
  24. .formatter_suite-admin-help ul,
  25. .formatter_suite-admin-help dl {
  26. margin: 0.25em 0 0.25em 1.5em;
  27. margin-left: 1em;
  28. }
  29. ul,
  30. .formatter_suite-admin-help ul {
  31. padding-left: 1.5em;
  32. }
  33. .formatter_suite-formatter-list {
  34. margin-left: 1em;
  35. }
  36. .formatter_suite-formatter-list dt {
  37. font-size: 1.05em;
  38. font-weight: bold;
  39. color: #000058;
  40. clear: both;
  41. }
  42. /*
  43. * Add a margin at the bottom of the help section.
  44. */
  45. .formatter_suite-admin-help {
  46. margin-bottom: 2em;
  47. }
  48. .formatter_suite-admin-help img {
  49. float: right;
  50. }
  51. /*
  52. * Style a footer containing a set of icons for institutions involved
  53. * in creating the module.
  54. */
  55. .formatter_suite-admin-footer {
  56. margin-top: 2em;
  57. margin-left: auto;
  58. margin-right: auto;
  59. max-width: 50em;
  60. text-align: center;
  61. font-style: italic;
  62. font-size: 0.9em;
  63. border-top: 1px solid #ccc;
  64. clear: both;
  65. }
  66. .formatter_suite-admin-footer-icons {
  67. text-align: center;
  68. vertical-align: middle;
  69. height: 72px;
  70. }
  71. .formatter_suite-admin-footer-icons img {
  72. padding-left: 1em;
  73. padding-right: 1em;
  74. float: none;
  75. }
  76. /*
  77. * Style the table-of-contents to be a tight list.
  78. */
  79. ul.formatter_suite-toc,
  80. ul.formatter_suite-toc ul,
  81. ul.formatter_suite-toc li {
  82. padding-top: 0;
  83. padding-bottom: 0;
  84. margin-top: 0;
  85. margin-bottom: 0;
  86. }
  87. ul.formatter_suite-toc {
  88. margin-left: 2em;
  89. }
  90. /*
  91. * Style a branding box at the top of the page.
  92. */
  93. .formatter_suite-help-branding {
  94. padding: 6px;
  95. margin-left: 1em;
  96. border: 1px solid #ccc;
  97. border-radius: 4px;
  98. float: right;
  99. width: 400px;
  100. background: #fff;
  101. font-weight: 500;
  102. text-align: center;
  103. }
  104. .formatter_suite-help-branding img {
  105. float: none;
  106. }