colors.css 527 B

12345678910111213141516171819202122232425262728293031
  1. /**
  2. * Reusable colors.
  3. */
  4. .color-success,
  5. .color-checked {
  6. color: #325e1c;
  7. background-color: #f3faef;
  8. }
  9. .color-warning {
  10. color: #734c00;
  11. background-color: #fdf8ed;
  12. }
  13. .color-error {
  14. color: #a51b00;
  15. background-color: #fcf4f2;
  16. }
  17. table .color-warning,
  18. table .color-success,
  19. table .color-checked,
  20. table .color-error {
  21. background-color: transparent;
  22. }
  23. table .color-warning {
  24. color: #a87000;
  25. font-size: 12px;
  26. }
  27. table .color-warning strong a {
  28. font-weight: bold;
  29. text-decoration: underline;
  30. color: #a87000;
  31. }