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,59 @@
$header = @"
<style>
/* Outlook-Compatible Colorful Theme */
body {
background-color: #fef6e4;
font-size: 13px;
font-family: "Segoe UI", Arial, sans-serif;
color: #172b4d;
margin: 20px;
}
h1, h2 {
text-align: center;
color: #ff6b6b;
margin: 0 0 12px;
}
table {
width: 100%;
border-collapse: collapse;
background-color: #ffffff;
}
th, td {
text-align: left;
padding: 12px;
word-break: break-word;
}
th {
background-color: #ff6b6b;
color: #ffffff;
font-weight: 400;
}
td {
border-bottom: 1px solid #e0e0e0;
}
/* Zebra striping: apply manually in HTML */
tr.even {
background-color: #fdf2ff;
}
tr.odd {
background-color: #ffffff;
}
/* Hover effects not supported in Outlook */
/* Responsive scroll and sticky headers not supported in Outlook */
/* Box-sizing reset (optional for email clients) */
* {
box-sizing: border-box;
}
</style>
"@

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>
"@

View File

@@ -1 +1,59 @@
$header = @"
<style>
/* Outlook-Compatible Light Theme */
body {
background-color: #f9fafb;
font-size: 13px;
font-family: "Segoe UI", Arial, sans-serif;
color: #333333;
margin: 20px;
}
h1, h2 {
text-align: center;
color: #1f2937;
margin: 0 0 12px;
}
table {
width: 100%;
border-collapse: collapse;
background-color: #ffffff;
}
th, td {
text-align: left;
padding: 12px;
word-break: break-word;
}
th {
background-color: #2563eb;
color: #ffffff;
font-weight: 400;
}
td {
border-bottom: 1px solid #e5e7eb;
}
/* Zebra striping: apply manually in HTML */
tr.even {
background-color: #f9fafb;
}
tr.odd {
background-color: #ffffff;
}
/* Hover effects not supported in Outlook */
/* Responsive scroll and sticky headers not supported in Outlook */
/* Box-sizing reset (optional for email clients) */
* {
box-sizing: border-box;
}
</style>
"@

View File

@@ -0,0 +1,70 @@
$header = @"
<style>
/* Outlook-Compatible Dark Theme */
body {
background-color: #1e1e2f;
font-size: 13px;
font-family: "Segoe UI", Arial, sans-serif;
color: #e5e7eb;
margin: 20px;
}
a, a:link, a:focus, a:hover, a:active {
color: #f64d10;
text-decoration: underline;
}
a:visited {
color: #f0f414;
}
h1, h2 {
text-align: center;
color: #f3f4f6;
margin: 0 0 12px;
}
table {
width: 100%;
border-collapse: collapse;
background-color: #2a2a3c;
}
th, td {
text-align: left;
padding: 12px;
word-break: break-word;
}
th {
background-color: #3b82f6;
color: #ffffff;
font-weight: 400;
}
td {
border-bottom: 1px solid #3f3f4f;
}
/* Zebra striping must be manually applied in HTML rows */
tr.even {
background-color: #252536;
}
tr.odd {
background-color: #2a2a3c;
}
/* Hover effects not supported in Outlook, so omitted */
/* Responsive and sticky headers not supported in Outlook */
/* Scrollbars and shadow effects not supported in Outlook */
/* Box-sizing reset (optional for email clients) */
* {
box-sizing: border-box;
}
</style>
"@