MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus Markenheftchen
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 12: Zeile 12:
/*                0 0 0 2px white, */
/*                0 0 0 2px white, */
         0.3em 0.3em 1em rgb(200 200 200 / 60%);
         0.3em 0.3em 1em rgb(200 200 200 / 60%);
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
}


/* https://jsfiddle.net/6YSXC/ */
/*.watermark img { width: 100%; } */
.watermark {
.watermark { position: relative; }
    opacity: 0.2;
.watermark::after {
    color: BLACK;
   content: "COPYRIGHT, YOU SHALL NOT STEAL!";
    position: absolute;
    bottom: 0;
    left: 0;
    writing-mode: vertical-lr;
}
 
#watermark {
  opacity: 0.2;
  font-size: 52px;
  color: 'black';
   background: '#ccc';
   position: absolute;
   position: absolute;
   cursor: default;
   bottom: 0;
   user-select: none;
   right: 0;
  -webkit-user-select: none;
   opacity: 0.5;
  -khtml-user-select: none;
   font-size: 1.5em;
   -moz-user-select: none;
   color: red;
   -ms-user-select: none;
   right: 5px;
  bottom: 5px;
}
}

Version vom 18. März 2025, 19:10 Uhr

/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */

/* Artikelname in Kapitälchen */
.mw-page-title-main {
    font-variant: small-caps;
}

.mw-mh-deckel {
    display:inline-block;
    box-shadow:
/*        inset 0 -3em 3em rgb(0 200 0 / 30%), */
/*                0 0 0 2px white, */
        0.3em 0.3em 1em rgb(200 200 200 / 60%);
}

/*.watermark img { width: 100%; } */
.watermark { position: relative; }
.watermark::after {
  content: "COPYRIGHT, YOU SHALL NOT STEAL!";
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.5;
  font-size: 1.5em;
  color: red;
}