extracting CSS & adding analytics

This commit is contained in:
rusefi 2020-03-27 13:57:03 -04:00
parent 8fd52ba50a
commit aaf65d061b
2 changed files with 55 additions and 44 deletions

View File

@ -1,54 +1,19 @@
<html>
<head>
<style type="text/css">
a:link {
color: #34495e;
}
<link rel="stylesheet" type="text/css" href="rusefi.css">
a:visited {
color: #34495e;
}
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-43478022-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
a:hover {
color: black;
}
gtag('config', 'UA-43478022-1');
</script>
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;
}
</style>
</head>
<body>

46
misc/www/rusefi.css Normal file
View File

@ -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;
}