SHA256
99 lines
2.0 KiB
HTML
99 lines
2.0 KiB
HTML
<!doctype html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>SHiNE static sites</title>
|
|
<style>
|
|
:root {
|
|
color-scheme: light;
|
|
--bg: #f4f1ec;
|
|
--panel: #fffaf3;
|
|
--ink: #171512;
|
|
--muted: #6f675e;
|
|
--line: rgba(52, 44, 35, 0.14);
|
|
--accent: #087a68;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
background: var(--bg);
|
|
color: var(--ink);
|
|
font-family: Inter, "Segoe UI", system-ui, sans-serif;
|
|
}
|
|
|
|
main {
|
|
width: min(920px, calc(100% - 32px));
|
|
margin: 0 auto;
|
|
padding: 44px 0;
|
|
}
|
|
|
|
h1 {
|
|
margin: 0 0 10px;
|
|
font-size: clamp(30px, 5vw, 52px);
|
|
line-height: 1;
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
color: var(--muted);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.list {
|
|
display: grid;
|
|
gap: 12px;
|
|
margin-top: 28px;
|
|
}
|
|
|
|
a {
|
|
display: block;
|
|
padding: 18px 20px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 8px;
|
|
background: var(--panel);
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
border-color: rgba(8, 122, 104, 0.45);
|
|
}
|
|
|
|
strong {
|
|
display: block;
|
|
margin-bottom: 4px;
|
|
font-size: 18px;
|
|
}
|
|
|
|
span {
|
|
color: var(--muted);
|
|
line-height: 1.5;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>SHiNE static sites</h1>
|
|
<p>Рабочая папка для временных статических сайтов, дизайн-примеров и standalone-viewer'ов.</p>
|
|
|
|
<div class="list">
|
|
<a href="./design-examples/channels-v1/">
|
|
<strong>Channels design v1</strong>
|
|
<span>Дизайн-пример экранов каналов.</span>
|
|
</a>
|
|
<a href="./arweave-viewer/">
|
|
<strong>Arweave viewer</strong>
|
|
<span>Постоянная папка для текущей версии SHiNE Arweave Viewer.</span>
|
|
</a>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|