38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>DrHider</title>
|
|
<style>
|
|
:root {
|
|
--brand-primary: #2563eb;
|
|
--brand-gray: #d1d5db;
|
|
--bg: #f9fafb;
|
|
--card: #ffffff;
|
|
--text: #1a1a1a;
|
|
--muted: #6b7280;
|
|
}
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body { font: 14px system-ui, sans-serif; color: var(--text); background: var(--bg); min-height: 100vh; }
|
|
.topbar {
|
|
background: var(--card); border-bottom: 1px solid var(--brand-gray);
|
|
padding: 0 16px; height: 48px; display: flex; align-items: center; gap: 10px;
|
|
}
|
|
.topbar .title { font-weight: 600; font-size: 14px; }
|
|
.topbar .ver { font-weight: 400; color: var(--muted); font-size: 12px; margin-left: auto; }
|
|
.hello {
|
|
display: flex; justify-content: center; align-items: center;
|
|
height: calc(100vh - 48px); font-size: 24px; color: var(--muted);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="topbar">
|
|
<span class="title">DrHider</span>
|
|
<span class="ver">v{{ version }}</span>
|
|
</div>
|
|
<div class="hello">Hello World</div>
|
|
</body>
|
|
</html>
|