Add files via upload

This commit is contained in:
Federico Lillacci
2025-10-17 13:03:35 +02:00
committed by GitHub
commit 8f6b1072a3
6 changed files with 719 additions and 0 deletions

40
StyleCSS.ps1 Normal file
View File

@@ -0,0 +1,40 @@
$header = @"
<style>
body
{
background-color: White;
font-size: 12px;
font-family: Arial, Helvetica, sans-serif;
}
table {
border: 0.5px solid;
border-collapse: collapse;
width: 100%;
}
th {
background-color: CornflowerBlue;
color: white;
padding: 6px;
border: 0.5px solid;
border-color: #000000;
}
tr:nth-child(even) {
background-color: #f5f5f5;
}
td {
padding: 6px;
margin: 0px;
border: 1px solid;
}
h2{
background-color: CornflowerBlue;
color:white;
text-align: center;
}
</style>
"@