31 lines
649 B
HTML
31 lines
649 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Parchment</title>
|
|
<link rel="icon" href="Quill.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;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="draggable"></div>
|
|
<webview src="http://localhost:10001" style="width:100vw; height:100vh;"></webview>
|
|
</body>
|
|
</html>
|