diff options
-rw-r--r-- | docker-status.html | 1 | ||||
-rw-r--r-- | style.css | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/docker-status.html b/docker-status.html index 945bf27..1a9f147 100644 --- a/docker-status.html +++ b/docker-status.html @@ -2,6 +2,7 @@ <html> <head> <title>Kuchen</title> +<link rel="stylesheet" type="text/css" href="style.css" /> <script type="text/javascript" src="/load-status.js"></script> </head> <body onload="getStatus(); window.setInterval(getStatus, 5000);"> diff --git a/style.css b/style.css new file mode 100644 index 0000000..75ce906 --- /dev/null +++ b/style.css @@ -0,0 +1,4 @@ +table { + table-layout: auto; + width: 100%; +} |