From aaf65d061bc0f22ae8920539b72c8a8c3d3c8656 Mon Sep 17 00:00:00 2001 From: rusefi Date: Fri, 27 Mar 2020 13:57:03 -0400 Subject: [PATCH] extracting CSS & adding analytics --- misc/www/index.html | 53 ++++++++------------------------------------- misc/www/rusefi.css | 46 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+), 44 deletions(-) create mode 100644 misc/www/rusefi.css diff --git a/misc/www/index.html b/misc/www/index.html index ec5373afbe..dc44a889d5 100644 --- a/misc/www/index.html +++ b/misc/www/index.html @@ -1,54 +1,19 @@ - diff --git a/misc/www/rusefi.css b/misc/www/rusefi.css new file mode 100644 index 0000000000..c3c9da03d1 --- /dev/null +++ b/misc/www/rusefi.css @@ -0,0 +1,46 @@ + + a:link { + color: #34495e; + } + + a:visited { + color: #34495e; + } + + a:hover { + color: black; + } + + a:visited:hover { + color: black; + } + + table { + border-collapse: collapse; + font-size: 150%; + } + + table td, + table th { + border: 1px solid black; + padding: 0.5em; + } + + table tr:first-child th { + border-top: 0; + font-weight: normal; + } + + table tr:last-child td { + border-bottom: 0; + } + + table tr td:first-child, + table tr th:first-child { + border-left: 0; + } + + table tr td:last-child, + table tr th:last-child { + border-right: 0; + }