42 lines
878 B
HTML
42 lines
878 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Parchment</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="icon" href="cave/_/icons/logo.png">
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
overflow: hidden;
|
|
background-color: #6A2C1C;
|
|
}
|
|
|
|
.draggable {
|
|
-webkit-app-region: drag;
|
|
height: 40px;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
z-index: 999;
|
|
}
|
|
|
|
:root {
|
|
--main: #6A2C1C;
|
|
--accent: #FEB279;
|
|
}
|
|
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
background: var(--main);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="draggable"></div>
|
|
</body>
|
|
</html>
|