diff options
author | Piotr Dobrowolski <admin@tastycode.pl> | 2020-08-22 18:51:18 +0200 |
---|---|---|
committer | Piotr Dobrowolski <admin@tastycode.pl> | 2020-08-22 18:51:18 +0200 |
commit | e0e6a729401390950f995ec77dd17b2991a55f0b (patch) | |
tree | 28f649345d840d601341871180ed20047f558c66 | |
parent | 40db88a6f270e8057ea52e246f878b67b69c9c7e (diff) | |
download | checkinator-e0e6a729401390950f995ec77dd17b2991a55f0b.tar.gz checkinator-e0e6a729401390950f995ec77dd17b2991a55f0b.tar.bz2 checkinator-e0e6a729401390950f995ec77dd17b2991a55f0b.zip |
Bring back devices table colors
-rw-r--r-- | static/css/basic.css | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/static/css/basic.css b/static/css/basic.css index ea8a1fb..77b0f06 100644 --- a/static/css/basic.css +++ b/static/css/basic.css @@ -21,4 +21,26 @@ a { a:hover { border-bottom: 0; -}
\ No newline at end of file +} + +p.error { + color: red +} + +p.message { + color: green +} + +table.devices, .devices td, .devices th { + padding: .5em; + border: 1px solid black; + border-collapse: collapse; +} + +td.invisible { + background-color: red +} + +td.visible { + background-color: green +} |