﻿
@media print {
  .watermark-entwurf {
    /*    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;*/
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1300 '%3E%3Ctext x='030' y='800' text-anchor='middle' dominant-baseline='middle' transform='rotate(-45, 250, 250)' fill='rgba(0, 0, 0, 0.1)' style='font-size: 300px; font-family: Arial;'%3EEntwurf%3C/text%3E%3C/svg%3E");
    background-repeat: repeat-y;
    background-size: 920px;
    pointer-events: none;
  }
}

/*Ausgabe header Bootstrap breakpoints links oben*/
@media screen {
  .watermark {
    position: fixed;
    top: 13px;
    left: 20px;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: rgba(255, 255, 255, 1.0);
    background-color: rgba(50, 100, 150, 1.0);
    z-index: 1000;
    pointer-events: none;
    margin: 0;
    padding: 12px 12px 12px 28px;
    height: 60px;
    width: 80px;
    text-align: center;
  }

  @media (max-width: 575.98px) {
    .watermark::after {
      content: "xs";
    }
  }

  @media (min-width: 576px) and (max-width: 767.98px) {
    .watermark::after {
      content: "sm";
    }
  }

  @media (min-width: 768px) and (max-width: 991.98px) {
    .watermark::after {
      content: "md";
    }
  }

  @media (min-width: 992px) and (max-width: 1199.98px) {
    .watermark::after {
      content: "lg";
    }
  }

  @media (min-width: 1200px) and (max-width: 1399.98px) {
    .watermark::after {
      content: "xl";
    }
  }

  @media (min-width: 1400px) {
    .watermark::after {
      content: "xxl";
    }
  }
}
