Spaces:
Running
Running
Update index.html
Browse files- index.html +14 -11
index.html
CHANGED
|
@@ -267,14 +267,20 @@
|
|
| 267 |
}
|
| 268 |
|
| 269 |
.header-right a {
|
| 270 |
-
|
| 271 |
-
|
|
|
|
|
|
|
| 272 |
font-weight: 600;
|
|
|
|
|
|
|
| 273 |
text-decoration: none;
|
|
|
|
| 274 |
}
|
| 275 |
|
| 276 |
.header-right a:hover {
|
| 277 |
-
|
|
|
|
| 278 |
}
|
| 279 |
|
| 280 |
.progress {
|
|
@@ -302,15 +308,12 @@
|
|
| 302 |
</button>
|
| 303 |
<h1>nanochat webgpu</h1>
|
| 304 |
</div>
|
|
|
|
| 305 |
|
| 306 |
-
|
| 307 |
-
|
| 308 |
-
|
| 309 |
-
|
| 310 |
-
Learn to Build My LLM from scratch
|
| 311 |
-
</a>
|
| 312 |
-
</div>
|
| 313 |
-
<!-- ▲ ここまで ▲ -->
|
| 314 |
</div>
|
| 315 |
|
| 316 |
<div class="chat-container" id="chatContainer">
|
|
|
|
| 267 |
}
|
| 268 |
|
| 269 |
.header-right a {
|
| 270 |
+
display: inline-block;
|
| 271 |
+
background-color: #2563eb; /* 青背景 */
|
| 272 |
+
color: white; /* 白文字 */
|
| 273 |
+
font-size: 1rem;
|
| 274 |
font-weight: 600;
|
| 275 |
+
padding: 0.55rem 1rem;
|
| 276 |
+
border-radius: 0.5rem;
|
| 277 |
text-decoration: none;
|
| 278 |
+
transition: background-color 0.2s ease, transform 0.1s ease;
|
| 279 |
}
|
| 280 |
|
| 281 |
.header-right a:hover {
|
| 282 |
+
background-color: #1e40af; /* ホバーで濃い青 */
|
| 283 |
+
transform: translateY(-1px); /* ちょい浮く */
|
| 284 |
}
|
| 285 |
|
| 286 |
.progress {
|
|
|
|
| 308 |
</button>
|
| 309 |
<h1>nanochat webgpu</h1>
|
| 310 |
</div>
|
| 311 |
+
</div>
|
| 312 |
|
| 313 |
+
<div class="header-right">
|
| 314 |
+
<a href="https://github.com/HayatoHongo/Everyones_nanoGPT.git" target="_blank">
|
| 315 |
+
Learn to Build My LLM from scratch
|
| 316 |
+
</a>
|
|
|
|
|
|
|
|
|
|
|
|
|
| 317 |
</div>
|
| 318 |
|
| 319 |
<div class="chat-container" id="chatContainer">
|