Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs-site/assets/bitscope-mark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion docs-site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@
name="description"
content="BitScope is a local-first Bitcoin Core learning laboratory with a guided regtest demo, command explanations, and Bitcoin Core RPC workflows."
/>
<link rel="icon" href="assets/bitscope-mark.svg" type="image/svg+xml" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="hero">
<nav class="nav" aria-label="Primary">
<a class="brand" href="./">BitScope</a>
<a class="brand" href="./" aria-label="BitScope home">
<img src="assets/bitscope-mark.svg" alt="" width="40" height="40" />
<span>BitScope</span>
</a>
<div class="nav-links">
<a href="#screenshots">Screenshots</a>
<a href="#architecture">Architecture</a>
Expand Down
10 changes: 10 additions & 0 deletions docs-site/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,21 @@ img {
}

.brand {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 1.3rem;
font-weight: 800;
text-decoration: none;
}

.brand img {
display: block;
width: 40px;
height: 40px;
flex: 0 0 auto;
}

.nav-links {
display: flex;
flex-wrap: wrap;
Expand Down
Loading