PHP scripts to display a more user-friendly overview of nagios status
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 565B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. body {
  2. }
  3. td, th {
  4. border: 1px solid black;
  5. padding: 2px 3px;
  6. }
  7. table {
  8. border-collapse: collapse;
  9. }
  10. td.status, td.date {
  11. text-align: center;
  12. }
  13. td.status {
  14. width: 100px;
  15. }
  16. td.status.OK {
  17. background-color: green;
  18. color: white;
  19. }
  20. td.status.Unknown {
  21. background-color: yellow;
  22. color: black;
  23. }
  24. td.status.Warning, td.date.overdue {
  25. background-color: orange;
  26. color: black;
  27. }
  28. td.status.Critical, td.date.never {
  29. background-color: red;
  30. color: white;
  31. }
  32. .updated {
  33. text-decoration: blink;
  34. }
  35. td.output {
  36. font-family: monospace;
  37. font-style: italic;
  38. }