| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- // This file is part of the DITA Open Toolkit project.
- //
- // Copyright 2016 Eero Helenius
- //
- // See the accompanying LICENSE file for applicable license.
- // block
- .consequence {
- }
- .hazardstatement {
- td,
- th {
- padding: 0.5rem;
- }
- th {
- text-align: center;
- text-transform: uppercase;
- }
- &--caution {
- background-color: $hazard-ansi-yellow;
- }
- &--danger {
- background-color: $hazard-ansi-red;
- color: $hazard-heading-light;
- }
- &--warning {
- background-color: $hazard-ansi-orange;
- }
- &--attention,
- &--fastpath,
- &--important,
- &--note,
- &--notice,
- &--other,
- &--remember,
- &--restriction,
- &--tip {
- background-color: $hazard-ansi-blue;
- color: $hazard-heading-light;
- font-style: italic;
- }
- }
- .hazardsymbol {
- }
- .howtoavoid {
- }
- .messagepanel {
- }
- .typeofhazard {
- }
|