_notes.scss 403 B

1234567891011121314151617181920212223
  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 note styles
  7. /* All note formats have the same default presentation */
  8. .note {
  9. margin-bottom: 1em;
  10. margin-top: 1em;
  11. .notetitle,
  12. .note__title {
  13. font-weight: bold;
  14. }
  15. .notelisttitle {
  16. @extend .notetitle;
  17. }
  18. }