lighting polish
Browse files- index.html +9 -0
index.html
CHANGED
|
@@ -86,6 +86,14 @@
|
|
| 86 |
tbody tr:nth-child(even) { background: var(--panel); }
|
| 87 |
tbody tr:hover { outline: 2px solid rgba(96,165,250,.35); outline-offset: -2px; }
|
| 88 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 89 |
/* Align text vs numbers */
|
| 90 |
/* Left-align the model name; right-align time/rank columns by default */
|
| 91 |
tbody td:first-child, thead th:first-child { text-align: left; }
|
|
@@ -288,6 +296,7 @@
|
|
| 288 |
}
|
| 289 |
|
| 290 |
|
|
|
|
| 291 |
</style>
|
| 292 |
|
| 293 |
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
|
|
|
|
| 86 |
tbody tr:nth-child(even) { background: var(--panel); }
|
| 87 |
tbody tr:hover { outline: 2px solid rgba(96,165,250,.35); outline-offset: -2px; }
|
| 88 |
|
| 89 |
+
article.card:hover,
|
| 90 |
+
section.card:hover {
|
| 91 |
+
outline: 2px solid rgba(96,165,250,.35);
|
| 92 |
+
outline-offset: -2px;
|
| 93 |
+
border-radius: 10px; /* optional: matches card styling */
|
| 94 |
+
}
|
| 95 |
+
|
| 96 |
+
|
| 97 |
/* Align text vs numbers */
|
| 98 |
/* Left-align the model name; right-align time/rank columns by default */
|
| 99 |
tbody td:first-child, thead th:first-child { text-align: left; }
|
|
|
|
| 296 |
}
|
| 297 |
|
| 298 |
|
| 299 |
+
|
| 300 |
</style>
|
| 301 |
|
| 302 |
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
|