Skip to content

Commit

Permalink
fix(#120): bold -> muted
Browse files Browse the repository at this point in the history
  • Loading branch information
jannis-baum committed Aug 5, 2024
1 parent 0174490 commit 6346769
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions static/markdown.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ table {

th, td {
padding: 6px 13px;
border: 1px solid var(--border-bold);
border: 1px solid var(--border-muted);
}

tr:nth-child(even) {
Expand Down Expand Up @@ -121,7 +121,7 @@ dt + dt + dd {
blockquote {
padding: 0 1rem;
color: var(--text-secondary);
border-left: .25em solid var(--border-bold);
border-left: .25em solid var(--border-muted);
margin-left: 0;
}

Expand Down Expand Up @@ -195,8 +195,8 @@ img, svg { max-width: 100%; }
/* keyboard */
kbd {
background-color: var(--bg-secondary);
border: 1px solid var(--border-bold);
box-shadow: inset 0 -1px 0 var(--border-bold);
border: 1px solid var(--border-muted);
box-shadow: inset 0 -1px 0 var(--border-muted);
padding: 3px 5px;
border-radius: 6px;
}
Expand All @@ -210,6 +210,6 @@ mark {
/* horizontal rule */
hr {
border: 0;
border-top: 0.25em solid var(--border-bold);
border-top: 0.25em solid var(--border-muted);
margin: 24px 0;
}

0 comments on commit 6346769

Please sign in to comment.