Add files via upload

This commit is contained in:
Federico Lillacci
2025-10-27 05:35:22 +01:00
committed by GitHub
parent cce26d18f3
commit 5dd5e5e007
4 changed files with 234 additions and 1 deletions

View File

@@ -0,0 +1,46 @@
$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;
}
h1{
background-color: CornflowerBlue;
color:white;
text-align: center;
}
h2{
background-color: CornflowerBlue;
color:white;
text-align: center;
}
</style>
"@