general: snapshot

This commit is contained in:
k
2024-10-02 10:48:05 +02:00
parent 9d2c2f7945
commit 669205aa4d
22 changed files with 236 additions and 83 deletions
+6 -6
View File
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
@@ -1038,8 +1038,8 @@
border-top: 0;
padding: 0.25rem 0;
margin: -0.5px;
font-size: var(--font-size-xs);
line-height: var(--line-height-xs);
/* font-size: var(--font-size-xs);
line-height: var(--line-height-xs); */
caption {
border-bottom-style: dashed !important;
@@ -1386,7 +1386,7 @@
localStorage.getItem(settingsThemeLocalStorageKey)
);
const preferredColorSchemeMatchMedia = window.matchMedia(
"(prefers-color-scheme: dark)"
"(prefers-color-scheme: dark)",
);
if (
theme === "dark" ||
@@ -1398,7 +1398,7 @@
}
const backgroundColor = getComputedStyle(
window.document.documentElement
window.document.documentElement,
).getPropertyValue("--background-color");
const meta = window.document.createElement("meta");
meta.name = "theme-color";
@@ -2093,7 +2093,7 @@
rel="noopener noreferrer"
target="_blank"
>
0.4.1
0.5.0
</a>
</p>
</footer>
+34
View File
@@ -5896,6 +5896,40 @@ signalsPromise.then((signals) => {
},
],
},
{
name: "Blockchain",
values: [
{
name: "Height",
path: "last-height",
},
{
name: "Cumulative size",
path: "cumulative-block-size",
},
],
},
{
name: "Blocks Mined",
values: [
{
name: "Since UTC",
path: "blocks-mined",
},
{
name: "Weekly Avg.",
path: "blocks-mined-1w-sma",
},
{
name: "Monthly Avg.",
path: "blocks-mined-1m-sma",
},
{
name: "Target",
path: "blocks-mined-1d-target",
},
],
},
],
},
],
+3 -3
View File
File diff suppressed because one or more lines are too long