mirror of
https://github.com/tsmagnum/Hyper-V-Report.git
synced 2026-04-17 15:43:26 +02:00
46 lines
826 B
PowerShell
46 lines
826 B
PowerShell
$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>
|
|
"@ |