15 lines
401 B
CSS
15 lines
401 B
CSS
.watermark {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
pointer-events: none;
|
|
z-index: 9999;
|
|
color: rgba(0, 0, 0, 0.5); /* 水印颜色和透明度 */
|
|
font-size: 3rem; /* 根据需要调整字体大小 */
|
|
text-align: center;
|
|
line-height: 100vh;
|
|
transform: rotate(-30deg); /* 旋转角度 */
|
|
filter:brightness(1.5); /* 亮度 */
|
|
} |