From 0ce2ed9d67aa62568602e80efdccf6f97e4001dc Mon Sep 17 00:00:00 2001 From: Jean-Philippe Orsini Date: Tue, 13 Sep 2011 10:34:41 +0000 Subject: [PATCH] fixed font styling refresh div to 5s --- www/monitor.html | 6 +++++- www/style.css | 6 ++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/www/monitor.html b/www/monitor.html index 1764194..d196dcb 100644 --- a/www/monitor.html +++ b/www/monitor.html @@ -3,6 +3,10 @@ Psensor Server Monitoring + + @@ -15,7 +19,7 @@ setInterval(function() { update_summary_sensors(); update_summary_sysinfo(); - }, 1000); + }, 5000); }); diff --git a/www/style.css b/www/style.css index 885996c..94a9854 100644 --- a/www/style.css +++ b/www/style.css @@ -2,6 +2,8 @@ body { padding: 1em 1em 1em 1em; font-family: "Ubuntu", sans-serif; font-size: 100%; + font-style: normal; + font-weight: normal; color: #000; background-color: #fff; margin: 0 0 0 0; @@ -24,6 +26,8 @@ h1 { } #footer { + font-style: normal; + font-weight: normal; padding-top: 2em; color: #666; clear: both; @@ -65,6 +69,8 @@ th { .chart { color: #000; + font-style: normal; + font-weight: normal; } ul { -- 2.7.4