From 0c5f238637e006f8dec05aff78706e82987b8150 Mon Sep 17 00:00:00 2001 From: Noah Petherbridge Date: Tue, 2 Dec 2014 15:47:22 -0800 Subject: [PATCH] Add CSS for visitor tracking --- rophako/www/smoke/style.css | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/rophako/www/smoke/style.css b/rophako/www/smoke/style.css index 2f82b40..1930e5d 100644 --- a/rophako/www/smoke/style.css +++ b/rophako/www/smoke/style.css @@ -308,6 +308,23 @@ ul.blog-categories li:last-child:after { font-size: 9pt; } +/* Visitor history page */ +.visitor-graph { + height: 16px; + width: 100%; + border: 1px outset; +} +.visitor-graph.unique { + background-color: #0099FF; + background-image: url("/static/images/blue-clearlooks.png"); + border-color: #0099FF; +} +.visitor-graph.hits { + background-color: #FF99FF; + background-image: url("/static/images/pink-clearlooks.png"); + border-color: #FF99FF; +} + /********************* * Smoke Theme UI *********************/ @@ -399,4 +416,4 @@ footer div { footer a:link, footer a:visited { color: #666666; -} \ No newline at end of file +}