24 lines
610 B
HTML
24 lines
610 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title></title>
|
|
<style type="text/css">
|
|
html, body { height: 100%; margin: 0; overflow: hidden; }
|
|
body {
|
|
background-color: #f1f1e9;
|
|
background-image: linear-gradient(90deg, transparent 49.5%, rgb(17 33 43 / 5%) 50%, transparent 50.5%), linear-gradient(rgb(17 33 43 / 4%) 1px, transparent 1px);
|
|
background-size: 70px 70px, 7px 7px;
|
|
}
|
|
body::before {
|
|
content: "";
|
|
position: fixed;
|
|
inset: 0;
|
|
background: url(images/watermark.svg) center no-repeat;
|
|
background-size: min(48vw, 300px) auto;
|
|
opacity: 0.42;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body></body>
|
|
</html> |