64 lines
1.4 KiB
HTML
64 lines
1.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Hello Quantum</title>
|
|
<style>
|
|
:root {
|
|
color-scheme: dark;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
background: #101416;
|
|
color: #f2f5f7;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
display: grid;
|
|
place-items: center;
|
|
background:
|
|
linear-gradient(135deg, rgba(43, 190, 179, 0.22), transparent 34%),
|
|
linear-gradient(315deg, rgba(246, 196, 83, 0.18), transparent 32%),
|
|
#101416;
|
|
}
|
|
|
|
main {
|
|
width: min(680px, calc(100vw - 32px));
|
|
padding: 40px;
|
|
border: 1px solid rgba(255, 255, 255, 0.14);
|
|
border-radius: 8px;
|
|
background: rgba(16, 20, 22, 0.78);
|
|
}
|
|
|
|
p {
|
|
margin: 0 0 14px;
|
|
color: #b9c5c9;
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
h1 {
|
|
margin: 0 0 16px;
|
|
font-size: 48px;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
strong {
|
|
color: #64d8cb;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<p><strong>Quantum</strong> platform</p>
|
|
<h1>Hello Quantum</h1>
|
|
<p>The application container is running on the Gitea Docker host.</p>
|
|
</main>
|
|
</body>
|
|
</html>
|