mirror of
https://github.com/HackPlan/quark-shell-mac.git
synced 2026-01-13 07:01:18 +08:00
29 lines
443 B
HTML
29 lines
443 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Quark Shell</title>
|
|
<style>
|
|
html {
|
|
background-color: rgb(237, 237, 237);
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
-webkit-user-select: none;
|
|
}
|
|
body {
|
|
font-family: -apple-system-font, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
p {
|
|
margin-top: 42px;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|