mirror of
https://github.com/HackPlan/quark-shell-mac.git
synced 2026-01-12 22:27:07 +08:00
31 lines
546 B
HTML
31 lines
546 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>About Quark Shell</title>
|
|
<style>
|
|
html, body {
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
font-family: "Helvetica Neue";
|
|
text-align: center;
|
|
}
|
|
h1 {
|
|
color: #999;
|
|
margin-top: 100px;
|
|
font-size: 28px;
|
|
}
|
|
button {
|
|
margin-top: 60px;
|
|
}
|
|
</style>
|
|
<script type="text/javascript">
|
|
quark.emit("TestMessage", "Open the pod bay doors")
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>Awesome Project!</h1>
|
|
<button onclick="quark.closeWindow()">Close</button>
|
|
</body>
|
|
</html>
|