File size: 3,881 Bytes
12f2490 bddde01 12f2490 bddde01 f2b7443 bddde01 f2b7443 bddde01 f2b7443 bddde01 12f2490 bddde01 12f2490 bddde01 c00f2aa 12f2490 f2b7443 bddde01 f2b7443 84715e8 bddde01 f2b7443 bddde01 12f2490 bddde01 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#0b0f19" />
<title>Nulla — Demo</title>
<style>
:root{
/* HF-ish dark */
--bg: #0b0f19;
--panel: #0f1629;
--border: rgba(255,255,255,.08);
--text: rgba(255,255,255,.92);
--muted: rgba(255,255,255,.70);
--link: #7aa2ff; /* calm blue link */
--accent: #ffd21e; /* HF-ish yellow accent */
}
* { box-sizing: border-box; }
body {
margin: 0;
padding: 28px 18px;
background: radial-gradient(1200px 600px at 50% -120px, rgba(255,210,30,.10), transparent 60%),
var(--bg);
color: var(--text);
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.container {
max-width: 980px;
margin: 0 auto;
}
.card {
background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 40%),
var(--panel);
border: 1px solid var(--border);
border-radius: 16px;
padding: 22px;
box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
h1 {
margin: 0 0 8px;
font-size: 38px;
letter-spacing: -0.5px;
}
.pill {
display: inline-block;
padding: 6px 10px;
border-radius: 999px;
background: rgba(255,210,30,.12);
border: 1px solid rgba(255,210,30,.22);
color: rgba(255,255,255,.9);
font-size: 13px;
margin-bottom: 14px;
}
.meta {
margin: 0 0 18px;
color: var(--muted);
font-size: 15px;
line-height: 1.45;
}
.meta b {
color: var(--text);
font-weight: 600;
}
.section {
margin-top: 18px;
}
.subtitle {
margin: 0 0 12px;
color: var(--muted);
font-size: 16px;
}
.video-wrap {
position: relative;
padding-top: 56.25%;
border-radius: 14px;
overflow: hidden;
background: #000;
border: 1px solid var(--border);
}
.video-wrap iframe {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
border: 0;
}
.divider {
margin: 22px 0;
height: 1px;
background: var(--border);
}
a {
color: var(--link);
text-decoration: none;
word-break: break-word;
}
a:hover { text-decoration: underline; }
</style>
</head>
<body>
<div class="container">
<div class="card">
<div class="pill">Demo videos + source link</div>
<h1>Nulla — Demo</h1>
<!-- GitHub moved to the top (right under the title) -->
<p class="meta">
<b>GitHub (download):</b>
<a href="https://github.com/Tsoxer/nulla" target="_blank" rel="noopener noreferrer">
https://github.com/Tsoxer/nulla
</a>
</p>
<!-- v0.0.8 first -->
<div class="section">
<p class="subtitle">v0.0.8</p>
<div class="video-wrap">
<iframe
src="https://www.youtube-nocookie.com/embed/sKnwlFnl7kk"
title="Nulla demo v0.0.8"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen>
</iframe>
</div>
</div>
<div class="divider"></div>
<!-- v0.0.7 below -->
<div class="section">
<p class="subtitle">v0.0.7</p>
<div class="video-wrap">
<iframe
src="https://www.youtube-nocookie.com/embed/OAvTm5ev9Ns"
title="Nulla demo v0.0.7"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen>
</iframe>
</div>
</div>
</div>
</div>
</body>
</html> |