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