diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-07-21 16:45:43 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-07-21 16:46:16 +0200 |
commit | a861ec324c8c2edd5312a7b5a35447e00aa464f0 (patch) | |
tree | 3be671fd91c51bcc51899d16a923b4ea79a4d6a7 /etisnoop-stat-server/static | |
parent | 9d44944a826b362e839e79cbd80b0f6c526cc243 (diff) | |
download | mmbtools-aux-a861ec324c8c2edd5312a7b5a35447e00aa464f0.tar.gz mmbtools-aux-a861ec324c8c2edd5312a7b5a35447e00aa464f0.tar.bz2 mmbtools-aux-a861ec324c8c2edd5312a7b5a35447e00aa464f0.zip |
Add rudimentary etisnoop stats server prototype
Diffstat (limited to 'etisnoop-stat-server/static')
-rw-r--r-- | etisnoop-stat-server/static/style.css | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/etisnoop-stat-server/static/style.css b/etisnoop-stat-server/static/style.css new file mode 100644 index 0000000..c7aebf0 --- /dev/null +++ b/etisnoop-stat-server/static/style.css @@ -0,0 +1,64 @@ +body { + font-family: "Lucida Sans Unicode","Lucida Grande",Sans-Serif; + color: #3E3E3E; + font-size: 12px; +} + +p { + padding: 5px; +} + +#info{ + width: 900px; + border: 1px solid #999; + padding: 0 10px; +} +#info p { + width: inherit; + background-color: inherit; +} +#info-nav{ + margin: 0; + padding: 3px 0; + width: 100%; + list-style: none; +} +#info-nav li{ + display: inline; + background: #ccc; + border: 1px solid #888; + border-bottom: 0; + margin-right:2px; + padding: 3px; +} +#info-nav li a:hover{ + color:#d15600; +} +#info-nav li.current{ + background: #fff; + padding-bottom: 4px; +} + + +table { + border-collapse:collapse; + font-size:12px; + margin:0 20px 20px 20px; + border-top:2px solid #015287; + width:480px; +} + +th { + border-bottom: 2px solid #015287; + color: #D15600; + font-size: 14px; + font-weight: normal; + text-align: left; + padding: 3px 8px; +} + +td { + padding: 6px; +} + + |