_hazard.scss 832 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. // block
  7. .consequence {
  8. }
  9. .hazardstatement {
  10. td,
  11. th {
  12. padding: 0.5rem;
  13. }
  14. th {
  15. text-align: center;
  16. text-transform: uppercase;
  17. }
  18. &--caution {
  19. background-color: $hazard-ansi-yellow;
  20. }
  21. &--danger {
  22. background-color: $hazard-ansi-red;
  23. color: $hazard-heading-light;
  24. }
  25. &--warning {
  26. background-color: $hazard-ansi-orange;
  27. }
  28. &--attention,
  29. &--fastpath,
  30. &--important,
  31. &--note,
  32. &--notice,
  33. &--other,
  34. &--remember,
  35. &--restriction,
  36. &--tip {
  37. background-color: $hazard-ansi-blue;
  38. color: $hazard-heading-light;
  39. font-style: italic;
  40. }
  41. }
  42. .hazardsymbol {
  43. }
  44. .howtoavoid {
  45. }
  46. .messagepanel {
  47. }
  48. .typeofhazard {
  49. }