Skip to content

Instantly share code, notes, and snippets.

@jdhitsolutions
Created August 31, 2018 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdhitsolutions/4f90f75182732519f408b3607cb991c6 to your computer and use it in GitHub Desktop.
Save jdhitsolutions/4f90f75182732519f408b3607cb991c6 to your computer and use it in GitHub Desktop.
A sample CSS file I use in some of my PowerShell scripting demos
@charset "UTF-8";
body {
font-family: "monospace";
background-color: #ebebeb;
}
table {
border-collapse: collapse;
width: 80%
}
td {
font-size: 10pt;
border: 1px solid #98bf21;
padding-top: 1px;
padding-bottom: 1px;
padding-right: 1px;
padding-left: 1px;
}
th {
font-size: 12pt;
text-align: center;
padding-top: 2px;
padding-bottom: 2px;
padding-right: 2px;
padding-left: 2px;
background-color: #A7C942;
color: #ffffff;
}
name tr {
color: #000000;
background-color: #EAF2D3;
}
h2 {
font-size: 14pt;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment