/*
 * This file is included in BasePage.html and thus in every normal page rendered by ITEMS to
 * allow a customer to adapt the CSS by serving their own copy. Since its path is always
 *
 *   css/items-customizations.css
 *
 * relative to the ITEMS context root, it can be overridden in the HTTP server configuration to
 * point at a different URL, for example for Apache:
 *
 *   Redirect /items/css/items-customizations.css https://myserver.mydomain/items-resources/customizations.css
 *   ProxyPass /items/css/items-customizations.css !
 *
 * This file only contains examples as comments.
 */


/*
 * Render an image as header when printing any page.
 *
 * This is accomplished by inserting a content image before the <header> element using the CSS
 * :before pseudo-element.
 *
 * See:
 * https://developer.mozilla.org/en-US/docs/Web/CSS/content
 * https://stackoverflow.com/questions/6670151/

@media print {
  header:before {
    content: url("https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png");
    display: inline-block;
    width: 100%;
    padding-top: 20px;
    text-align: center;
  }
}

  */
