_xml-d.scss 649 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // This file is part of the DITA Open Toolkit project.
  2. //
  3. // Copyright 2016 Eero Helenius
  4. //
  5. // See the accompanying LICENSE file for applicable license.
  6. // Sass partial for DITA 1.3 XML mention domain
  7. $code-fonts: Menlo, Monaco, Consolas, "Courier New", monospace;
  8. $markup-color: #639;
  9. @mixin markupname {
  10. color: $markup-color;
  11. font-family: $code-fonts;
  12. }
  13. // inline
  14. .numcharref {
  15. @include markupname;
  16. }
  17. .parameterentity {
  18. @include markupname;
  19. }
  20. .textentity {
  21. @include markupname;
  22. }
  23. .xmlatt {
  24. @include markupname;
  25. }
  26. .xmlelement {
  27. @include markupname;
  28. }
  29. .xmlnsname {
  30. @include markupname;
  31. }
  32. .xmlpi {
  33. @include markupname;
  34. }