lelms-copyright/css/style.css
2025-03-10 12:26:57 +08:00

41 lines
748 B
CSS

#lelms-watermark {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 999;
}
.watermark-text {
position: absolute;
user-select: none;
pointer-events: none;
}
/* Allow form elements to interact */
input, textarea, select, button,
[contenteditable="true"],
a, button {
pointer-events: auto !important;
user-select: auto !important;
}
@media print {
#lelms-watermark {
display: none !important;
}
body * {
display: none !important;
}
body:after {
content: "Printing is disabled";
display: block !important;
text-align: center;
font-size: 24px;
margin-top: 50px;
}
}