31 lines
869 B
HTML
31 lines
869 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: #161210;
|
|
background-image: linear-gradient(90deg, transparent 49.5%, rgb(228 98 44 / 7%) 50%, transparent 50.5%), linear-gradient(rgb(228 98 44 / 5%) 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.52;
|
|
}
|
|
body::after {
|
|
content: "";
|
|
position: fixed;
|
|
inset: 0;
|
|
pointer-events: none;
|
|
background-image: radial-gradient(circle at 12% 20%, rgb(143 174 61 / 12%), transparent 35%), radial-gradient(circle at 85% 75%, rgb(228 98 44 / 14%), transparent 40%);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body></body>
|
|
</html> |