20 lines
569 B
HTML
20 lines
569 B
HTML
<!-- The proofreading watermark for the HTML books: ./build-docs.sh preview adds this to every
|
|
page's head, and a release build never does. Fixed to the window, so it is on every screen of
|
|
the document, and it lets clicks through. -->
|
|
<style>
|
|
body::before {
|
|
content: "PREVIEW";
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%) rotate(-50deg);
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
font-weight: bold;
|
|
font-size: 22vw;
|
|
color: #000000;
|
|
opacity: 0.11;
|
|
pointer-events: none;
|
|
z-index: 1000;
|
|
white-space: nowrap;
|
|
}
|
|
</style>
|