Skip to content

Commit

Permalink
update html template
Browse files Browse the repository at this point in the history
  • Loading branch information
FredHappyface committed Apr 4, 2024
1 parent b2b50f4 commit da11701
Showing 1 changed file with 28 additions and 3 deletions.
31 changes: 28 additions & 3 deletions licensecheck/html.template
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
<head>
<style>
body {
font-family: Arial, sans-serif;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
color: #222;
}
h2 {
color: #333;
Expand All @@ -20,7 +21,8 @@
border-collapse: collapse;
width: 100%;
}
th, td {
th,
td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
Expand All @@ -35,10 +37,33 @@
background-color: #ddd;
}
h3 {
color: #555;
color: #444;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #222;
color: #eee;
}
h2 {
color: #ccc;
}
h3 {
color: #eee;
}
th {
background-color: #333;
color: #eee;
}
tr:nth-child(even) {
background-color: #333;
}
tr:hover {
background-color: #444;
}
}
</style>
</head>
<body>
{html}
</body>
</html>

0 comments on commit da11701

Please sign in to comment.