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
2 changes: 1 addition & 1 deletion website/sider/technology.html
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ <h3>Local files</h3>
<hr class="section-divider">

<section id="features" class="content-section">
<h2> The reading pipeline</h2>
<h2>📖 The reading pipeline</h2>

<p>
The heart of Bare is what happens between <em>"you click a link"</em> and
Expand Down
13 changes: 7 additions & 6 deletions website/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -225,14 +225,14 @@ pre code {
background: var(--bg);
}

.protocol-grid {
.protocols .protocol-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 1rem;
margin-top: 2rem;
}

.protocol-card {
.protocols .protocol-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
Expand All @@ -244,16 +244,16 @@ pre code {
text-align: center;
}

.protocol-icon {
.protocols .protocol-icon {
font-size: 2rem;
margin-bottom: 0.25rem;
}

.protocol-card strong {
.protocols .protocol-card strong {
font-size: 0.95rem;
}

.protocol-card code {
.protocols .protocol-card code {
font-size: 0.82rem;
background: var(--bg);
border: 1px solid var(--border);
Expand Down Expand Up @@ -967,7 +967,7 @@ th {
}

.protocol-card.large {
grid-column: span 2;
grid-column: 1 / -1;
}

.protocol-icon {
Expand Down Expand Up @@ -1264,6 +1264,7 @@ th {
/* ----- Protocol Story ----- */
.protocol-story {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
margin-top: 1.5rem;
}
Expand Down
Loading