From fa9412223f256ed212a00b621a2c91c8787ea951 Mon Sep 17 00:00:00 2001 From: Zachary Vance Date: Sun, 9 Aug 2015 22:06:24 -0700 Subject: [PATCH] Add service status --- service.css | 28 ++++++++++++++++++++++++++++ service.status | 0 2 files changed, 28 insertions(+) create mode 100644 service.css create mode 100644 service.status diff --git a/service.css b/service.css new file mode 100644 index 0000000..125f643 --- /dev/null +++ b/service.css @@ -0,0 +1,28 @@ +table, th, td { + border: 1px solid black; +} + +table { + border-collapse: collapse; +} + +table { + width: 100%; +} + +th { + background-color: #FFFFDD; + min-height: 50px; +} + +tr.failure { + background-color: red; +} + +tr.success { + background-color: lightgreen; +} + +tr.timeout { + background-color: lightyellow; +} diff --git a/service.status b/service.status new file mode 100644 index 0000000..e69de29 -- 2.47.3