#toggleButton {
  display: none;
}

@page 
{
    size: auto;   /* auto is the initial value */
    margin: 0mm;  /* this affects the margin in the printer settings */
}

header,footer {
  display: none;
}

html
{
    background-color: #000 !important;
    margin: 0px;  /* this affects the margin on the html before sending to printer */
}

@print {
  @page :footer {
      display: none !important;
  }

  @page :header {
      display: none !important;
  }
}