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